/* Home Page Styles - SEO & Conversion Optimized */
:root {
    --primary-green: #2e7d32;
    --secondary-green: #4caf50;
    --light-green: #e8f5e9;
    --dark-green: #1b5e20;
    --accent-gold: #ffc107;
    --accent-orange: #ff9800;
    --text-dark: #2e3a40;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f8fbf8;
    --border-radius: 12px;
    --shadow: 0 8px 30px rgba(46, 125, 50, 0.1);
    --shadow-hover: 0 15px 40px rgba(46, 125, 50, 0.2);
}

/* Performance Optimizations */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
}
.product-title{
    font-size: 15px;
}
.carousel-img {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin: 0 2rem;
}

.carousel-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.carousel-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--light-green);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-green);
}

/* Trust Badges */
.trust-badges {
    background: var(--white);
    border-bottom: 1px solid var(--light-green);
}

.trust-item {
    padding: 1.5rem 1rem;
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: block;
}

.trust-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--shadow-hover);
}

.video-container:hover {
    box-shadow: var(--shadow-hover);
}

.welcome-video {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(46, 125, 50, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.welcome-content {
    padding: 0 1rem;
}

.section-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.brand-highlight {
    color: var(--primary-green);
    position: relative;
}

.brand-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.welcome-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.language-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.lang-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--light-green);
    background: transparent;
    color: var(--text-dark);
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 600;
}

.lang-tab.active,
.lang-tab:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.lang-content {
    display: none;
    margin-bottom: 2rem;
}

.lang-content.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.lang-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.welcome-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.welcome-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* Features Section */
.features-section {
    background: var(--white);
    position: relative;
}

.features-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary-green);
    position: relative;
}

.features-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-cta {
    margin-top: 2rem;
}

.btn-outline-primary {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.feature-card {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--light-green);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: 3px solid var(--primary-green);
}

.feature-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: hue-rotate(45deg);
}

.feature-card h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Categories Section */
.categories-section {
    background: var(--light-bg);
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    text-decoration: none;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
}

.category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(46, 125, 50, 0.4) 100%);
}

.category-content {
    padding: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.category-content h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.category-link {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.category-card:hover .category-link {
    gap: 1rem;
}

/* Products Section */
.products-section {
    position: relative;
}

/* Special Offer Banner */
.offer-banner {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
    color: var(--white);
    text-align: center;
}

.offer-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.offer-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.offer-timer {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.timer-countdown {
    font-family: monospace;
    background: rgba(0,0,0,0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1.2rem;
}

.offer-btn {
    background: var(--primary-green);
    border: none;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.offer-btn:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: var(--white);
}

/* Blogs Section */
.blogs-section {
    background: var(--white);
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--light-green);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(46, 125, 50, 0.3) 100%);
}

.blog-content {
    padding: 2rem;
}

.blog-title {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-link {
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--dark-green);
    gap: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-green), transparent);
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    /* min-width: 380px; */
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.leaf-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
}

.leaf-1 {
    top: 20px;
    right: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234caf50'%3E%3Cpath d='M17 8C8 10 5.9 16.17 3.82 21.34l1.89.66.95-2.3c-.01-.02 7.35-5.64 10.34-11.7zM14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2z'/%3E%3C/svg%3E");
}

.leaf-2 {
    bottom: 20px;
    left: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234caf50'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm-1 17.5c-4 0-7.5-3-7.5-7 0-.8.2-1.6.5-2.3C6.9 12.6 9.1 14 12 14c.8 0 1.6-.1 2.3-.3-.4.9-.6 1.9-.6 2.9 0 2.2.9 4.2 2.3 5.7-1.5.8-3.2 1.2-5 1.2z'/%3E%3C/svg%3E");
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.rating-stars {
    margin-bottom: 1.5rem;
    text-align: center;
}

.star {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin: 0 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.1rem;
}

.customer-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-avatar {
    margin-right: 1rem;
}

.avatar-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--light-green);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.customer-details {
    text-align: left;
}

.customer-name {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin: 0 0 0.25rem 0;
    font-weight: 700;
}

.customer-title {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: var(--secondary-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    font-size: 1.2rem;
}

.nav-btn:hover {
    background: var(--primary-green);
    transform: scale(1.1);
}

.nav-btn:active {
    transform: scale(0.95);
}

/* FAQ Section */
.faq-section {
    background: var(--light-bg);
}

.faq-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 1rem;
}

.faq-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-green);
}

.faq-question {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-green);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

.contact-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    color: var(--white);
}

.contact-method i {
    font-size: 1.2rem;
    width: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.cta-title .highlight {
    color: var(--accent-gold);
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.cta-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: none;
}

.btn-success {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.btn-success:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

.cta-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes countdownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Performance & Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-img {
        height: 50vh;
        min-height: 400px;
    }
    
    .carousel-caption {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-outline-light {
        width: 100%;
        max-width: 300px;
    }
    
    .welcome-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .welcome-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .whatsapp-btn {
        justify-content: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: 300px;
        padding: 2rem;
    }
    
    .contact-methods {
        align-items: stretch;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .carousel-title {
        font-size: 2rem;
    }
    
    .carousel-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        min-width: 280px;
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .hero-section,
    .trust-badges,
    .welcome-actions,
    .carousel-nav,
    .offer-banner,
    .cta-section {
        display: none;
    }
    
    .section-padding {
        padding: 1rem 0;
    }
}

/* header  */
/* Header Styles - SEO Optimized */


/* Desktop Header */
.desktop-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.promo-text {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.promo-text i {
    color: var(--accent-gold);
}

.header-utils {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.util-link {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.util-link:hover {
    color: var(--accent-gold);
    text-decoration: none;
}

.util-separator {
    color: rgba(255,255,255,0.5);
}

.currency-selector {
    min-width: 100px;
}

.currency-selector .form-select {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
}

.currency-selector .form-select:focus {
    background: var(--white);
    color: var(--text-dark);
}

/* Main Header */
.main-header {
    padding: 1rem 0;
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.main-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Search Form */
.search-form {
    position: relative;
}

.search-container {
    border: 2px solid var(--light-green);
    border-radius: 50px;
    overflow: hidden;
    background: var(--white);
    transition: all 0.3s ease;
}

.search-container:focus-within {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.search-input {
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    background: transparent;
}

.search-input:focus {
    outline: none;
    box-shadow: none;
}

.btn-search {
    background: var(--primary-green);
    border: none;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: var(--dark-green);
    transform: scale(1.05);
}

/* Header Actions */
.header-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    align-items: center;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem;
    border-radius: 8px;
}

.action-item:hover {
    color: var(--primary-green);
    background: var(--light-bg);
    transform: translateY(-2px);
}

.action-item i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.action-text {
    font-size: 0.75rem;
    font-weight: 600;
}

.cart-count, .wishlist-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-gold);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 50px;
    min-width: 18px;
    text-align: center;
}

/* Main Navigation */
.main-navigation {
    background: var(--light-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-green);
    background: var(--white);
}

.nav-link[aria-current="page"] {
    color: var(--primary-green);
    background: var(--white);
}

.nav-link[aria-current="page"]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-green);
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 1rem;
    min-width: 250px;
}

.mega-menu {
    width: 800px !important;
    padding: 1.5rem !important;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 200px;
    gap: 2rem;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background: var(--light-green);
    color: var(--primary-green);
    transform: translateX(5px);
}

.mega-menu-featured {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.mega-menu-featured h6 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.featured-link {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.featured-link:hover {
    color: var(--primary-green);
}

/* Mobile Header */
.mobile-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mobile-top-bar {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.mobile-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.mobile-action-item {
    position: relative;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.25rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-action-item:hover {
    color: var(--primary-green);
    background: var(--light-bg);
}

.mobile-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-gold);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 50px;
    min-width: 18px;
    text-align: center;
}

.mobile-menu-toggle {
    background: none;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Mobile Search */
.mobile-search {
    padding: 0.75rem 0;
    background: var(--light-bg);
}

.mobile-search-input {
    border: 2px solid var(--light-green);
    border-radius: 25px 0 0 25px;
    padding: 0.75rem 1rem;
}

.btn-mobile-search {
    background: var(--primary-green);
    border: 2px solid var(--primary-green);
    color: var(--white);
    border-radius: 0 25px 25px 0;
    padding: 0.75rem 1rem;
}

/* Offcanvas Menu */
.offcanvas {
    background: var(--white);
}

.offcanvas-header {
    background: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
}

.offcanvas-title {
    display: flex;
    align-items: center;
}

.offcanvas-logo {
    height: 36px;
    width: auto;
}

.btn-close:focus {
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.mobile-user-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mobile-user-actions .btn {
    flex: 1;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
}

/* Mobile Navigation */
.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-green);
}

.mobile-nav-dropdown .mobile-nav-link {
    color: var(--primary-green);
}

.mobile-submenu {
    list-style: none;
    padding: 0 0 0 1rem;
    margin: 0;
    background: var(--light-bg);
    border-radius: 8px;
    padding: 0.5rem;
}

.mobile-submenu-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-submenu-item:last-child {
    border-bottom: none;
}

.mobile-submenu-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 0.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-submenu-link:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

/* Mobile Contact Info */
.mobile-contact-info {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
}

.mobile-contact-info h6 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-green);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .mega-menu {
        width: 700px !important;
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .header-actions {
        gap: 1rem;
    }
    
    .action-text {
        display: none;
    }
    
    .action-item {
        padding: 0.75rem;
    }
    
    .nav-link {
        padding: 1rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .promo-text span {
        font-size: 0.8rem;
    }
    
    .header-utils {
        gap: 0.5rem;
    }
    
    .util-separator {
        display: none;
    }
    
    .currency-selector {
        min-width: 80px;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* Focus Styles for Accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .desktop-header,
    .mobile-header {
        display: none !important;
    }
}