/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #1a5f2a;
    --light-green: #4CAF50;
    --dark-green: #0d3316;
    --accent-green: #27ae60;
    --gradient-green: linear-gradient(135deg, #1a5f2a 0%, #27ae60 100%);
    --gradient-light: linear-gradient(135deg, #f0f9f4 0%, #ffffff 100%);
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-green: 0 8px 32px rgba(26, 95, 42, 0.15);
}

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

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

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.header:hover {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.logo-text-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-green);
    cursor: pointer;
    padding: 10px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
}

.logo-text p {
    font-size: 10px;
    color: var(--text-light);
    margin: 0;
    letter-spacing: 1px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-green);
    transition: width 0.3s ease;
}

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

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.btn-admin {
    background: var(--gradient-green);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-admin:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 95, 42, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-tag {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.hero-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: var(--gradient-green);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-sm);
}

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

.hero-image {
    flex: 1;
}

.hero-card {
    background: var(--gradient-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-green);
    text-align: center;
    animation: slideInRight 0.8s ease;
    transition: transform 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-card-image {
    margin-bottom: 30px;
}

.bottle-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.bottle {
    width: 80px;
    height: 200px;
    border-radius: 10px;
    position: relative;
}

.bottle-1 {
    background: linear-gradient(180deg, #8B4513 0%, #654321 100%);
}

.bottle-2 {
    background: linear-gradient(180deg, #228B22 0%, #006400 100%);
}

.bottle::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 25px;
    background: #333;
    border-radius: 5px 5px 0 0;
}

.hero-card-text h3 {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.hero-card-text p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-shop {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-shop:hover {
    background-color: var(--dark-green);
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-green);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.feature-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-green);
    transform: translateY(-5px);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(-10deg) scale(1.1);
}

.service-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.section-footer {
    text-align: center;
}

.btn-outline {
    background-color: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

/* Products Section */
.products {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-green);
}

.product-image {
    background: var(--gradient-light);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-img-actual {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.product-bottles {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.product-bottle {
    width: 60px;
    height: 150px;
    border-radius: 8px;
}

.bottle-tamarind {
    background: linear-gradient(180deg, #8B4513 0%, #654321 100%);
}

.bottle-mint {
    background: linear-gradient(180deg, #228B22 0%, #006400 100%);
}

.btn-shop-now {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-shop-now:hover {
    background-color: var(--dark-green);
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-tag {
    background-color: var(--primary-green);
    color: var(--white);
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 12px;
    margin-left: 10px;
    text-transform: uppercase;
}

.product-info h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin: 10px 0;
}

.product-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-green);
    transform: translateY(-5px);
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 14px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
}

.author-info h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 12px;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--gradient-green);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--light-green), var(--accent-green), var(--light-green));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text h1 {
    color: var(--white);
}

.footer-brand .logo-text p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-brand > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--light-green);
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        gap: 20px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
        font-size: 16px;
        text-align: center;
    }

    .nav a {
        display: block;
        padding: 12px;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

    .nav a:hover,
    .nav a.active {
        background-color: rgba(46, 125, 50, 0.1);
    }

    .hero-text h2 {
        font-size: 36px;
    }

    .features-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .slide-text h2 {
        font-size: 28px;
    }

    .slide-text p {
        font-size: 14px;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .slide-buttons a {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 50px;
    }

    .logo-text-name {
        font-size: 16px;
    }

    .hero-text h2 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .product-info h3 {
        font-size: 18px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Products Page Styles */
.products-page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
    text-align: center;
}

.page-header-content h1 {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.page-header-content p {
    font-size: 18px;
    color: var(--text-light);
}

.products-filter {
    padding: 40px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.filter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.search-bar {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar i {
    position: absolute;
    left: 15px;
    color: var(--text-light);
}

.search-bar input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.filter-options {
    display: flex;
    gap: 20px;
    align-items: center;
}

.category-select {
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.category-select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.featured-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
}

.featured-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.products-page-grid {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.products-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.featured-product .product-tag {
    display: inline-block;
}

/* About Page Styles */
.about-page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
    text-align: center;
}

.our-story {
    padding: 80px 0;
    background-color: var(--white);
}

.story-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.story-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.story-image {
    flex: 1;
}

.story-card {
    background: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(46, 125, 50, 0.1);
}

.story-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 36px;
}

.story-card h3 {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.story-card p {
    font-size: 16px;
    color: var(--text-light);
}

.built-for {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.built-for-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.built-for-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.built-for-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.built-for-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-green);
    font-size: 24px;
}

.built-for-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.built-for-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.our-commitment {
    padding: 80px 0;
    background-color: var(--white);
}

.commitment-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.commitment-text {
    flex: 1;
}

.commitment-text h2 {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.commitment-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.commitment-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.commitment-item i {
    color: var(--primary-green);
    font-size: 18px;
}

.commitment-image {
    flex: 1;
}

.commitment-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.1);
}

.stat-item h3 {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-light);
}

.why-partner {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.partner-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 24px;
}

.partner-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.partner-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Design for New Pages */
@media (max-width: 1024px) {
    .products-full-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .built-for-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-content,
    .commitment-content {
        flex-direction: column;
        text-align: center;
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .filter-content {
        flex-direction: column;
        align-items: stretch;
    }

    .products-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .built-for-grid,
    .partner-grid {
        grid-template-columns: 1fr;
    }

    .commitment-stats {
        grid-template-columns: 1fr;
    }

    .page-header-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .products-full-grid {
        grid-template-columns: 1fr;
    }

    .filter-options {
        flex-direction: column;
        align-items: stretch;
    }

    .page-header-content h1 {
        font-size: 28px;
    }
}

/* Product Detail Page Styles */
.product-detail {
    padding: 80px 0;
    background-color: var(--white);
}

.product-detail-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.product-detail-image {
    flex: 1;
}

.main-product-image {
    background: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(46, 125, 50, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.main-product-image:hover {
    transform: scale(1.02);
}

.product-detail-img-actual {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.product-bottle-large {
    width: 150px;
    height: 350px;
    border-radius: 15px;
    margin: 0 auto;
    background: linear-gradient(180deg, #8B4513 0%, #654321 100%);
    position: relative;
    transition: transform 0.5s ease;
}

.product-bottle-large::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 40px;
    background: #333;
    border-radius: 8px 8px 0 0;
}

.product-thumbnails {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-green);
    transform: scale(1.1);
}

.product-detail-info {
    flex: 1;
}

.product-detail-info .product-category {
    font-size: 14px;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.product-detail-info h1 {
    font-size: 42px;
    color: var(--primary-green);
    margin: 15px 0;
    animation: slideIn 0.6s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #FFD700;
    font-size: 18px;
}

.product-rating span {
    color: var(--text-light);
    font-size: 14px;
}

.product-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    animation: fadeIn 0.8s ease;
}

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

.product-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-dark);
    animation: slideIn 0.6s ease;
}

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

.feature-item i {
    color: var(--primary-green);
    font-size: 18px;
}

.product-specs {
    background: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-specs h3 {
    font-size: 18px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.product-specs ul {
    list-style: none;
}

.product-specs li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-specs strong {
    color: var(--text-dark);
}

.product-actions {
    display: flex;
    gap: 15px;
    animation: slideUp 0.6s ease;
}

.related-products {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Responsive Design for Product Detail */
@media (max-width: 1024px) {
    .product-detail-content {
        flex-direction: column;
    }

    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-detail-info h1 {
        font-size: 32px;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
    }

    .product-actions {
        flex-direction: column;
    }
}

/* Clickable product cards */
a.product-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card {
    cursor: pointer;
}

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

/* Contact Page Header */
.contact-page-header {
    background: #ffffff;
    padding: 100px 0 60px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.page-header-content p {
    font-size: 18px;
    color: #666666;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 10px;
    text-align: center;
}

.contact p {
    font-size: 18px;
    color: #666666;
    text-align: center;
    margin-bottom: 40px;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.contact-form {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
    color: #2c2c2c;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.form-group textarea {
    resize: vertical;
}

.contact-form button.btn-primary {
    background-color: #25D366 !important;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button.btn-primary:hover {
    background-color: #128C7E !important;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-text {
    max-width: 800px;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-tag {
    display: inline-block;
    background: rgba(76, 175, 80, 0.9);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.slide-text h2 {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-text p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-buttons {
    display: flex;
    gap: 15px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(76, 175, 80, 0.8);
    border-color: #4CAF50;
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4CAF50;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(76, 175, 80, 0.8);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: #2c2c2c;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: #27b03c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 24px;
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.btn-whatsapp,
.btn-email,
.btn-phone {
    display: inline-block;
    padding: 10px 25px;
    background-color: #9c27b0;
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-whatsapp:hover,
.btn-email:hover,
.btn-phone:hover {
    background-color: #7b1fa2;
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}
