/* ==========================================================================
   Beesagro Solutions — site.css
   Single stylesheet. Do not add a second theme file alongside this one.
   ========================================================================== */

:root {
    --green-900: #1F3A26;
    --green-700: #2C5335;
    --green-600: #3C6E47;
    --green-500: #4B8058;
    --green-200: #C7DDA0;
    --green-100: #E4EFD4;
    --cream: #F6F1E2;
    --cream-dark: #EFE6CF;
    --cream-border: #E3DCC4;
    --terracotta: #D9714E;
    --terracotta-dark: #C6603F;
    --gold: #E8C468;
    --ink: #1F3A26;
    --text-muted: #6B7A63;
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --radius-lg: 18px;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow-sm: 0 2px 8px rgba(31,58,38,.07);
    --shadow: 0 14px 36px -10px rgba(31,58,38,.20);
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%; /* keeps it circular like your logo */
    object-fit: cover;
}
.navbar-logo img {
    height: 72px;
    width: 72px;
    margin-top: -10px;
    margin-bottom: -10px;
}
.multiselect {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--a-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}

    .multiselect option {
        padding: 6px 8px;
    }

        .multiselect option:checked {
            background: var(--a-green-100, #e6f2e8);
            color: var(--a-green-600);
        }
/* ---------- TOP TICKER ---------- */
.top-banner-ticker {
    width: 100vw;
    background-color: #c85a32;
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    padding: 7px 0;
    box-sizing: border-box;
    font-size: 0.875rem;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.top-banner-ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 15px;
}

.badge-fresh {
    background-color: #ffffff;
    color: #c85a32;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    flex-shrink: 0;
}

.ticker-divider {
    opacity: 0.6;
    font-size: 1rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---------- BASE ---------- */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--ink);
    background-color: var(--cream);
}

h1, h2, h3, h4, h5 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    color: var(--green-900);
}

img {
    max-width: 100%;
}

svg {
    flex-shrink: 0;
}

a {
    color: inherit;
}

section {
    padding: 80px 0;
}

@media (max-width:768px) {
    section {
        padding: 48px 0;
    }
}

/* ---------- TOP BANNER (legacy, unused if ticker is active) ---------- */
.top-banner {
    background: var(--terracotta);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: .88rem;
    font-weight: 500;
}

    .top-banner .badge-fresh {
        background: var(--green-900);
        color: var(--gold);
        padding: 3px 10px;
        border-radius: 20px;
        font-weight: 700;
        margin-right: 8px;
        font-size: .72rem;
        text-transform: uppercase;
    }

/* ---------- NAVBAR ---------- */
.navbar {
    background: var(--cream) !important;
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--green-900) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar .nav-link {
    color: var(--green-900) !important;
    font-weight: 600;
    font-size: .92rem;
    padding: .5rem 1rem !important;
    transition: opacity .2s ease;
}

    .navbar .nav-link:hover {
        opacity: .65;
    }

.navbar-brand svg {
    margin-bottom: 8px;
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: #fff !important;
    border-radius: 30px;
    font-weight: 700;
    padding: .55rem 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(37,211,102,.35);
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
}

    .btn-whatsapp:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 22px rgba(37,211,102,.45);
        color: #fff !important;
    }

/* ---------- HERO ---------- */
.hero {
    background: var(--green-900);
    padding: 70px 0 64px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
    align-items: start;
}

.hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(199,221,160,.15);
    color: var(--green-200);
    font-size: .8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.hero h1 {
    color: var(--cream);
    font-size: 2.6rem;
    line-height: 1.14;
    margin-bottom: 18px;
    font-weight: 600;
}

.hero p.lead {
    color: var(--green-200);
    font-size: 1.08rem;
    max-width: 44ch;
    margin-bottom: 28px;
}

.hero .btnrow {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero .btn-leaf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-200);
    color: var(--green-900);
    border: none;
    border-radius: 999px;
    padding: 13px 26px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: transform .15s ease, background .15s ease;
}

    .hero .btn-leaf:hover {
        background: #B7D08C;
        color: var(--green-900);
        transform: translateY(-2px);
    }

.hero .btn-outline-cream {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(246,241,226,.45);
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: background .15s ease;
}

    .hero .btn-outline-cream:hover {
        background: rgba(246,241,226,.1);
        color: var(--cream);
    }

/* Legacy static photo hero-media — kept in case any view still uses it */
.hero-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
}

    .hero-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero-media.placeholder {
        background: linear-gradient(160deg,var(--green-600),var(--green-700));
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--green-200);
        font-size: .85rem;
        text-align: center;
        padding: 20px;
    }

/* ---------- HERO PROMO BOXES (swiping product carousels) ---------- */
.hero-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-promo-box {
    position: relative;
    height: 190px;
    border-radius: 14px;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.promo-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.promo-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .promo-slide.active {
        opacity: 1;
    }

    .promo-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.promo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
    color: #fff;
    z-index: 2;
}

.promo-eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.85;
    margin-bottom: 4px;
}

.promo-title {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Single consolidated mobile breakpoint for the whole hero */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.05rem;
    }

    .hero-media {
        order: -1;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 767px) {
    .hero-side {
        flex-direction: row;
    }

    .hero-promo-box {
        height: 180px;
        flex: 1;
        min-width: 0;
    }
}
/* ---------- CATEGORY ICON STRIP ---------- */
.category-strip {
    background: #1f3d2c;
    padding: 48px 0;
}

.category-strip-heading {
    color: #f4efe1;
    text-align: center;
    margin-bottom: 32px;
    font-size: 1.75rem;
}

.category-icon-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.category-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 90px;
    transition: transform 0.2s ease;
}

    .category-icon-item:hover {
        transform: translateY(-4px);
    }

.category-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 10px;
}

    .category-icon-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.category-icon-label {
    color: #f4efe1;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.category-circle-row {
    display: flex;
    flex-wrap: nowrap; /* never wrap to a new row */
    justify-content: center;
    align-items: flex-start;
    gap: clamp(16px, 3vw, 50px); /* shrinks gap on narrower screens */
    margin-top: 40px;
    width: 100%;
}

.category-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 0; /* all items shrink/grow equally */
    min-width: 0; /* allows flex items to shrink below content size */
    max-width: 220px;
}

.circle-img-wrap {
    width: clamp(90px, 15vw, 200px); /* scales fluidly instead of jumping at breakpoints */
    height: clamp(90px, 15vw, 200px);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin: 0 auto;
}

    .circle-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.category-circle-item:hover .circle-img-wrap {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.category-circle-item h6 {
    margin-top: 14px;
    font-weight: 600;
    font-size: clamp(12px, 1.4vw, 17px);
    color: #1f2d20;
    white-space: nowrap; /* keep category name on one line */
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* On very small screens, allow horizontal scroll instead of squishing too small */
@media (max-width: 480px) {
    .category-circle-row {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
    }

    .category-circle-item {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .circle-img-wrap {
        width: 100px;
        height: 100px;
    }
}

/* ---------- SECTION HEADING ---------- */
.section-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

    .section-heading .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: .78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--green-600);
        margin-bottom: 10px;
    }

    .section-heading h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .section-heading p {
        color: var(--text-muted);
    }

@media (max-width:768px) {
    .section-heading h2 {
        font-size: 1.55rem;
    }
}

/* ---------- ABOUT / STORY ---------- */
.about-quote {
    font-family: 'Fraunces',serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--green-700);
    border-left: 4px solid var(--green-500);
    background: var(--green-100);
    padding: 24px 30px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 34px;
    line-height: 1.5;
}

.about-text p {
    color: #3A4A38;
    margin-bottom: 18px;
    font-size: 1.02rem;
    line-height: 1.7;
}

.about-text strong {
    color: var(--green-900);
}
/* ---------- ABOUT SECTION (distinct background + slideshow photo) ---------- */
.about-section {
    padding: 80px;
    background: var(--green-900);
}

    .about-section .section-heading .eyebrow {
        color: var(--green-200);
    }

    .about-section .section-heading h2 {
        color: var(--cream);
    }

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 44px;
    align-items: start;
}

.about-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow);
    position: relative;
}

.about-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

    .about-slide.active {
        opacity: 1;
    }

    .about-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.about-content .about-quote {
    background: rgba(199,221,160,.12);
    border-left-color: var(--green-200);
    color: var(--green-100);
}

.about-content .about-text p {
    color: var(--green-100);
    opacity: .92;
}

.about-content .about-text strong {
    color: var(--cream);
}

.about-points {
    list-style: none;
    padding: 0;
    margin: 8px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .about-points li {
        background: rgba(255,255,255,.06);
        border-left: 3px solid var(--gold);
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        padding: 14px 18px;
        color: var(--green-100);
        font-size: 1.02rem;
        line-height: 1.6;
    }

    .about-points strong {
        color: var(--gold);
        display: block;
        margin-bottom: 4px;
        font-family: 'Fraunces', serif;
    }

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-media {
        aspect-ratio: 16/9;
    }
}
/* ---------- MISSION CARDS ---------- */
.mission-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 26px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--green-500);
    transition: transform .2s ease;
}

    .mission-card:hover {
        transform: translateY(-5px);
    }

    .mission-card .icon-wrap {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--green-100);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }

        .mission-card .icon-wrap svg {
            color: var(--green-600);
        }

    .mission-card h5 {
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--green-900);
        margin-bottom: 8px;
    }

    .mission-card p {
        color: var(--text-muted);
        font-size: .93rem;
        margin: 0;
        line-height: 1.6;
    }

/* ---------- PRODUCT TEASER GRID (Home) ---------- */
.category-badge-strip {
    text-align: center;
    margin-bottom: 34px;
}

    .category-badge-strip .badge-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--green-100);
        color: var(--green-700);
        font-weight: 600;
        font-size: .92rem;
        padding: 10px 22px;
        border-radius: 999px;
    }

.product-teaser-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .product-teaser-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

    .product-teaser-card img {
        width: 100%;
        height: 190px;
        object-fit: cover;
        background: var(--cream-dark);
    }

    .product-teaser-card .body {
        padding: 18px 20px;
    }

    .product-teaser-card .tag {
        text-transform: uppercase;
        font-size: .72rem;
        font-weight: 700;
        color: var(--green-600);
        letter-spacing: .04em;
    }

    .product-teaser-card h6 {
        font-weight: 600;
        margin: 6px 0 0;
        color: var(--green-900);
        font-family: 'Fraunces',serif;
    }

/* ---------- ECO BANNER ---------- */
.eco-banner {
    background: linear-gradient(120deg,var(--green-900),var(--green-600));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 44px 40px;
}

    .eco-banner h3 {
        color: var(--gold);
        margin-bottom: 10px;
    }

    .eco-banner p {
        opacity: .92;
        margin: 0;
        max-width: 60ch;
    }

/* ---------- FOOTER ---------- */
footer {
    background: var(--green-900);
    color: #cfe4d6;
}

    footer h5, footer h6 {
        color: #fff;
    }

    footer a {
        color: #cfe4d6;
        text-decoration: none;
    }

        footer a:hover {
            color: #fff;
        }

    footer hr {
        border-color: rgba(255,255,255,.15);
    }

/* ==========================================================================
   PRODUCTS PAGE
   ========================================================================== */
.products-hero {
    background: var(--green-900);
    text-align: center;
    padding: 64px 20px 52px;
}

    .products-hero h2 {
        color: var(--cream);
        margin-bottom: 8px;
    }

    .products-hero p {
        color: var(--green-200);
        margin: 0;
    }

.search-wrap {
    padding: 32px 0 6px;
}

.search-input {
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    border: 1.5px solid var(--cream-border);
    border-radius: 30px;
    padding: 13px 22px;
    font-size: 1rem;
    outline: none;
    background: var(--white);
    transition: border-color .2s ease;
}

    .search-input:focus {
        border-color: var(--green-500);
    }

.tab-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 26px 4px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .tab-scroll::-webkit-scrollbar {
        display: none;
    }

.tab-btn {
    flex: 0 0 auto;
    background: var(--white);
    border: 1.5px solid var(--cream-border);
    color: var(--green-700);
    border-radius: 30px;
    padding: 9px 20px;
    font-weight: 600;
    font-size: .88rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all .2s ease;
}

    .tab-btn:hover {
        border-color: var(--green-500);
    }

    .tab-btn.active {
        background: var(--green-900);
        border-color: var(--green-900);
        color: var(--cream);
    }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
    margin-top: 10px;
}

@media (max-width:992px) {
    .product-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width:700px) {
    .product-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 14px;
    }
}

.product-card-inner {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .product-card-inner:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

    .product-card-inner img {
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
        background: var(--cream-dark);
    }

.product-tag-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: var(--gold);
    color: #5C4413;
    font-size: .68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.product-card-inner .body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-tag {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--green-600);
    margin-bottom: 4px;
}

.product-title {
    font-family: 'Fraunces',serif;
    font-weight: 600;
    color: var(--green-900);
    font-size: .98rem;
    margin: 0 0 8px;
}

.product-size {
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--terracotta-dark);
    margin-bottom: 12px;
}

.product-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--whatsapp);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 14px;
    font-size: .85rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .product-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(37,211,102,.35);
    }

#noResultsMsg {
    padding: 50px 0;
    color: var(--text-muted);
    text-align: center;
}

/* ---------- WhatsApp inquiry modal ---------- */
.inquiry-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(31,58,38,.55);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.inquiry-modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    width: 100%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

    .inquiry-modal-content h3 {
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
        color: var(--green-900);
    }

.close-modal {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-muted);
    background: none;
    border: none;
}

.form-group {
    margin-bottom: 16px;
}

    .form-group label {
        display: block;
        font-size: .85rem;
        font-weight: 700;
        color: var(--green-900);
        margin-bottom: 6px;
    }

    .form-group .form-control {
        width: 100%;
        border: 1.5px solid var(--cream-border);
        border-radius: var(--radius-sm);
        padding: 11px 14px;
        font-size: .95rem;
        outline: none;
    }

        .form-group .form-control:focus {
            border-color: var(--green-500);
        }

@media (max-width:480px) {
    .products-hero h2 {
        font-size: 1.6rem;
    }

    .inquiry-modal-content {
        padding: 24px 20px;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 220px); /* fixed size, not 1fr */
    justify-content: center; /* center the row instead of stretching */
    gap: 30px;
    margin-top: 20px;
}

.blog-card {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 220px;
}

.blog-card-image {
    position: relative;
    width: 220px;
    height: 220px; /* fixed small square, not dependent on column width */
    border-radius: 10px;
    overflow: hidden;
}

    .blog-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.35s ease;
    }

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* solid dark tint over the WHOLE image, not just bottom gradient */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

.blog-card-brief {
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-readmore {
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    text-decoration: underline;
}

.blog-card-heading {
    margin-top: 14px;
    font-size: 16px;
    text-align: center;
    color: #1f2d20;
}

}
/* Blog detail page */
.blog-detail {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 50px; /* pushes the whole block away from the green hero */
}

.blog-detail-top-actions {
    display: flex;
    justify-content: flex-end; /* pushes button to the right */
    width: 100%;
    margin-bottom: 30px;
}

.blog-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #2f6b3a;
    border: 1.5px solid #d8d8d8;
    border-radius: 8px;
    padding: 9px 16px;
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .15s ease, color .15s ease;
    white-space: nowrap;
}

    .blog-back-btn:hover {
        border-color: #2f6b3a;
        color: #2f6b3a;
    }

.blog-detail-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

    .blog-detail-content img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 20px 0;
    }

.back-to-blog {
    display: inline-block;
    margin-top: 40px;
    font-weight: 600;
    color: #1f2d20;
}
/* ===== Offers Index ===== */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.offer-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .offer-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.14);
    }

.offer-card-image {
    position: relative;
    width: 100%;
    height: 220px;
}

    .offer-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.offer-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #c0392b;
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.offer-card-body {
    padding: 22px 24px 24px;
}

    .offer-card-body h3 {
        font-size: 20px;
        color: #1f2d20;
        margin-bottom: 10px;
        line-height: 1.3;
    }

.offer-card-desc {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offer-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #eee;
}

.offer-validity {
    font-size: 12.5px;
    color: #888;
    font-weight: 600;
}

.offer-cta {
    background: #2f6b3a;
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.15s ease;
    white-space: nowrap;
}

    .offer-cta:hover {
        background: #245530;
        color: #fff;
    }

.empty-offers {
    text-align: center;
    padding: 60px 0;
    color: #888;
    font-size: 16px;
}

/* ===== Offer Details ===== */

.offer-detail {
    max-width: 850px;
    margin: 0 auto;
    padding-top: 50px;
}

.offer-detail-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}


.offer-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 140px);
    justify-content: start;
    gap: 20px;
    margin-bottom: 50px;
}

.offer-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #1f2d20;
    text-align: center;
    transition: transform 0.2s ease;
}

    .offer-product-card:hover {
        transform: translateY(-4px);
    }

    .offer-product-card img {
        width: 140px;
        height: 140px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        margin-bottom: 10px;
    }



.offer-detail-actions {
    margin-top: 20px;
    margin-bottom: 40px;
}

.btn-outline-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border: 1.5px solid #d8d8d8;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2f6b3a;
    text-decoration: none;
    transition: border-color 0.15s ease;
}

    .btn-outline-back:hover {
        border-color: #2f6b3a;
    }

.coupons-grid {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.coupon {
    display: flex;
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

    .coupon:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(0,0,0,0.13);
    }

/* Left stub — like the tear-off ticket end */
.coupon-left {
    flex: 0 0 140px;
    background: linear-gradient(135deg, #2f6b3a, #1f2d20);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 10px;
}

.coupon-icon {
    font-size: 34px;
    margin-bottom: 10px;
}

.coupon-tag {
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    background: rgba(255,255,255,0.15);
    padding: 5px 10px;
    border-radius: 20px;
}

/* Perforated divider between stub and body */
.coupon-divider {
    position: relative;
    width: 0;
    border-left: 2px dashed rgba(0,0,0,0.15);
}

.coupon-notch {
    position: absolute;
    left: -10px;
    width: 20px;
    height: 20px;
    background: #f6efe1; /* match your page background color */
    border-radius: 50%;
}

.coupon-notch-top {
    top: -10px;
}

.coupon-notch-bottom {
    bottom: -10px;
}

.coupon-right {
    flex: 1;
    padding: 22px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .coupon-right h3 {
        font-size: 19px;
        color: #1f2d20;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .coupon-right p {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

.coupon-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px dashed #e2e2e2;
}


/* Mobile: stack vertically instead of side-by-side */
@media (max-width: 640px) {
    .coupon {
        flex-direction: column;
    }

    .coupon-left {
        flex-direction: row;
        gap: 10px;
        padding: 14px;
    }

    .coupon-icon {
        margin-bottom: 0;
        font-size: 24px;
    }

    .coupon-divider {
        display: none;
    }
}

.offer-hero {
    background: linear-gradient(135deg, #7a0f0f, #c0392b 50%, #ff3b30);
    position: relative;
    overflow: hidden;
}

    .offer-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 50%), radial-gradient(circle at 80% 80%, rgba(0,0,0,0.15), transparent 50%);
        pointer-events: none;
    }

    .offer-hero .container {
        position: relative;
        z-index: 1;
    }

.offer-hero-badge {
    display: inline-block;
    background: #fff;
    color: #7a0f0f;
    font-size: 13px;
    font-weight: 800;
    padding: 7px 18px;
    border-radius: 20px;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.offer-hero h2 {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.offer-hero-countdown {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin-top: 10px;
    background: rgba(0,0,0,0.25);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
}

.offer-detail-desc {
    font-size: 18px;
    line-height: 1.85;
    color: #333;
    margin-bottom: 40px;
}

    .offer-detail-desc p {
        margin-bottom: 14px;
    }

.offer-detail-note {
    font-size: 15px;
    font-style: italic;
    color: #888;
    margin-top: 14px;
}

.offer-products-heading {
    font-size: 24px;
    color: #1f2d20;
    margin-bottom: 22px;
}

.offer-product-card span {
    font-size: 15px;
    font-weight: 600;
}

.coupon-validity {
    font-size: 13.5px;
}

.coupon-cta {
    font-size: 15px;
}

.coupon-right p {
    font-size: 15.5px;
}
/* ---------- Offer detail: urgency bar ---------- */
.offer-urgency-bar {
    max-width: 850px;
    margin: -24px auto 34px;
    background: var(--white);
    border-radius: var(--radius-lg); /* was 999px */
    padding: 18px 22px 14px; /* was 6px */
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
}

.offer-urgency-track {
    height: 10px;
    border-radius: 999px;
    background: var(--cream-dark);
    overflow: hidden;
}

.offer-urgency-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--green-500));
}

    .offer-urgency-fill.urgent {
        background: linear-gradient(90deg, var(--gold), var(--terracotta-dark));
    }

.offer-urgency-label {
    display: flex;
    justify-content: space-between;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 12px 2px;
}

/* ---------- Offer detail: description card ---------- */
.offer-detail-desc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px clamp(20px, 5vw, 44px);
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

    .offer-detail-desc-card .offer-detail-desc {
        margin-bottom: 0;
    }

    .offer-detail-desc-card .offer-detail-note {
        background: var(--cream);
        border-left: 3px solid var(--gold);
        padding: 12px 16px;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        margin-top: 18px;
    }

/* ---------- Offer detail: CTA box ---------- */
.offer-cta-box {
    background: var(--green-900);
    border-radius: var(--radius-lg);
    padding: 30px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

    .offer-cta-box h4 {
        color: var(--cream);
        margin: 0 0 4px;
        font-size: 1.15rem;
    }

    .offer-cta-box p {
        color: var(--green-200);
        margin: 0;
        font-size: .92rem;
    }

@media (max-width: 480px) {
    .offer-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ==========================================================================
   OUR STORY PAGE — scoped styles, independent from .about-section
   (used only on /About/Story — safe to add to site.css without touching
   the homepage About block)
   ========================================================================== */

.story-section {
    background: var(--cream);
    padding: 70px 0 90px;
}

.story-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 44px;
    align-items: start;
}

.story-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow);
    top: 110px; /* clears the sticky navbar + ticker; adjust if your header height differs */
}

.story-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.story-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

    .story-slide.active {
        opacity: 1;
    }

    .story-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.story-quote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--green-700);
    border-left: 4px solid var(--green-500);
    background: var(--green-100);
    padding: 24px 30px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 34px;
    line-height: 1.5;
}

.story-text p {
    color: #3A4A38;
    margin-bottom: 18px;
    font-size: 1.02rem;
    line-height: 1.7;
}

.story-text strong {
    color: var(--green-900);
}

.story-points {
    list-style: none;
    padding: 0;
    margin: 8px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .story-points li {
        background: var(--white);
        border-left: 3px solid var(--terracotta);
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        padding: 14px 18px;
        color: #3A4A38;
        font-size: 1.02rem;
        line-height: 1.6;
        box-shadow: var(--shadow-sm);
    }

    .story-points strong {
        color: var(--green-900);
        display: block;
        margin-bottom: 4px;
        font-family: 'Fraunces', serif;
    }

@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-media {
        position: static; /* sticky only makes sense side-by-side */
        aspect-ratio: 16/9;
    }
}
/* ==========================================================================
   HOMEPAGE ABOUT TEASER — compact variant, new classes only.
   Does not touch .about-grid / .about-media / .about-content, which may
   be used elsewhere.
   ========================================================================== */

.about-teaser-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: center;
}

.about-teaser-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    max-height: 320px;
}

    .about-teaser-media .about-slides {
        width: 100%;
        height: 100%;
        position: relative;
    }

.about-teaser-content .about-quote {
    font-size: 1.1rem;
    padding: 18px 22px;
    margin-bottom: 20px;
}

.about-teaser-content .about-text p {
    font-size: .98rem;
    line-height: 1.65;
    margin-bottom: 14px;
}

.about-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    color: var(--gold);
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color .2s ease, gap .2s ease;
}

.about-teaser-content .about-text p {
    color: var(--green-100);
    opacity: .92;
}

.about-teaser-content .about-text strong {
    color: var(--cream);
}

.about-read-more:hover {
    border-color: var(--gold);
    gap: 12px;
    color: var(--gold);
}

@media (max-width: 900px) {
    .about-teaser-grid {
        grid-template-columns: 1fr;
    }

    .about-teaser-media {
        aspect-ratio: 16/9;
        max-height: none;
    }
}

.eco-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.eco-banner-text {
    flex: 1;
}

.eco-banner-icon {
    flex-shrink: 0;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 34px;
}

@media (max-width: 640px) {
    .eco-banner {
        flex-direction: column;
        text-align: center;
    }

    .eco-banner-icon {
        order: -1;
    }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
}

    .contact-info-card h6 {
        font-size: .95rem;
        font-weight: 600;
        color: var(--green-900);
        margin: 0 0 4px;
    }

    .contact-info-card p {
        font-size: .92rem;
        color: var(--text-muted);
        margin: 0;
        line-height: 1.5;
    }

        .contact-info-card p a {
            color: var(--text-muted);
            text-decoration: none;
        }

            .contact-info-card p a:hover {
                color: var(--green-600);
            }

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-whatsapp-btn {
    justify-content: center;
    margin-top: 6px;
    font-size: 1rem;
}

.contact-map-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-map-wrap {
    flex: 1;
    min-height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-directions-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    color: var(--green-700);
    font-weight: 600;
    font-size: .92rem;
    text-decoration: none;
}

    .contact-directions-link:hover {
        color: var(--green-900);
    }

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-wrap {
        min-height: 280px;
    }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
}

    .contact-info-card h6 {
        font-size: .95rem;
        font-weight: 600;
        color: var(--green-900);
        margin: 0 0 4px;
    }

    .contact-info-card p {
        font-size: .92rem;
        color: var(--text-muted);
        margin: 0;
        line-height: 1.5;
    }

        .contact-info-card p a {
            color: var(--text-muted);
            text-decoration: none;
        }

            .contact-info-card p a:hover {
                color: var(--green-600);
            }

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-whatsapp-btn {
    justify-content: center;
    margin-top: 6px;
    font-size: 1rem;
}

.contact-map-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-map-wrap {
    flex: 1;
    min-height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-directions-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    color: var(--green-700);
    font-weight: 600;
    font-size: .92rem;
    text-decoration: none;
}

    .contact-directions-link:hover {
        color: var(--green-900);
    }

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-wrap {
        min-height: 280px;
    }
}

/* ---------- Contact form ---------- */
.contact-form-section {
    background: var(--cream-dark);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px clamp(20px, 5vw, 44px);
    box-shadow: var(--shadow-sm);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 640px) {
    .contact-form-row {
        grid-template-columns: 1fr;
    }
}

.contact-submit-btn {
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* ==========================================================================
   REVIEWS PAGE
   ========================================================================== */

.review-alert {
    background: var(--green-100);
    color: var(--green-700);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: .92rem;
}

/* ---------- Summary row: score + Google badge ---------- */
.review-summary-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 24px;
    margin-bottom: 44px;
}

.review-summary-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 28px;
    text-align: center;
}

.review-summary-score {
    font-family: 'Fraunces', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--green-900);
    line-height: 1;
}

.review-summary-card p {
    color: var(--text-muted);
    font-size: .88rem;
    margin: 8px 0 0;
}

.review-stars {
    color: var(--gold);
    font-size: 16px;
    margin: 8px 0;
}

.review-stars-lg {
    font-size: 22px;
}

.google-review-badge {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px 28px;
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .google-review-badge:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
        color: inherit;
    }

    .google-review-badge > .fa-google {
        font-size: 30px;
        color: var(--terracotta);
        flex-shrink: 0;
    }

    .google-review-badge h6 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--green-900);
        margin: 0 0 4px;
    }

    .google-review-badge p {
        font-size: .88rem;
        color: var(--text-muted);
        margin: 0;
    }

.google-review-badge-arrow {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .review-summary-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Review cards ---------- */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
}

.review-comment {
    color: #3A4A38;
    font-size: .95rem;
    line-height: 1.6;
    margin: 4px 0 18px;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-700);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-author h6 {
    font-size: .9rem;
    font-weight: 600;
    color: var(--green-900);
    margin: 0;
}

.review-author span {
    font-size: .78rem;
    color: var(--text-muted);
}

.review-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 0;
}

/* ---------- Review submission form ---------- */
.review-form-section {
    background: var(--cream-dark);
}

.review-form {
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px clamp(20px, 5vw, 44px);
    box-shadow: var(--shadow-sm);
}

.review-form-section .review-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 32px;
    margin-top: 8px;
    background-color: #2f4a35;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

    .review-form-section .review-submit-btn:hover {
        background-color: #24382a;
    }

    .review-form-section .review-submit-btn:active {
        transform: scale(0.98);
    }

    .review-form-section .review-submit-btn:disabled {
        background-color: #9aa79d;
        cursor: not-allowed;
    }

.review-field-error {
    display: block;
    color: var(--terracotta-dark);
    font-size: .8rem;
    margin-top: 4px;
}

/* Honeypot field - visually hidden but still present in the DOM for bots to fill */
.review-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ---------- Pure-CSS star rating picker (no JS) ---------- */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 6px;
    margin-top: 6px;
}

    .star-rating input {
        display: none;
    }

    .star-rating label {
        font-size: 30px;
        color: var(--cream-dark);
        cursor: pointer;
        transition: color .15s ease;
    }

        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--gold);
        }

.category-dropdown {
    border: none;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    padding: 0.5rem;
    min-width: 240px;
    animation: dropdownFade 0.18s ease;
    border-top: 3px solid #6b8f4e; /* ties it back to your green brand accent */
    border-radius: 0 0 12px 12px; /* flat top, rounded bottom only */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    background-color: #f5efdc;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    font-size: 0.92rem;
    color: #2f3b2f;
    transition: background-color 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}

    .category-dropdown .dropdown-item i {
        width: 18px;
        text-align: center;
        color: #6b8f4e; /* your green brand accent */
        font-size: 0.9rem;
    }

    .category-dropdown .dropdown-item:hover,
    .category-dropdown .dropdown-item:focus {
        background-color: #f0f5ea;
        color: #2f3b2f;
        padding-left: 1.05rem;
    }

    .category-dropdown .dropdown-item:active {
        background-color: #e2ecd6;
    }

.nav-item.dropdown .dropdown-toggle::after {
    transition: transform 0.2s ease;
    margin-left: 0.35rem;
    vertical-align: 0.15em;
}

.nav-item.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    .category-dropdown {
        background-color: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0.25rem 0 0.25rem 1.25rem; /* indent to show nesting */
        margin-top: 0;
        animation: none;
    }

        .category-dropdown .dropdown-item {
            padding: 0.5rem 0.5rem;
            font-size: 0.9rem;
            color: #5a6b52; /* slightly muted vs top-level links, shows hierarchy */
        }

            .category-dropdown .dropdown-item i {
                display: none;
            }

            .category-dropdown .dropdown-item:hover,
            .category-dropdown .dropdown-item:focus {
                background-color: rgba(0, 0, 0, 0.04);
                padding-left: 0.5rem; /* cancel the hover-shift from desktop rule */
            }
}

.farm-gallery-section {
    background: #c9a35a;
    padding-block: 4rem 5rem;
}

    .farm-gallery-section .section-heading h2 {
        color: #1a3d2e;
    }

    .farm-gallery-section .section-heading p {
        color: rgba(26,61,46,.75);
    }

    .farm-gallery-section .eyebrow {
        color: #6b4a1f;
    }

.farm-gallery-slider {
    position: relative;
    max-width: 1100px;
    margin: 2.5rem auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(0,0,0,.35);
}

.farm-gallery-slides {
    display: flex;
    transition: transform .5s ease;
}

.farm-gallery-slide {
    position: relative;
    flex: 0 0 100%;
    height: 560px;
}

    .farm-gallery-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.farm-gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 20px;
    background: linear-gradient(0deg, rgba(0,0,0,.65), transparent);
    color: #fff;
    font-size: .95rem;
    font-family: "Inter", sans-serif;
}

.farm-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.85);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}

    .farm-gallery-arrow:hover {
        background: #fff;
    }

    .farm-gallery-arrow.prev {
        left: 16px;
    }

    .farm-gallery-arrow.next {
        right: 16px;
    }

.farm-gallery-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

    .farm-gallery-dots .dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: rgba(255,255,255,.6);
        cursor: pointer;
        transition: background .2s ease;
    }

        .farm-gallery-dots .dot.active {
            background: #fff;
        }

@media (max-width: 640px) {
    .farm-gallery-slide {
        height: 260px;
    }
}

.farm-gallery-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/*.farm-gallery-slide img,
.farm-gallery-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}*/
/* Grid layout */
.gallery-page-section {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background: #000;
}

    .gallery-item img,
    .gallery-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover img,
    .gallery-item:hover video {
        transform: scale(1.05);
    }

.gallery-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 28px;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 0.85rem;
}

/* Modal */
.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .gallery-modal.active {
        display: flex;
    }

.gallery-modal-content {
    max-width: 90vw;
    max-height: 85vh;
    width: 90vw;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .gallery-modal-content img,
    .gallery-modal-content video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 4px;
    }

.gallery-modal-caption {
    color: #fff;
    margin-top: 8px;
    font-size: 1rem;
    text-align: center;
}

.gallery-modal-close {
    position: absolute;
    top: 16px;
    right: 24px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    z-index: 1001;
}

.gallery-modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none;
    font-size: 22px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
}

    .gallery-modal-arrow.prev {
        left: 20px;
    }

    .gallery-modal-arrow.next {
        right: 20px;
    }

    .gallery-modal-arrow:hover {
        background: rgba(255,255,255,0.3);
    }
