:root {
    --primary-green: #2E7D32;
    --light-green: #4CAF50;
    --dark-green: #1B5E20;
    --sage-green: #8FBC8F;
    --mint: #98FF98;
    --cream: #F1F8E9;
    --white: #ffffff;
    --text-dark: #1C2F1C;
    --text-light: #4A634A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    transition: width 0.3s ease;
    transform-origin: left;
}

.nav-links a:hover {
    color: #2ecc71;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a.active {
    color: #2ecc71;
}

.nav-links a.active::before {
    width: 100%;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .logo {
        margin-bottom: 0.5rem;
        font-size: 2.2rem;
        text-align: center;
        background: linear-gradient(135deg, var(--primary-green), var(--sage-green));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        padding: 0.5rem 0;
    }

    .nav-links {
        display: flex;
        width: 100%;
        justify-content: center;
        gap: 1rem;
        margin-top: 0.5rem;
        padding: 0.5rem 0;
        border-top: 1px solid rgba(46, 125, 50, 0.1);
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        border-radius: 15px;
        transition: all 0.3s ease;
        color: var(--text-dark);
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: var(--cream);
        color: var(--primary-green);
    }

    .nav-links a::before {
        display: none;
    }

    .navbar {
        background: rgba(255, 255, 255, 0.98);
    }
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                url('https://images.unsplash.com/photo-1501084817091-a4f3d1d19e07?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dark);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--sage-green) 0%, transparent 70%);
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    max-width: 1000px;
    padding: 2rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -1px;
}

.hero .highlight {
    color: var(--light-green);
    position: relative;
    display: inline-block;
}

.hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--light-green), var(--sage-green));
    border-radius: 2px;
}

.hero p {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5));
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.stars {
    display: flex;
    gap: 0.3rem;
}

.stars i {
    color: #FFD700;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.rating-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
}

.review-count {
    color: var(--text-light);
    font-size: 1rem;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.badge i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.badge span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.2);
    margin-top: 2rem;
    border: 2px solid transparent;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.15;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 6rem 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-badges {
        gap: 1rem;
    }

    .badge {
        padding: 0.6rem 1rem;
    }

    .badge i {
        font-size: 1rem;
    }

    .badge span {
        font-size: 0.9rem;
    }

    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Featured Items */
.featured-items {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.featured-items::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--sage-green) 0%, transparent 70%);
    opacity: 0.1;
    animation: rotate 30s linear infinite;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.featured-item {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.featured-item:nth-child(1) { animation-delay: 0.1s; }
.featured-item:nth-child(2) { animation-delay: 0.2s; }
.featured-item:nth-child(3) { animation-delay: 0.3s; }
.featured-item:nth-child(4) { animation-delay: 0.4s; }

.featured-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.featured-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--sage-green);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15);
}

.featured-item:hover::before {
    transform: translateX(100%);
}

.featured-item i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 6px rgba(46, 125, 50, 0.2));
}

.featured-item:hover i {
    transform: scale(1.1) rotate(10deg);
    color: var(--light-green);
}

.featured-item h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.featured-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--light-green), var(--sage-green));
    transition: width 0.4s ease;
}

.featured-item:hover h3::after {
    width: 50px;
}

.featured-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.featured-item:hover p {
    color: var(--text-dark);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Add responsive styles for featured items */
@media (max-width: 768px) {
    .featured-items {
        padding: 3rem 1rem;
    }
    
    .featured-grid {
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .featured-item {
        padding: 2rem 1.5rem;
    }
    
    .featured-item i {
        font-size: 2.5rem;
    }
    
    .featured-item h3 {
        font-size: 1.2rem;
    }
}

/* Products Section */
.products {
    padding: 6rem 2rem;
    background-color: var(--white);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(45deg, var(--cream) 25%, transparent 25%) -50px 0,
                linear-gradient(-45deg, var(--cream) 25%, transparent 25%) -50px 0;
    background-size: 100px 100px;
    opacity: 0.3;
}

.products h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.products h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, var(--light-green), var(--sage-green));
    margin: 1rem auto 3rem;
    border-radius: 2px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    align-items: stretch;
}

.product-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.1);
    transition: all 0.4s ease;
    border: none;
    position: relative;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.2);
}

.product-image {
    height: 300px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    background-color: var(--cream);
    padding: 2rem;
    transition: all 0.4s ease;
}

.product-card:hover .product-image {
    padding: 1.5rem;
}

.product-content {
    padding: 2rem;
    background: linear-gradient(to bottom, var(--cream) 0%, var(--white) 100%);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    font-size: 1rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cream);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.rating i {
    color: #FFD700;
    font-size: 1rem;
}

.rating span {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-left: 0.3rem;
}

.sold {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.sold i {
    color: var(--primary-green);
}

.product-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.4;
}

.view-more-container {
    text-align: center;
    margin-top: 3rem;
}

.view-more-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-green);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.2);
}

.view-more-btn:hover {
    background-color: transparent;
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--light-green), var(--sage-green));
    z-index: 1;
}

.flavors {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.flavor {
    background-color: var(--cream);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--light-green);
}

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

/* Nature Strip */
.nature-strip {
    background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.9)),
                url('https://images.unsplash.com/photo-1501084817091-a4f3d1d19e07?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem;
}

.nature-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '🌿';
    position: absolute;
    top: 2rem;
    right: 5%;
    font-size: 15rem;
    opacity: 0.05;
    transform: rotate(15deg);
    animation: float 6s ease-in-out infinite;
}

.about-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.about-header h2 {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.about-header h2 .highlight {
    color: var(--light-green);
    position: relative;
}

.about-header h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--light-green), var(--sage-green));
    border-radius: 2px;
}

.about-header .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
}

.about-story {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15);
}

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

.story-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--sage-green));
    padding: 1.5rem 2rem;
    border-radius: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.experience-badge .text {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-text {
    padding-right: 2rem;
}

.story-text h3 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.story-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--light-green), var(--sage-green));
    border-radius: 2px;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.mission, .vision {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.1);
    transition: all 0.3s ease;
}

.mission:hover, .vision:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15);
}

.mission i, .vision i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.mission h4, .vision h4 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.mission p, .vision p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.quality-commitment {
    margin-top: 6rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.quality-commitment h3 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-align: center;
}

.quality-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.quality-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.certifications {
    padding: 2rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.1);
}

.certifications h4 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-align: center;
}

.certification-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--cream);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.certification-item:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, var(--cream), white);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.1);
}

.certification-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.certification-item span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

@media (max-width: 1200px) {
    .about-story {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quality-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 6rem 1rem;
    }

    .about-header h2 {
        font-size: 2.5rem;
    }

    .about-intro {
        padding: 1.5rem;
    }

    .about-intro p {
        font-size: 1.1rem;
    }

    .story-text h3 {
        font-size: 2rem;
    }

    .quality-commitment {
        padding: 2rem;
    }

    .certification-list {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '📧';
    position: absolute;
    top: 2rem;
    right: 5%;
    font-size: 15rem;
    opacity: 0.05;
    transform: rotate(15deg);
    animation: float 6s ease-in-out infinite;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.contact-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--light-green), var(--sage-green));
    border-radius: 2px;
}

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

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--light-green), var(--sage-green));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15);
}

.info-item:hover::before {
    opacity: 1;
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cream), white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.info-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--sage-green));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-item:hover .info-icon::before {
    opacity: 1;
}

.info-icon i {
    font-size: 2rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.info-item:hover .info-icon i {
    transform: scale(1.1);
}

.info-item h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.info-item p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--cream);
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.contact-social {
    text-align: center;
    padding: 3rem 0;
    border-top: 2px solid var(--cream);
}

.contact-social h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.1);
    position: relative;
}

.social-icon:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.2);
}

/* Social Icons Tooltip Styles */
.social-icon .tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.social-icon .tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: var(--primary-green) transparent transparent transparent;
}

.social-icon:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.social-links a {
    position: relative;
}

.social-links .tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-green);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.social-links .tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.9) transparent transparent transparent;
}

.social-links a:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

@media (max-width: 768px) {
    .contact {
        padding: 6rem 1rem;
    }

    .contact-header h2 {
        font-size: 2.5rem;
    }

    .info-item {
        padding: 2rem 1.5rem;
    }

    .info-icon {
        width: 60px;
        height: 60px;
    }

    .info-icon i {
        font-size: 1.5rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .social-icon .tooltip,
    .social-links .tooltip {
        display: none;
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    padding: 8rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--sage-green), var(--primary-green), var(--sage-green));
    animation: shimmer 2s infinite linear;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    position: relative;
}

.footer-left {
    padding-right: 3rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, var(--sage-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--sage-green), var(--primary-green));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-section {
    padding: 0 1rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--sage-green);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--sage-green);
    font-size: 1.1rem;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links:last-child {
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-left {
        grid-column: 1 / -1;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 6rem 1rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-bottom-links:last-child {
        justify-content: center;
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: linear-gradient(145deg, #25D366, #128C7E);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, #25D366, transparent);
    opacity: 0.7;
    z-index: -1;
    animation: pulse 2s ease-out infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background-color: #20ba57;
}

.whatsapp-btn i {
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-btn:hover i {
    transform: rotate(-10deg) scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 85px;
    background: linear-gradient(135deg, var(--primary-green), var(--sage-green));
    color: var(--white);
    padding: 12px 25px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
    border: 2px solid var(--cream);
    letter-spacing: 0.5px;
}

.whatsapp-tooltip::before {
    content: '🌿';
    margin-right: 8px;
    font-size: 1.2rem;
    animation: wiggle 2s ease-in-out infinite;
    display: inline-block;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 12px 0 12px 12px;
    border-style: solid;
    border-color: transparent transparent transparent var(--sage-green);
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1.02);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Add responsive styles for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 2rem;
        right: 20px;
        bottom: 20px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .products h2 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        padding: 0.5rem;
    }
    
    .product-card h3 {
        font-size: 1.6rem;
    }
    
    .product-image {
        height: 250px;
    }
    
    .product-content {
        padding: 1.5rem;
    }
}

/* All Products Page */
.all-products {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    min-height: 100vh;
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-header h1 {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.products-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--light-green), var(--sage-green));
    border-radius: 2px;
}

.products-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 1rem auto;
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-green);
    background: transparent;
    color: var(--primary-green);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

.filter-btn.active {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

.product-grid.extended {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    max-width: 1400px;
    margin: 0 auto;
    gap: 2.5rem;
    padding: 1rem;
}

@media (max-width: 768px) {
    .all-products {
        padding: 6rem 1rem 2rem;
    }

    .products-header h1 {
        font-size: 2.5rem;
    }

    .products-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .product-grid.extended {
        gap: 1.5rem;
        padding: 0.5rem;
    }
}

.story-media {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15);
    background: var(--cream);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: var(--cream);
    border-radius: 20px;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background: var(--cream);
}

.video-container:hover video {
    transform: scale(1.02);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.play-button i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-left: 5px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cream), white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--sage-green));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-item:hover .value-icon::before {
    opacity: 1;
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: translateY(-5px);
}

.value-item:hover .value-icon i {
    transform: scale(1.1);
}

.achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.achievement-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.15);
}

.achievement-item i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.achievement-item .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.5rem;
}

.achievement-item .label {
    font-size: 1rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .play-button {
        width: 70px;
        height: 70px;
    }

    .play-button i {
        font-size: 2rem;
    }

    .experience-badge {
        padding: 1rem 1.5rem;
        bottom: 1rem;
        right: 1rem;
    }

    .experience-badge .years {
        font-size: 2.5rem;
    }

    .experience-badge .text {
        font-size: 0.9rem;
    }

    .achievements {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .achievement-item {
        padding: 1rem;
    }

    .achievement-item .number {
        font-size: 1.5rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

    .value-icon i {
        font-size: 1.5rem;
    }
}

/* Popup Styles */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.popup.show .popup-content {
    transform: translateY(0);
}

.popup-header {
    background: linear-gradient(135deg, var(--primary-green), var(--sage-green));
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.popup-header h3 {
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.close-popup {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.popup-body {
    padding: 2rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    background: var(--cream);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, var(--cream), white);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.1);
}

.schedule-item.closed {
    background: #fff5f5;
    color: #e53e3e;
}

.schedule-item .day {
    font-weight: 600;
    font-size: 1.1rem;
}

.schedule-item .time {
    font-size: 1rem;
    color: var(--text-light);
}

.schedule-item.closed .time {
    color: #e53e3e;
    font-weight: 600;
}

.schedule-note {
    margin-top: 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
    font-style: italic;
}

@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 1rem;
    }

    .popup-header h3 {
        font-size: 1.3rem;
    }

    .schedule-item {
        padding: 0.8rem;
    }

    .schedule-item .day {
        font-size: 1rem;
    }

    .schedule-item .time {
        font-size: 0.9rem;
    }
}

/* Category Sections */
.category-sections {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.category-intro {
    margin: 4rem 0 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-header i {
    font-size: 2.5rem;
    color: var(--primary-green);
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.1);
}

.category-header h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin: 0;
}

.category-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
}

/* Product Features Section */
.product-features {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    margin-top: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.15);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    background: var(--cream);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-item h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .category-intro {
        margin: 3rem 0 1.5rem;
        padding: 1.5rem;
    }

    .category-header i {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    .category-header h2 {
        font-size: 1.8rem;
    }

    .category-description {
        font-size: 1rem;
    }

    .product-features {
        padding: 4rem 1rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-item i {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 8rem 2rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-header h1 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.legal-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.legal-body {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
}

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

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--cream);
}

.legal-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul, 
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Sitemap Styles */
.sitemap-content {
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.sitemap-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
}

.sitemap-section h2 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sitemap-section h2 i {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sitemap-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sitemap-section li {
    margin-bottom: 1rem;
}

.sitemap-section a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.sitemap-section a::before {
    content: '→';
    margin-right: 0.8rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.sitemap-section a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.sitemap-section a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Styles for Legal Pages */
@media (max-width: 768px) {
    .legal-content,
    .sitemap-content {
        padding: 6rem 1rem 2rem;
    }

    .legal-header h1 {
        font-size: 2.5rem;
    }

    .legal-body {
        padding: 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .sitemap-body {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .sitemap-section {
        padding: 1.5rem;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    position: fixed;
    right: 110px;
    bottom: 30px;
    background: linear-gradient(135deg, var(--primary-green), var(--sage-green));
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.mobile-nav {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background: white;
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin: 0.5rem 0;
}

.mobile-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    display: block;
    border-radius: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.mobile-nav a:hover {
    background: var(--cream);
    color: var(--primary-green);
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .logo {
        font-size: 2.2rem;
        margin: 0;
        background: linear-gradient(135deg, var(--primary-green), var(--sage-green));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .whatsapp-btn {
        width: 65px;
        height: 65px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    right: 30px;
    bottom: 110px;
    background: linear-gradient(135deg, var(--primary-green), var(--sage-green));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    text-decoration: none;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
    color: white;
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        right: 20px;
        bottom: 100px;
    }
}

/* Header Links FAB */
.header-links-fab {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: linear-gradient(135deg, #34D399 0%, #3B82F6 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.header-links-menu {
    position: fixed;
    bottom: 100px;
    right: 110px;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    min-width: 200px;
    display: none;
}

@media (max-width: 768px) {
    .header-links-fab {
        display: flex;
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 90px;
        font-size: 22px;
    }

    .header-links-menu {
        display: block;
        bottom: 85px;
        right: 90px;
        padding: 12px;
        min-width: 180px;
    }
}

.header-links-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-links-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-links-menu ul li {
    margin: 10px 0;
}

.header-links-menu ul li a {
    display: block;
    padding: 12px 20px;
    color: #1F2937;
    text-decoration: none;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-size: 16px;
}

.header-links-menu ul li a:hover {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #3B82F6;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .header-links-fab {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 90px;
        font-size: 22px;
    }

    .header-links-menu {
        bottom: 85px;
        right: 90px;
        padding: 12px;
        min-width: 180px;
    }

    .header-links-menu ul li a {
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Add ripple effect */
.header-links-fab::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.header-links-fab:active::after {
    transform: scale(1.5);
    opacity: 0;
}

/* Ensure proper spacing with WhatsApp button */
.whatsapp-btn {
    right: 20px !important;
}