:root {
    /* Brand colors (only for logo and brand name) */
    --brand-green: #257c0f;

    /* Softer colors for UI */
    --primary-green: #6B9E5C;      /* Softer green for accents */
    --light-green: #D4E8CF;        /* Very soft green for backgrounds */
    --dark-green: #87A878;         /* Muted green for hover states */
    --text-dark: #3D4A3E;          /* Readable dark text */
    --text-medium: #5C6B5D;        /* Medium contrast text */
    --text-light: #7A8A7B;         /* Lighter text for secondary info */
    --cream: #FFF8F0;              /* Warm background */
    --white: #FFFFFF;
    --shadow: rgba(107, 158, 92, 0.08);
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    opacity: 0;
    transition: opacity 0.2s ease-in;
}

body.i18n-loaded {
    opacity: 1;
}

main {
    flex: 1;
}

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

/* Header Styles */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--brand-green);  /* Keep logo vibrant */
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Language Selector - Modern Design */
.language-selector {
    position: relative;
    margin: 0 15px;
}

.language-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(107, 158, 92, 0.15);
    position: relative;
    overflow: hidden;
}

.language-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.language-btn:hover {
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(107, 158, 92, 0.25);
}

.language-btn:hover::before {
    opacity: 0.08;
}

.language-btn:active {
    transform: translateY(0);
}

.flag-icon {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s;
}

.language-btn:hover .flag-icon {
    transform: scale(1.15) rotate(5deg);
}

.language-name {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.3px;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--white);
    border: 2px solid var(--light-green);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(107, 158, 92, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.language-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: var(--white);
    border-left: 2px solid var(--light-green);
    border-top: 2px solid var(--light-green);
    transform: rotate(45deg);
    z-index: -1;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 18px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    position: relative;
}

.language-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-green);
    opacity: 0;
    transition: opacity 0.2s;
}

.language-option:first-child {
    border-radius: 14px 14px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 14px 14px;
}

.language-option:not(:last-child) {
    border-bottom: 1px solid rgba(107, 158, 92, 0.1);
}

.language-option:hover {
    background: linear-gradient(90deg, var(--light-green) 0%, transparent 100%);
    padding-left: 22px;
}

.language-option:hover::before {
    opacity: 1;
}

.language-option:active {
    background: var(--light-green);
}

.language-option .flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: transform 0.2s;
}

.language-option:hover .flag-icon {
    transform: scale(1.15);
}

/* Cart Icon in Navbar */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s;
    cursor: pointer;
}

.cart-icon:hover {
    color: var(--primary-green);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badge-bounce 0.4s ease;
}

@keyframes badge-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-green);
    background: var(--white);
    color: var(--primary-green);
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.qty-btn:hover:not(:disabled) {
    background: var(--primary-green);
    color: var(--white);
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: var(--white);
}

/* Hero Section - Simple */
.hero-simple {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-green) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--text-dark);
    margin-top: 80px;
}

.hero-simple .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-simple .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-simple .hero-content p {
    font-size: 1.3rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: var(--white);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.welcome-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.welcome-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-icon {
    font-size: 1.5rem;
}

.welcome-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.welcome-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

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

/* Featured Products Section */
.featured-products {
    padding: 80px 0;
    background: var(--white);
}

.featured-products h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-product-card {
    background: var(--white);
    border: 2px solid var(--light-green);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.featured-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow);
    border-color: var(--primary-green);
}

.featured-product-image {
    position: relative;
    width: 100%;
    padding-top: 133%; /* 3:4 aspect ratio for portrait images */
    background: var(--cream);
    overflow: hidden;
}

.featured-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-green);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.featured-product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-product-info h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.featured-product-price {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: bold;
    margin-top: auto;
}

.featured-product-stock {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.featured-products .loading {
    text-align: center;
    padding: 40px;
    font-size: 1.2rem;
    color: var(--text-light);
    grid-column: 1 / -1;
}
    max-width: 600px;
    color: var(--text-medium);
}

.cta-button {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                background-color 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background: var(--dark-green);
}

/* Custom Order Section */
.custom-order-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-green) 100%);
    border-radius: 20px;
    border: 2px solid var(--light-green);
}

.custom-order-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 500;
}

.custom-order-section .cta-button {
    background: var(--white);
    color: var(--primary-green);
    border: 3px solid var(--primary-green);
    padding: 18px 40px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(107, 158, 92, 0.2);
    border-radius: 50px;
}

.custom-order-section .cta-button:hover {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--dark-green);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(107, 158, 92, 0.4);
}

/* Featured Section */
.featured {
    padding: 80px 0;
    background: var(--white);
}

.featured h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.featured-item {
    background: var(--cream);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.featured-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(107, 158, 92, 0.2);
}

.featured-image {
    height: 250px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.featured-item h3 {
    font-size: 1.5rem;
    padding: 20px 20px 10px;
    color: var(--text-dark);
}

.featured-item p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background: var(--light-green);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-medium);
    line-height: 1.8;
}

.learn-more {
    display: inline-block;
    background: var(--white);
    color: var(--primary-green);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.learn-more:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-section h3 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 50px;
    }

    .contact-form {
        padding: 35px;
    }

    .info-card {
        padding: 25px;
    }
}

/* Mobile Language Selector */
.mobile-language-selector {
    display: none;
    padding: 20px 0;
    border-top: 1px solid var(--light-green);
    margin-top: 10px;
}

.mobile-language-selector .language-label {
    display: block;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.language-option-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    background: var(--white);
    border: 2px solid var(--light-green);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.language-option-mobile:hover,
.language-option-mobile:active {
    background: var(--light-green);
    border-color: var(--primary-green);
}

.language-option-mobile .flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* Desktop-only language selector */
.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-language-selector {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .language-selector {
        margin: 0 8px;
    }

    .language-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        gap: 6px;
    }

    .flag-icon {
        width: 20px;
        height: 20px;
    }

    .language-dropdown {
        min-width: 160px;
    }

    .language-option {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-simple {
        padding: 80px 0 60px;
    }

    .hero-simple .hero-content h1 {
        font-size: 2rem;
    }

    .hero-simple .hero-content p {
        font-size: 1rem;
    }

    .welcome-section {
        padding: 60px 0;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-text h2 {
        font-size: 2rem;
    }

    .welcome-text p {
        font-size: 1rem;
    }

    .welcome-image {
        order: -1;
    }

    .featured-products {
        padding: 60px 0;
    }

    .featured-products h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .featured-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured h2,
    .about-text h2 {
        font-size: 2rem;
    }

    .contact-grid {
        display: flex !important;
        flex-direction: column;
        gap: 40px;
    }

    .contact-form-wrapper {
        width: 100%;
        order: 1;
    }

    .social-section-mobile {
        display: block !important;
        width: 100%;
        order: 2;
        text-align: center;
        background: var(--light-green);
        padding: 40px 25px;
        border-radius: 15px;
        margin-bottom: 0;
    }

    .social-section-mobile h2 {
        color: var(--text-dark);
        margin-bottom: 15px;
        font-size: 1.8rem;
    }

    .social-section-mobile > p {
        color: var(--text-medium);
        font-size: 1rem;
        margin-bottom: 25px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .social-section-mobile .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .social-section-mobile .social-badge {
        background: var(--white);
        padding: 15px 25px;
        border-radius: 30px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
        font-size: 0.95rem;
    }

    .social-section-mobile .social-badge strong {
        color: var(--primary-green);
        margin-right: 5px;
    }

    .contact-info {
        width: 100%;
        order: 3;
    }

    .contact-form-wrapper h2,
    .contact-info h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .form-group textarea {
        min-height: 120px;
    }

    .submit-btn {
        width: 100%;
        padding: 16px 30px;
        font-size: 1rem;
    }

    .info-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .info-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .info-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .products-filter {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .filter-group {
        width: 100%;
        justify-content: center;
    }

    .products-filter select {
        width: 100%;
        min-width: auto;
    }

    .social-section {
        margin-top: 50px;
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .page-header p {
        font-size: 1rem;
    }

    .content-section {
        padding: 40px 0;
    }

    .contact-grid {
        gap: 30px;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .contact-form-wrapper h2,
    .contact-info h2 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 10px;
        font-size: 16px; /* Prevents iOS zoom */
        border-radius: 6px;
    }

    .form-group textarea {
        min-height: 100px;
        rows: 4;
    }

    .submit-btn {
        width: 100%;
        padding: 14px 25px;
        font-size: 1rem;
        margin-top: 10px;
    }

    .info-card {
        padding: 18px 15px;
        margin-bottom: 15px;
    }

    .info-card h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .info-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 8px;
    }

    .social-section-mobile h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .social-section-mobile > p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .social-section-mobile {
        padding: 30px 20px;
    }

    .social-section-mobile .social-badge {
        font-size: 0.85rem;
        padding: 12px 18px;
        width: 100%;
    }

    .social-section-mobile .social-links {
        flex-direction: column;
        gap: 12px;
    }
}

.social-section h2 {
    font-size: 1.6rem;
}

.social-badge {
    padding: 15px 20px;
    font-size: 0.95rem;
}

/* Page-specific styles */
.page-header {
    background: var(--primary-green);
    color: var(--white);
    padding: 60px 0 60px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.content-section {
    padding: 60px 0;
    min-height: 60vh;
    transition: min-height 0.4s ease-in-out;
}

/* Products Filter */
.products-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 3px 15px var(--shadow);
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-filter label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.products-filter select {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--cream);
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
    min-width: 200px;
}

.products-filter select:hover {
    border-color: var(--primary-green);
}

.products-filter select:focus {
    outline: none;
    border-color: var(--primary-green);
    background: var(--white);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-green);
}

.checkbox-label span {
    font-size: 1rem;
    font-weight: 500;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, min-height 0.4s ease-in-out;
    min-height: 400px;
    max-width: 100%;
}

/* Product cards with fixed width */
.product-grid > .product-card {
    width: 320px;
    max-width: 100%;
    flex: 0 0 auto;
}

.product-grid.fading {
    opacity: 0;
}

.product-grid .loading,
.product-grid .error-message {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(107, 158, 92, 0.2);
}

.product-image {
    height: 300px;
    overflow: hidden;
}

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

.product-info {
    padding: 20px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.product-stock-badge {
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-stock-badge.in-stock {
    background: var(--light-green);
    color: var(--primary-green);
}

.product-stock-badge.out-of-stock {
    background: var(--cream);
    color: var(--text-light);
}

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

.product-info p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-green);
}

/* Contact Page Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-form-wrapper {
    grid-column: 1;
    grid-row: 1;
}

.social-section-mobile {
    display: none;
}

.contact-info {
    grid-column: 2;
    grid-row: 1;
}

.contact-form-wrapper,
.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper h2,
.contact-info h2 {
    margin-bottom: 30px;
    color: var(--text-dark);
    font-size: 2rem;
    text-align: center;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form .submit-btn {
    margin-top: auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.submit-btn {
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                background-color 0.3s ease;
}

.submit-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 5px 15px rgba(107, 158, 92, 0.3);
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    margin-bottom: 25px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex: 1;
}

.info-card:last-child {
    margin-bottom: 0;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 158, 92, 0.2);
}

.info-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

/* Social Section */
.social-section {
    text-align: center;
    margin-top: 80px;
    background: var(--light-green);
    padding: 50px 40px;
    border-radius: 15px;
}

.social-section h2 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 2rem;
}

.social-section > p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-badge {
    background: var(--white);
    padding: 18px 30px;
    border-radius: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-badge strong {
    color: var(--primary-green);
    margin-right: 5px;
}

/* Reviews Carousel Section */
.reviews-carousel {
    padding: 80px 0;
    background: var(--white);
}

/* Override container max-width for carousel */
.reviews-carousel .container {
    max-width: 100%;
    padding: 0 20px;
}

.reviews-carousel h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 50px;
}

.carousel-wrapper {
    max-width: 90%;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 1400px) {
    .carousel-wrapper {
        max-width: 1400px;
    }
}

@media (min-width: 1600px) {
    .carousel-wrapper {
        max-width: 85%;
    }
}

.carousel-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    width: 100%;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.review-card {
    padding: 40px;
    text-align: center;
    flex-shrink: 0;
    box-sizing: border-box;
    opacity: 0.3;
    transform: scale(0.95);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.review-card.active {
    opacity: 1;
    transform: scale(1);
}

/* Adjust padding on wider screens */
@media (min-width: 1024px) {
    .review-card {
        padding: 30px 20px;
    }

    .review-card .review-text {
        font-size: 1rem;
        min-height: 100px;
    }
}

.review-card .stars {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.review-card .review-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
    min-height: 80px;
}

.review-card .reviewer-name {
    font-weight: bold;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.carousel-btn {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.carousel-btn:hover {
    opacity: 1;
    color: var(--primary-green);
    border-color: var(--primary-green);
    transform: scale(1.15);
}

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

.carousel-dots {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-carousel h2 {
        font-size: 2rem;
    }

    .review-card {
        padding: 30px 20px;
    }

    .review-card .review-text {
        font-size: 1rem;
        min-height: 100px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
