/* Font Imports */
@font-face {
    font-family: "Geist";
    src: url("../font/geist/Geist-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Caveat";
    src: url("../font/caveat/Caveat-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Geist", "Arial", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Variables */
:root {
    --primary-green: #4caf50;
    --light-green: #81c784;
    --dark-green: #388e3c;
    --accent-green: #c8e6c9;
    --cream-white: #fdf6ec;
    --active-yellow: #f4c542;
    --text-dark: #2e2e2e;
    --text-light: #666;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
}

/* Header Styles */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-green);
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-green);
}

.cart-link {
    background: var(--primary-green);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.cart-link:hover {
    background: var(--dark-green);
}

.cart-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    vertical-align: middle;
    margin-right: 4px;
}

.mobile-controls {
    display: none;
    align-items: center;
    gap: 1rem;
}

.mobile-cart-link {
    background: var(--primary-green);
    color: var(--white) !important;
    padding: 0.5rem;
    border-radius: 20px;
    transition: background 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.mobile-cart-link:hover {
    background: var(--dark-green);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-green);
}

/* Hero Section */
.hero {
    background: var(--white);
    padding: 48px 32px;
    height: 400px;
    display: flex;
    align-items: center;
}

.hero-margin {
    display: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.hero-text {
    position: relative;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hero-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(198 207 194 / 30%), rgba(76, 154, 42, 0.3));
    z-index: 1;
}

.hero-text h1 {
    position: relative;
    z-index: 2;
}

.banner-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-slide.active {
    opacity: 1;
}

/* Desktop banner images */
.banner-slide-desktop:nth-child(1) {
    background-image: url("../images/Frame1.webp");
}

.banner-slide-desktop:nth-child(2) {
    background-image: url("../images/Frame2.webp");
}

/* Mobile banner images */
.banner-slide-mobile:nth-child(3) {
    background-image: url("../images/nimages/20251216_153202.webp");
}

.banner-slide-mobile:nth-child(4) {
    background-image: url("../images/nimages/Vizik teas.webp");
}

/* Show desktop by default, hide mobile */
.banner-slide-mobile {
    display: none;
}

.banner-slide-desktop {
    display: block;
}

.hero-text h1 {
    font-size: 64px;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-family: "Caveat", cursive;
    font-weight: 700;
}

.hero-text p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cta-button {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    background: url("../images/teahero.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Categories Section */
.categories {
    padding: 24px 0 0 0;
}

.categories .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.categories h2 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--text-dark);
    text-align: left;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: var(--dark-green);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-card {
    background: var(--white);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-card.active {
    background: var(--active-yellow);
    color: var(--text-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(244, 197, 66, 0.3);
    position: relative;
}

/* Bottom radius 0 only on desktop */
@media (min-width: 769px) {
    .category-card.active {
        border-radius: 15px 15px 0 0;
    }
}

.category-card.active::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: var(--active-yellow);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.category-card.active h3 {
    color: var(--text-dark);
}

.category-card.active .category-svg-icon {
    filter: brightness(0) saturate(100%) invert(27%) sepia(15%) saturate(380%)
        hue-rotate(14deg) brightness(95%) contrast(90%);
    background: var(--white);
}

.category-products {
    margin-top: 3rem;
}

.category-icon {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.category-svg-container {
    background: var(--white);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-svg-container svg {
    width: 38px;
    height: 38px;
}

.category-card.active .category-svg-container {
    background: var(--white);
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.category-link {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.category-link:hover {
    background: var(--dark-green);
}

.view-all {
    margin-top: 2rem;
    padding-bottom: 1.5rem;
}

.view-all a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Featured Products */
.featured-products {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.featured-products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.category-products {
    background: var(--white);
    margin: 2rem 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.category-products-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 1.5rem;
}

.category-products .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-products .view-all {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 2rem 1.5rem 2rem;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
    justify-items: center;
}

.product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 320px;
    height: 420px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid transparent;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, #4c9a2a, #abe190) border-box;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    width: 100%;
    height: 220px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-light);
    border-radius: 20px 20px 0 0;
    margin-bottom: 0;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-image:hover img {
    transform: scale(1.05);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
    background: var(--white);
    border-radius: 0 0 20px 20px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.product-description {
    color: #888888;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.3;
    flex: 1;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #f4c542;
    font-size: 14px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #4c9a2a;
    margin-bottom: 1rem;
}

.organic-badge {
    display: inline-block;
    background: rgba(76, 154, 42, 0.1);
    color: var(--primary-green);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.off-season-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e65100;
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    pointer-events: none;
    z-index: 2;
}

.off-season-notice {
    display: inline-block;
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #e65100;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-top: auto;
    padding-top: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 0;
    height: 36px;
    width: 110px;
}

.quantity-btn {
    background: transparent;
    border: none;
    width: 30px;
    height: 36px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    color: var(--primary-green);
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quantity-btn:hover {
    background: rgba(76, 154, 42, 0.1);
}

.quantity-btn:hover {
    background: var(--border-color);
}

.quantity-input {
    width: 40px;
    height: 36px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.quantity-input:focus {
    outline: none;
}

/* Unit selector dropdown */
.unit-selector {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 0.4rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    width: 55px;
    height: 36px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="5" viewBox="0 0 8 5"><path fill="%23666" d="M4 5L0 1h8L4 5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.4rem center;
    padding-right: 1.6rem;
}

.unit-selector:focus {
    outline: 2px solid rgba(76, 154, 42, 0.2);
    border-color: var(--primary-green);
}

.add-to-cart-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 90px;
    height: 36px;
    white-space: nowrap;
}

.add-to-cart-btn:hover {
    background: var(--dark-green);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(76, 154, 42, 0.3);
}

.view-details-btn {
    display: inline-block;
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 0.5rem;
    width: 100%;
    box-sizing: border-box;
}

.view-details-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(76, 154, 42, 0.3);
}

/* Testimonials */
.testimonials {
    background: var(--cream-white);
    color: var(--text-dark);
    padding: 4rem 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-weight: 600;
}

.testimonials-grid {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonials-row {
    display: flex;
    overflow: hidden;
    mask: linear-gradient(
        90deg,
        transparent,
        white 20%,
        white 80%,
        transparent
    );
    -webkit-mask: linear-gradient(
        90deg,
        transparent,
        white 20%,
        white 80%,
        transparent
    );
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.scroll-left .testimonials-track {
    animation-name: scroll-left;
}

.scroll-right .testimonials-track {
    animation-name: scroll-right;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.testimonial-card {
    background: var(--white);
    color: var(--text-dark);
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
    flex-shrink: 0;
    width: 500px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-text {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
    margin-top: 2rem;
}

.testimonial-text::before {
    content: "\201C";
    font-family: "Geist", sans-serif;
    font-size: 5rem;
    font-weight: 400;
    font-style: normal;
    color: var(--primary-green);
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info h4 {
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* How It Works */
.how-it-works {
    padding: 4rem 0;
    text-align: center;
    background: var(--white);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.how-it-works .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    border: 1px solid #d0d5ce;
    border-radius: 15px;
    padding: 3rem 2rem;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    padding: 2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-svg {
    width: 40px;
    height: 40px;
    z-index: 2;
    position: relative;
}

/* Different background colors for each step */
.step:nth-child(1) .step-icon {
    background: rgba(76, 154, 42, 0.15);
}

.step:nth-child(2) .step-icon {
    background: rgba(34, 139, 34, 0.15);
}

.step:nth-child(3) .step-icon {
    background: rgba(37, 211, 102, 0.15);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-subtitle {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    overflow: hidden;
    border-bottom: 1px solid #7f7f7f;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: normal;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    position: relative;
}

.faq-toggle {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #4c9a2a;
    transition: transform 0.3s ease;
    display: inline-block;
    flex-shrink: 0;
    margin-left: 10px;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        padding 0.3s ease;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #7f7f7f;
    line-height: 1.6;
}

/* Products Page Styles */
.breadcrumb {
    background: white;
    padding: 1rem 0;
}

.breadcrumb a {
    color: var(--primary-green);
    text-decoration: none;
}

.category-filter {
    background: var(--white);
    padding: 2rem 0 0 0;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    min-width: 150px;
    height: 57px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    box-sizing: border-box;
    color: var(--text-dark);
}

.filter-icon {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    padding: 6px;
    box-sizing: content-box;
}

.filter-btn:hover {
    background: var(--light-gray);
}

.filter-btn.active {
    background: var(--active-yellow);
    color: var(--text-dark);
    border-color: var(--active-yellow);
}

.products-section {
    padding: 42px 0 4rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
    justify-items: center;
}

/* Cart Page Styles */
.cart-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.cart-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.cart-subtitle {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.cart-item {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-light);
    overflow: hidden;
}

.cart-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.cart-item-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cart-item-unit {
    color: var(--primary-green);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.remove-item-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.remove-item-btn:hover {
    background: #ffebee;
    color: #f44336;
}

.cart-empty {
    text-align: center;
    padding: 4rem 0;
}

.cart-empty h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cart-empty p {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.cart-checkout {
    text-align: center;
    margin-top: 3rem;
}

.delivery-location {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.delivery-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.state-selector {
    width: 100%;
    max-width: 320px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--primary-green);
    border-radius: 8px;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234CAF50' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.state-selector:focus {
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.delivery-estimate {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0faf0;
    border: 1px solid var(--primary-green);
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-green);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition:
        opacity 0.3s ease,
        max-height 0.3s ease,
        padding 0.3s ease;
    padding-top: 0;
    padding-bottom: 0;
}

.delivery-estimate.visible {
    opacity: 1;
    max-height: 60px;
    padding: 0.6rem 1.2rem;
}

.whatsapp-checkout-btn {
    background: #25d366;
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

.whatsapp-checkout-btn:hover {
    background: #20c157;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Footer */
footer {
    background: #fdf6ec;
    color: var(--text-dark);
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.company-slogan {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-green);
}
.social-icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(40%) sepia(0%) saturate(0%)
        hue-rotate(0deg) brightness(100%) contrast(100%);
}
.social-icon:hover {
    transform: translateY(-2px);
}
.contact-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-controls {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        height: auto;
        padding: 32px 24px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }
    .hero-image {
        display: none;
    }

    .hero-text {
        height: 250px;
        padding: 2rem 1rem;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-placeholder {
        height: 200px;
    }

    .product-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .product-grid {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }

    .category-card {
        width: 90px;
        length: 90px;
        padding: 1.5rem 0.5rem;
    }

    .category-svg-container {
        width: 80px;
        height: 80px;
    }

    .category-svg-container svg {
        width: 40px;
        height: 40px;
    }

    .category-card h3 {
        font-size: 1.2rem;
    }

    /* Adjust "View All Products" link on mobile */
    .view-all-link {
        font-size: 0.9rem;
        font-weight: 500;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .testimonials-track {
        animation-duration: 20s;
    }

    .testimonial-card {
        width: 400px;
        min-height: 220px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        gap: 0.5rem;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 0.5rem 1rem;
        min-width: auto;
        height: auto;
        font-size: 0.85rem;
        font-weight: 400;
    }

    .filter-icon {
        width: 16px;
        height: 16px;
    }

    .category-filter {
        padding: 1rem 0 0 0;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
    }

    .cart-item-controls {
        width: 100%;
        justify-content: center;
    }

    .organic-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .categories .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .nav-container {
        padding: 1rem 15px;
    }

    .hero {
        height: auto;
        padding: 24px 16px;
    }

    .hero-content {
        gap: 12px;
    }

    .hero-text {
        height: 200px;
        padding: 1.5rem 1rem;
    }

    /* Switch to mobile banner images */
    .banner-slide-desktop {
        display: none;
    }

    .banner-slide-mobile {
        display: block;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-placeholder {
        height: 150px;
        font-size: 1rem;
    }

    .product-card {
        width: 100%;
        height: auto;
        min-height: 350px;
    }

    .product-image {
        width: 100%;
        height: 160px;
    }

    .product-grid {
        padding: 1rem;
        gap: 1rem;
    }

    /* Products page - show 2 cards per row on mobile */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }

    /* Make product content more compact for 2-column mobile layout */
    .product-info {
        padding: 0.7rem;
    }

    .product-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .product-description {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Mobile product actions: quantity on left, unit on right, add to cart below */
    .product-actions {
        display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: row !important;
        gap: 0.3rem !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    /* Quantity controls on LEFT - order 0 */
    .product-actions .quantity-controls {
        order: 0 !important;
        width: 70px !important;
        height: 30px !important;
        flex: 0 0 70px !important;
        margin: 0 !important;
    }

    .product-actions .quantity-btn {
        width: 20px !important;
        height: 28px !important;
        font-size: 0.75rem !important;
        padding: 0 !important;
    }

    .product-actions .quantity-input {
        width: 25px !important;
        height: 28px !important;
        font-size: 0.7rem !important;
        padding: 0 !important;
    }

    /* Unit selector on RIGHT - order 1 */
    .product-actions .unit-selector {
        order: 1 !important;
        width: 52px !important;
        font-size: 0.65rem !important;
        padding: 0.25rem 0.15rem !important;
        padding-right: 1rem !important;
        height: 30px !important;
        flex: 0 0 52px !important;
        margin: 0 !important;
    }

    /* Add to cart button BELOW - order 2, full width */
    .product-actions .add-to-cart-btn {
        order: 2 !important;
        flex: 1 1 100% !important;
        width: 100% !important;
        font-size: 0.75rem !important;
        padding: 0.5rem 0.4rem !important;
        min-width: 100% !important;
        margin: 0 !important;
    }

    .featured-products,
    .how-it-works {
        padding: 2rem 0;
        padding-left: 15px;
        padding-right: 15px;
    }

    .categories {
        padding: 2rem 0;
        padding-left: 15px;
        padding-right: 15px;
    }

    .categories .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* HORIZONTAL SCROLL FIX */
    /* 1. Let parents exist — do NOT fight them */
    .categories,
    .category-products,
    .category-products-inner {
        overflow: visible;
    }

    /* 2. HARD RESET the scroll container */
    .category-products .product-grid {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 1rem !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;

        /* THE FIX - negative margins to break out of parent padding */
        margin-left: -1.5rem !important;
        margin-right: -1.5rem !important;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;

        width: calc(100% + 3rem) !important;
        max-width: none !important;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .category-products .product-card {
        flex: 0 0 280px !important;
        min-width: 280px !important;
        scroll-snap-align: start;
    }

    /* Regular product grid (products page) stays vertical */
    .products-section .product-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        margin-bottom: 0rem;
        gap: 0rem;
    }

    .category-card {
        padding: 0.5rem 0.15rem;
    }

    .category-svg-container {
        width: 40px;
        height: 40px;
    }

    .category-svg-container svg,
    .category-svg-container img {
        width: 20px;
        height: 20px;
    }

    .category-card h3 {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }

    .category-card.active::after {
        display: none;
    }

    .cart-section {
        padding: 2rem 0;
    }
    .testimonials {
        padding: 1rem 0;
    }
    /* Reduce testimonial card height on small mobile */
    .testimonial-card {
        width: 260px;
        min-height: 180px;
        padding: 1.2rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .testimonial-text::before {
        font-size: 3rem;
        top: 0.2rem;
        left: 0.8rem;
    }

    .testimonial-author {
        font-size: 0.85rem;
    }

    .testimonials h2 {
        font-size: 1.8rem;
    }

    .how-it-works h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .step {
        padding: 0.5rem 2rem;
    }

    .steps-grid {
        gap: 0.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Utilities */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}
.mt-2 {
    margin-top: 2rem;
}
.mb-1 {
    margin-bottom: 1rem;
}
.mb-2 {
    margin-bottom: 2rem;
}

/* About Us Page Styles */
.about-hero {
    background: var(--white);
    padding: 2rem 0 4rem 0;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    text-align: left;
}

.about-row {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-row > * {
    flex: 1;
}

.about-row.reverse {
    flex-direction: row-reverse;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 0;
    display: block;
}

.about-img-top {
    border-radius: 15px 15px 15px 60px;
}

.about-img-bottom {
    border-radius: 15px 60px 15px 15px;
}

.logo-circle {
    background: var(--primary-green);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-image-overlay .logo-circle {
    width: 150px;
    height: 150px;
    margin: 0;
    box-shadow: none;
}

.card-image-overlay:has(.logo-circle) {
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.card-image-overlay .logo-main {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.card-image-overlay .logo-sub {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.about-logo-img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

.card-image-overlay .about-logo-img {
    width: 75px;
    height: 75px;
}

.logo-text-overlay {
    color: white;
    font-weight: bold;
    text-align: center;
    margin-top: 0.5rem;
}

.logo-main {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.logo-sub {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.logo-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about-excellence {
    background: var(--white);
    padding: 4rem 0;
}

.about-excellence h2 {
    font-size: 2.2rem;
    text-align: left;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.excellence-card {
    background: white;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    align-items: stretch;
    min-height: auto;
    max-width: 1200px;
    margin: 0 auto;
}

.excellence-card:hover {
    box-shadow: none;
}

.quality-badge {
    background: var(--primary-green);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(76, 154, 42, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-icon {
    width: 24px;
    height: 24px;
}

.mission-vision {
    background: var(--white);
    padding: 4rem 0;
}

.mission-vision h2 {
    font-size: 2.2rem;
    text-align: left;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.mission-vision-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-vision-card {
    background: #fafafa;
    border: 2px solid #a3b18a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    min-height: 300px;
}

.mission-vision-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-image-container {
    flex: 1;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
}

/* Special styling for What We Offer section */
.about-excellence .card-image-container {
    align-items: stretch;
}

.about-excellence .card-image-wrapper {
    height: 100%;
    min-height: 400px;
}

.card-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-image-overlay {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    width: 150px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.card-img-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-image-overlay-left {
    left: -20px;
    right: auto;
    top: auto;
    bottom: -20px;
    transform: none;
}

/* Vision card overlay should be centered vertically */
.mission-vision .card-image-overlay-left {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}

.card-content {
    flex: 1;
    padding: 3rem;
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 600;
    text-align: left;
}

.card-content p {
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
    font-size: 1.1rem;
    text-align: left;
}

.card-content-right h3,
.card-content-right p,
.card-content-right ul,
.card-content-right li {
    text-align: left;
}

.card-content-right ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.card-content-right li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.meet-ceo {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0;
}

.ceo-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
}

.ceo-image {
    text-align: center;
}

.ceo-photo-placeholder {
    background: transparent;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: visible;
    margin-top: 60px;
    height: calc(100% - 60px);
    max-height: 340px;
}

.ceo-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.ceo-photo {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 10px;
    filter: saturate(0) sepia(0.4);
    position: relative;
    top: -60px;
}

.ceo-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.ceo-info p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.ceo-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-green);
}

.ceo-logo-img {
    width: 20px;
    height: 20px;
}

.ceo-text h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-green);
}

.ceo-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #ccc;
}

.board-members {
    background: var(--white);
    padding: 4rem 0;
}

.board-members h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 1rem;
}

.board-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.board-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    color: var(--text-light);
}

.board-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.board-member {
    flex: 0 0 calc(28% - 1.5rem);
    text-align: center;
    background: var(--light-gray);
    padding: 1.2rem 0.8rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.member-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.25rem;
    border: 3px solid var(--primary-green);
}

.member-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.board-member h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    min-height: 2.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.board-member p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-row,
    .excellence-card {
        flex-direction: column;
        gap: 2rem;
    }

    .excellence-card {
        min-height: auto;
    }

    .mission-vision-card {
        flex-direction: column !important;
        min-height: auto;
    }

    .card-image-container {
        padding: 1rem;
    }

    .card-image-wrapper {
        height: 200px;
    }

    .card-image-overlay {
        width: 120px;
        height: 120px;
        right: -10px;
    }

    .card-image-overlay-left {
        left: -10px;
        right: auto;
        bottom: -10px;
    }

    /* Vision card overlay should be centered vertically on mobile too */
    .mission-vision .card-image-overlay-left {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }

    .card-image-overlay .logo-circle {
        width: 120px;
        height: 120px;
    }

    .card-image-overlay .about-logo-img {
        width: 50px;
        height: 50px;
    }

    .card-image-overlay .logo-main {
        font-size: 0.7rem;
    }

    .card-image-overlay .logo-sub {
        font-size: 0.6rem;
    }

    .card-content {
        padding: 2rem;
    }

    .card-content h3 {
        font-size: 1.5rem;
    }

    .about-row.reverse {
        flex-direction: column;
    }

    .ceo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .board-grid {
        gap: 1rem;
    }

    .board-member {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .member-photo {
        width: 120px;
        height: 120px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .logo-circle {
        width: 150px;
        height: 150px;
    }
}

/* Product Detail Page Styles */
.product-detail-section {
    padding: 2rem 0 4rem 0;
    background: var(--white);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-detail-image {
    position: relative;
}

.product-detail-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.product-image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--light-gray);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.product-detail-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-green);
    color: var(--dark-green);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.product-thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.product-thumbnail.active {
    border-color: var(--primary-green);
    opacity: 1;
}

.product-detail-info {
    padding: 1rem 0;
}

.product-category {
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-detail-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-detail-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-features,
.product-nutrition,
.product-benefits {
    margin-bottom: 2rem;
}

.product-features h3,
.product-nutrition h3,
.product-benefits h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.product-features ul,
.benefits-list {
    list-style: none;
    padding: 0;
}

.product-features li,
.benefits-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.product-features li:before,
.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.product-nutrition p {
    color: var(--text-light);
    line-height: 1.6;
}

.product-actions-detail {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.quantity-unit-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.unit-selection,
.quantity-selection {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.unit-selection label,
.quantity-selection label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.unit-selector-detail {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem;
    font-size: 1rem;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.unit-selector-detail:focus {
    outline: none;
    border-color: var(--primary-green);
}

.quantity-controls-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn-detail {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.quantity-btn-detail:hover {
    background: var(--dark-green);
}

.quantity-input-detail {
    width: 80px;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem;
    font-size: 1rem;
    background: var(--white);
}

.quantity-input-detail:focus {
    outline: none;
    border-color: var(--primary-green);
}

.add-to-cart-btn-detail {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    width: 100%;
    margin-bottom: 1rem;
    transition: background 0.3s ease;
}

.add-to-cart-btn-detail:hover {
    background: var(--dark-green);
}

.product-actions-secondary {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    justify-content: center;
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

.btn-icon {
    width: 16px;
    height: 16px;
}

.related-products {
    background: var(--light-gray);
    padding: 4rem 0;
}

.related-products h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.product-not-found {
    text-align: center;
    padding: 4rem 2rem;
}

.product-not-found h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-not-found p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.no-related {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    padding: 2rem;
}

/* Responsive Design for Product Detail */
@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-detail-title {
        font-size: 2rem;
    }

    .quantity-unit-controls {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-actions-secondary {
        flex-direction: column;
    }

    .btn-secondary {
        flex: none;
    }

    .product-image-placeholder {
        height: 300px;
    }

    .product-detail-img {
        height: 300px;
    }
}

/* Sticky WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .whatsapp-icon {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}
