/* =====================================================
   FamaFresh – overrides for header sizing & menu spacing
   Loaded AFTER ogenix.css and ogenix-responsive.css
   ===================================================== */

/* =====================================================
   Responsive image fix
   ---------------------------------------------------------------
   We added explicit width / height attributes on every <img> tag
   to eliminate Cumulative Layout Shift (CLS) — a Core Web Vital.
   But CSS layouts often want images to scale to their container.
   The pattern below preserves the original aspect ratio while
   letting the layout control the actual rendered size.
   ----------------------------------------------------------------- */
img {
    max-width: 100%;
    height: auto;
}

/* Logo images keep their CSS-controlled dimensions */
.main-header__logo img,
.site-footer img.footer-logo {
    height: auto;
    width: auto;
}

/* ----- Logo box: smaller padding and a tighter logo image ----- */
.main-header__logo {
    padding: 0 28px;
}

.main-header__logo img {
    max-height: 56px;
    width: auto;
    display: block;
}

/* ----- Push the top bar and the menu past the absolutely-positioned
         logo box so nothing overlaps it. ----- */
.main-header__top-inner {
    padding-left: 260px;
}

/* The right-side cluster (search/cart/shop-now) was removed,
   so let the menu align to the start instead of stretching. */
.main-menu__wrapper-inner {
    padding-left: 260px;
    justify-content: flex-start;
}

/* ----- Tighter spacing between top-level menu items so 9 items fit ----- */
.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
    margin-left: 38px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
    font-size: 17px;
    font-weight: 600;
    white-space: nowrap;
}

/* ----- Slightly smaller social/contact area on top bar ----- */
.main-header__social {
    padding: 12px 24px;
    margin-left: 20px;
}

.main-header__contact-list li + li {
    margin-left: 40px;
}

/* ----- Responsive tweaks ----- */

/* Large desktops (1500px – 1700px) */
@media only screen and (min-width: 1500px) and (max-width: 1700px) {
    .main-header__top-inner,
    .main-menu__wrapper-inner {
        padding-left: 260px;
    }

    .main-menu .main-menu__list > li + li,
    .stricky-header .main-menu__list > li + li {
        margin-left: 30px;
    }
}

/* Standard desktops (1200px – 1499px) */
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .main-header__top-inner,
    .main-menu__wrapper-inner {
        padding-left: 250px;
    }

    .main-menu .main-menu__list > li + li,
    .stricky-header .main-menu__list > li + li {
        margin-left: 24px;
    }

    .main-menu .main-menu__list > li > a,
    .stricky-header .main-menu__list > li > a {
        font-size: 16px;
    }

    .main-menu__search,
    .main-menu__search i {
        font-size: 14px;
    }
}

/* Tablets (768px – 991px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-header__logo {
        padding: 0 20px;
    }

    .main-header__logo img {
        max-height: 46px;
    }

    .main-menu__wrapper-inner {
        padding-left: 220px;
    }
}

/* Mobile (≤ 767px) */
@media (max-width: 767px) {
    .main-header__logo {
        padding: 0 16px;
    }

    .main-header__logo img {
        max-height: 42px;
    }
}

/* =====================================================
   Featured Products – filter badges, grid & More btn
   ===================================================== */

/* --- Filter Tab Badges --- */
.fama-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.fama-filter-btn {
    display: inline-block;
    padding: 8px 24px;
    border: 2px solid var(--ogenix-primary);
    background: transparent;
    color: var(--ogenix-primary);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.fama-filter-btn:hover,
.fama-filter-btn.active {
    background: var(--ogenix-primary);
    color: #fff;
}

/* --- Product card badge (Citrus / Fruits / Vegetables) --- */
.fama-product-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: var(--ogenix-primary);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

/* --- Products grid spacing --- */
.fama-products-grid .fama-product-item {
    margin-bottom: 30px;
    transition: opacity 0.3s ease;
}

/* --- Uniform product image size --- */
.fama-products-grid .hot-products__img {
    aspect-ratio: 1 / 1;
    background: #f7f5ee;
    overflow: hidden;
}

.fama-products-grid .hot-products__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.fama-products-grid .hot-products__single:hover .hot-products__img img {
    transform: scale(1.06);
}

/* --- Card content spacing --- */
.fama-products-grid .hot-products__single {
    margin-bottom: 0; /* spacing handled by .fama-product-item */
    height: 100%;
}

.fama-products-grid .hot-products__content {
    margin-top: 16px;
    margin-bottom: 20px;
    padding: 0 14px;
}

.fama-products-grid .hot-products__title {
    font-size: 18px;
    line-height: 24px;
    margin: 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fama-products-grid .hot-products__title a {
    color: var(--ogenix-black);
}

.fama-products-grid .hot-products__title a:hover {
    color: var(--ogenix-primary);
}

/* --- More button row --- */
.fama-products-more {
    margin-top: 20px;
    padding-bottom: 10px;
}

.fama-more-btn {
    padding: 14px 52px;
    font-size: 15px;
}

.fama-more-btn i {
    margin-left: 8px;
    font-size: 13px;
}

/* Hide price & cart elements (safety net) */
.hot-products__price,
.hot-products__btn-box,
.hot-products__icon-boxes,
.hot-products__rating {
    display: none;
}
.fama-products-slider .owl-nav button:hover {
    opacity: 1;
}
.fama-products-slider .owl-nav .owl-prev {
    left: -20px;
}
.fama-products-slider .owl-nav .owl-next {
    right: -20px;
}

/* =====================================================
   Hero slider – tighter sizing so the long title doesn't
   overflow into the produce image.
   ===================================================== */
.main-slider__sub-title {
    font-size: 22px;
    line-height: 28px;
}

.main-slider__title {
    font-size: 64px;
    line-height: 72px;
    margin-top: 16px;
    margin-bottom: 32px;
    max-width: 640px;
}

@media only screen and (min-width: 1500px) and (max-width: 1700px) {
    .main-slider__title {
        font-size: 60px;
        line-height: 68px;
        max-width: 600px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .main-slider__sub-title {
        font-size: 20px;
        line-height: 26px;
    }

    .main-slider__title {
        font-size: 52px;
        line-height: 60px;
        max-width: 540px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-slider__sub-title {
        font-size: 18px;
        line-height: 24px;
    }

    .main-slider__title {
        font-size: 44px;
        line-height: 52px;
        max-width: 480px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-slider__sub-title {
        font-size: 18px;
        line-height: 24px;
    }

    .main-slider__title {
        font-size: 38px;
        line-height: 46px;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .main-slider__sub-title {
        font-size: 16px;
        line-height: 22px;
    }

    .main-slider__title {
        font-size: 30px;
        line-height: 38px;
        max-width: 100%;
    }
}

/* =====================================================
   About page – Downloads / Brochures
   ===================================================== */
.fama-downloads {
    padding: 80px 0 90px;
}

.fama-download-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 12px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.fama-download-card:hover {
    border-color: var(--ogenix-primary);
    box-shadow: 0 10px 30px rgba(80, 167, 44, 0.15);
    transform: translateY(-3px);
}

.fama-download-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(80, 167, 44, 0.1);
    color: var(--ogenix-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.fama-download-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ogenix-black);
    margin: 0 0 4px;
}

.fama-download-info p {
    font-size: 14px;
    color: var(--ogenix-gray);
    margin: 0 0 6px;
}

.fama-download-meta {
    font-size: 12px;
    font-weight: 600;
    color: var(--ogenix-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =====================================================
   About page - Facility sections (Packhouse / Processing)
   text on one side + photo grid on the other
   ===================================================== */
.fama-facility-section {
    padding: 80px 0 60px;
}

.fama-facility-section.fama-processing {
    background: #fafaf5;
}

.fama-section-intro .section-title {
    margin-bottom: 22px;
}

.fama-section-text {
    font-size: 16px;
    line-height: 28px;
    color: var(--ogenix-gray);
    margin-bottom: 22px;
}

.fama-section-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 0;
    font-size: 15px;
    color: var(--ogenix-black);
}

.fama-section-list li .fa-check {
    color: #fff;
    background: var(--ogenix-primary);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Facility photo cards inside the side-grid */
.fama-facility-section .fama-facility-grid {
    margin: 0 -8px;
}

.fama-facility-section .fama-facility-item {
    padding: 0 8px;
    margin-bottom: 16px;
}

.fama-facility-card {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    background: #f7f5ee;
}

.fama-facility-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.fama-facility-card:hover img {
    transform: scale(1.06);
}

.fama-facility-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--ogenix-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 3px 8px;
    border-radius: 14px;
    z-index: 2;
}

/* Larger aspect for processing photos */
.fama-facility-item--lg .fama-facility-card img {
    aspect-ratio: 5 / 4;
}

@media (max-width: 991px) {
    .fama-section-intro [class^="col-"] {
        margin-bottom: 30px;
    }
    .fama-facility-section.fama-processing .order-1 {
        margin-top: 30px;
    }
}

/* =====================================================
   About page - Quality & Food Safety
   ===================================================== */
.fama-quality {
    padding: 90px 0;
}

.fama-quality__lead {
    max-width: 760px;
    margin: -10px auto 40px;
    font-size: 16px;
    line-height: 28px;
    color: var(--ogenix-gray);
}

.fama-cert-grid {
    margin-top: 10px;
}

.fama-cert-card {
    display: block;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 30px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
}

.fama-cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(80, 167, 44, 0.18);
    color: inherit;
}

.fama-cert-card__img {
    background: #f7f5ee;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.fama-cert-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.fama-cert-card:hover .fama-cert-card__img img {
    transform: scale(1.04);
}

.fama-cert-card__body {
    padding: 22px 24px 24px;
    flex-grow: 1;
}

.fama-cert-card__badge {
    display: inline-block;
    background: rgba(80, 167, 44, 0.12);
    color: var(--ogenix-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.fama-cert-card__body h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--ogenix-black);
    margin: 0 0 8px;
}

.fama-cert-card__body p {
    font-size: 14px;
    line-height: 22px;
    color: var(--ogenix-gray);
    margin: 0 0 12px;
}

.fama-cert-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ogenix-primary);
    margin-top: 4px;
}

.fama-cert-card__meta i {
    font-size: 16px;
}

/* "Additional Standards" card – text-only variant */
.fama-cert-card--list {
    cursor: default;
    pointer-events: none;
}

.fama-cert-card--list .fama-cert-card__body {
    padding: 30px 28px;
}

.fama-cert-card--list .fama-cert-list {
    margin-top: 14px;
}

.fama-cert-card--list .fama-cert-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 14px;
    color: var(--ogenix-gray);
}

.fama-cert-card--list .fa-check-circle {
    color: var(--ogenix-primary);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.fama-cert-card--list .fama-cert-list li strong {
    color: var(--ogenix-black);
    margin-right: 4px;
}

/* =====================================================
   Products Page – category headings, tags & card styles
   ===================================================== */

/* Remove price, add-to-cart, star ratings & wishlist/eye icons */
.product__all-price,
.product__all-btn-box,
.product__all-review,
.products__all-icon-boxes {
    display: none !important;
}

/* Category section title strip */
.product-category-title {
    margin: 36px 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8e8e8;
    font-size: 20px;
    font-weight: 700;
    color: var(--ogenix-black);
}

.product-category-title .category-badge {
    display: inline-block;
    background: var(--ogenix-primary);
    color: #fff;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-right: 10px;
}

/* Small tag inside each product card */
.product-category-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: var(--ogenix-primary);
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
}

/* Uniform square product image */
.product__all-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f7f5ee;
}

.product__all-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.product__all-single:hover .product__all-img img {
    transform: scale(1.06);
}

/* Product card content */
.product__all-content {
    padding: 14px 16px 16px;
}

.product__all-title {
    font-size: 16px;
    font-weight: 700;
    margin: 4px 0 0;
    color: var(--ogenix-black);
}

.product__all-title a {
    color: inherit;
}

.product__all-title a:hover {
    color: var(--ogenix-primary);
}

/* Sidebar category filter: active & hover */
.shop-category ul li.active a,
.shop-category ul li a:hover {
    color: var(--ogenix-primary);
    font-weight: 700;
}

/* Hide sidebar showing-result sort area (optional clean-up) */
.product__showing-result {
    display: none;
}

/* Category row hidden by JS filter */
.product-category-row.fama-hidden {
    display: none;
}

/* Product varieties list inside card */
.product-varieties {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* =====================================================
   Quality & Food Safety Page  (fama-qs__*)
   ===================================================== */

/* --- Intro section --- */
.fama-qs__intro {
    padding: 100px 0 80px;
}

.fama-qs__stat-row {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.fama-qs__stat {
    display: flex;
    flex-direction: column;
}
.fama-qs__stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--ogenix-base);
    line-height: 1;
}
.fama-qs__stat-label {
    font-size: 13px;
    color: var(--ogenix-gray);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* Intro image collage */
.fama-qs__intro-img-wrap {
    position: relative;
    padding: 20px 20px 60px 0;
}
.fama-qs__intro-img {
    border-radius: 12px;
    overflow: hidden;
    display: block;
    width: 100%;
    object-fit: cover;
}
.fama-qs__intro-img--main {
    width: 80%;
    height: 380px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.fama-qs__intro-img--accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 220px;
    border: 5px solid #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
.fama-qs__intro-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--ogenix-base);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(80, 167, 44, 0.35);
}

/* --- Timeline --- */
.fama-qs__journey {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.fama-qs__journey-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    z-index: 0;
}
.fama-qs__journey .container {
    position: relative;
    z-index: 1;
}

.fama-qs__timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}
@media (max-width: 991px) {
    .fama-qs__timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .fama-qs__timeline {
        grid-template-columns: 1fr;
    }
}

.fama-qs__timeline-item {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.07);
    border-top: 4px solid var(--ogenix-base);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.fama-qs__timeline-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}
.fama-qs__timeline-icon {
    width: 54px;
    height: 54px;
    background: var(--ogenix-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.fama-qs__timeline-icon i {
    font-size: 22px;
    color: #fff;
}
.fama-qs__timeline-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ogenix-black);
    margin-bottom: 10px;
}
.fama-qs__timeline-body p {
    font-size: 14px;
    color: var(--ogenix-gray);
    line-height: 1.7;
    margin: 0;
}

/* --- Pillars --- */
.fama-qs__pillars {
    padding: 100px 0;
    background: var(--ogenix-extra);
}

.fama-qs__pillar {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    height: 100%;
}
.fama-qs__pillar:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(80, 167, 44, 0.15);
}
.fama-qs__pillar-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--ogenix-base), #3d8a22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(80, 167, 44, 0.3);
}
.fama-qs__pillar-icon i {
    font-size: 28px;
    color: #fff;
}
.fama-qs__pillar h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ogenix-black);
}
.fama-qs__pillar p {
    font-size: 14px;
    color: var(--ogenix-gray);
    line-height: 1.7;
    margin: 0;
}

/* --- Parallax Quote Band --- */
.fama-qs__quote-band {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.fama-qs__quote-band-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.fama-qs__quote-band-overlay {
    position: absolute;
    inset: 0;
    background: rgba(42, 73, 29, 0.82);
}
.fama-qs__quote-band .container {
    position: relative;
    z-index: 1;
}
.fama-qs__quote-icon {
    font-size: 56px;
    color: var(--ogenix-primary);
    opacity: 0.7;
    display: block;
    margin-bottom: 24px;
}
.fama-qs__quote-text {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .fama-qs__quote-text {
        font-size: 24px;
    }
}
.fama-qs__quote-author {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
}
.fama-qs__quote-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.fama-qs__quote-badges span {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.fama-qs__quote-badges i {
    color: var(--ogenix-primary);
}

/* --- Why it matters --- */
.fama-qs__why {
    padding: 100px 0;
}
.fama-qs__cta-btn {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.fama-qs__why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding-left: 30px;
}
.fama-qs__why-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.5s ease;
}
.fama-qs__why-img:hover img {
    transform: scale(1.04);
}
.fama-qs__why-img {
    overflow: hidden;
    border-radius: 12px;
}
.fama-qs__why-img--1 {
    grid-column: 1;
    grid-row: 1;
}
.fama-qs__why-img--2 {
    grid-column: 2;
    grid-row: 1;
}
.fama-qs__why-img--3 {
    grid-column: 1;
    grid-row: 2;
}
.fama-qs__why-img--4 {
    grid-column: 2;
    grid-row: 2;
}
@media (max-width: 767px) {
    .fama-qs__why-grid {
        padding-left: 0;
        margin-top: 40px;
    }
}

/* --- CTA Band --- */
.fama-qs__cta-band {
    background: var(--ogenix-black);
    padding: 80px 0;
    overflow: hidden;
}
.fama-qs__cta-inner {
    position: relative;
}
.fama-qs__cta-shape {
    position: absolute;
    opacity: 0.08;
    pointer-events: none;
}
.fama-qs__cta-shape:first-child {
    top: -40px;
    left: -60px;
    width: 200px;
}
.fama-qs__cta-shape--2 {
    bottom: -40px;
    right: -60px;
    width: 160px;
}
.fama-qs__cta-text span.section-title__tagline {
    color: var(--ogenix-primary);
}
.fama-qs__cta-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin: 12px 0 16px;
}
.fama-qs__cta-text p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
}
.fama-qs__cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
@media (max-width: 1199px) {
    .fama-qs__cta-buttons {
        justify-content: flex-start;
        margin-top: 30px;
    }
}
.fama-qs__btn-outline {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: #fff !important;
}
.fama-qs__btn-outline:hover {
    background: #fff !important;
    color: var(--ogenix-black) !important;
    border-color: #fff !important;
}

/* =====================================================
   Packhouse Page  (fama-ph__*)
   ===================================================== */

/* Intro */
.fama-ph__intro {
    padding: 100px 0 80px;
}

.fama-ph__intro-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 34px;
}
.fama-ph__stat {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ogenix-black);
}
.fama-ph__stat i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ogenix-base);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

/* Intro mosaic */
.fama-ph__hero-mosaic {
    position: relative;
    padding-bottom: 80px;
    padding-right: 20px;
}
.fama-ph__mosaic-main {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}
.fama-ph__mosaic-main img {
    width: 75%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.fama-ph__mosaic-main:hover img {
    transform: scale(1.05);
}
.fama-ph__mosaic-play {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ogenix-base);
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.fama-ph__mosaic-sm {
    position: absolute;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.fama-ph__mosaic-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.fama-ph__mosaic-sm:hover img {
    transform: scale(1.06);
}
.fama-ph__mosaic-sm--1 {
    bottom: 20px;
    left: 40%;
    width: 180px;
    height: 140px;
}
.fama-ph__mosaic-sm--2 {
    bottom: 20px;
    right: 0;
    width: 180px;
    height: 140px;
}
@media (max-width: 767px) {
    .fama-ph__hero-mosaic {
        padding-bottom: 0;
        padding-right: 0;
    }
    .fama-ph__mosaic-main img {
        width: 100%;
        height: 260px;
    }
    .fama-ph__mosaic-sm {
        display: none;
    }
}

/* Steps */
.fama-ph__steps {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.fama-ph__steps-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}
.fama-ph__steps .container {
    position: relative;
    z-index: 1;
}

.fama-ph__steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}
@media (max-width: 991px) {
    .fama-ph__steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .fama-ph__steps-grid {
        grid-template-columns: 1fr;
    }
}

.fama-ph__step {
    background: #fff;
    border-radius: 16px;
    padding: 34px 28px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.fama-ph__step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--ogenix-base),
        var(--ogenix-primary)
    );
}
.fama-ph__step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}
.fama-ph__step-num {
    font-size: 52px;
    font-weight: 900;
    color: var(--ogenix-base);
    opacity: 0.1;
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--ogenix-font);
}
.fama-ph__step-icon {
    width: 54px;
    height: 54px;
    background: var(--ogenix-base);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.fama-ph__step-icon i {
    font-size: 22px;
    color: #fff;
}
.fama-ph__step h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--ogenix-black);
}
.fama-ph__step p {
    font-size: 14px;
    color: var(--ogenix-gray);
    line-height: 1.7;
    margin: 0;
}

/* Gallery */
.fama-ph__gallery {
    padding: 80px 0 60px;
    background: var(--ogenix-extra);
}

/* Pack formats */
.fama-ph__formats {
    padding: 100px 0;
}

.fama-ph__format-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}
.fama-ph__format-card:hover {
    border-color: var(--ogenix-base);
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(80, 167, 44, 0.15);
}
.fama-ph__format-card--highlight {
    background: linear-gradient(145deg, var(--ogenix-base), #3d8a22);
    color: #fff;
}
.fama-ph__format-card--highlight,
.fama-ph__format-card--highlight h4,
.fama-ph__format-card--highlight p,
.fama-ph__format-card--highlight * {
    color: #fff !important;
    opacity: 1 !important;
}
.fama-ph__format-card--highlight .fama-ph__format-icon {
    background: rgba(255, 255, 255, 0.2);
}
.fama-ph__format-card--highlight .fama-ph__format-icon i {
    color: #fff;
}
.fama-ph__format-card--highlight:hover {
    border-color: transparent;
}

.fama-ph__format-icon {
    width: 70px;
    height: 70px;
    background: rgba(80, 167, 44, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.fama-ph__format-icon i {
    font-size: 28px;
    color: var(--ogenix-base);
}
.fama-ph__format-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ogenix-black);
}
.fama-ph__format-card p {
    font-size: 14px;
    color: var(--ogenix-gray);
    line-height: 1.7;
    margin: 0;
}
.fama-ph__format-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--ogenix-primary);
    color: var(--ogenix-black);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
}

/* Parallax CTA */
.fama-ph__cta-parallax {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}
.fama-ph__cta-parallax-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.fama-ph__cta-parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(42, 73, 29, 0.8);
}
.fama-ph__cta-parallax .container {
    position: relative;
    z-index: 1;
}
.fama-ph__cta-parallax-inner .section-title__tagline {
    color: var(--ogenix-primary);
}
.fama-ph__cta-parallax-inner h2 {
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin: 16px 0 20px;
}
@media (max-width: 767px) {
    .fama-ph__cta-parallax-inner h2 {
        font-size: 30px;
    }
}
.fama-ph__cta-parallax-inner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto 40px;
}
.fama-ph__cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.fama-ph__btn-outline {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
}
.fama-ph__btn-outline:hover {
    background: #fff !important;
    color: var(--ogenix-black) !important;
    border-color: #fff !important;
}

/* =====================================================
   Seasonality Page  (fama-sea__*)
   ===================================================== */

/* Intro */
.fama-sea__intro {
    padding: 90px 0 50px;
}
.fama-sea__intro-text {
    font-size: 16px;
    color: var(--ogenix-gray);
    line-height: 1.8;
    margin: 24px 0 36px;
}
.fama-sea__legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.fama-sea__legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ogenix-black);
}
.fama-sea__dot {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: inline-block;
    flex-shrink: 0;
}
.fama-sea__dot--peak {
    background: var(--ogenix-base);
}
.fama-sea__dot--avail {
    background: #a8d880;
}
.fama-sea__dot--off {
    background: #e8e8e2;
}

/* Calendar Table */
.fama-sea__calendar-section {
    padding: 20px 0 80px;
    background: var(--ogenix-extra);
}
.fama-sea__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}
.fama-sea__table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
    background: #fff;
    font-size: 13px;
}
.fama-sea__table thead tr {
    background: var(--ogenix-black);
    color: #fff;
}
.fama-sea__table thead th {
    padding: 14px 10px;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.fama-sea__th-product {
    text-align: left !important;
    padding-left: 20px !important;
    min-width: 200px;
}

/* Group row */
.fama-sea__group-row td {
    background: var(--ogenix-base);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 10px 20px;
    border: none;
}
.fama-sea__group-row td i {
    margin-right: 8px;
    opacity: 0.85;
}

/* Product name cell */
.fama-sea__product-name {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px !important;
    text-align: left !important;
    font-weight: 600;
    color: var(--ogenix-black);
    font-size: 13px;
    line-height: 1.4;
}
.fama-sea__product-name img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.fama-sea__product-name small {
    font-size: 11px;
    font-weight: 400;
    color: var(--ogenix-gray);
    display: block;
    margin-top: 2px;
}

/* Month cells */
.fama-sea__table tbody tr td {
    text-align: center;
    padding: 10px 6px;
    border-bottom: 1px solid #f0f0ea;
    border-right: 1px solid #f0f0ea;
}
.fama-sea__table tbody tr:hover td:not(.fama-sea__product-name) {
    filter: brightness(0.93);
}
.fama-sea__table td.peak {
    background: var(--ogenix-base);
    position: relative;
}
.fama-sea__table td.peak::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 auto;
}
.fama-sea__table td.avail {
    background: #a8d880;
}
.fama-sea__table td.off {
    background: #f0f0ea;
}

/* Seasonality image cards */
.fama-sea__cards {
    padding: 100px 0;
}
.fama-sea__card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.fama-sea__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}
.fama-sea__card-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.fama-sea__card:hover .fama-sea__card-img img {
    transform: scale(1.04);
}
.fama-sea__card-body {
    padding: 18px 20px 20px;
}
.fama-sea__card-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: var(--ogenix-base);
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.fama-sea__card-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ogenix-black);
    margin: 0;
    line-height: 1.4;
}
.fama-sea__card-body h4 em {
    font-style: normal;
    color: var(--ogenix-gray);
    font-weight: 400;
    font-size: 13px;
}

/* CTA */
.fama-sea__cta {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
}
.fama-sea__cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.fama-sea__cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(42, 73, 29, 0.83);
}
.fama-sea__cta .container {
    position: relative;
    z-index: 1;
}
.fama-sea__cta-inner .section-title__tagline {
    color: var(--ogenix-primary);
}
.fama-sea__cta-inner h2 {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin: 16px 0 18px;
}
@media (max-width: 767px) {
    .fama-sea__cta-inner h2 {
        font-size: 28px;
    }
}
.fama-sea__cta-inner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto 36px;
}
.fama-sea__cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.fama-sea__btn-outline {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
}
.fama-sea__btn-outline:hover {
    background: #fff !important;
    color: var(--ogenix-black) !important;
    border-color: #fff !important;
}

/* ===================================================== */

.product-varieties li {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--ogenix-base);
    background: rgba(80, 167, 44, 0.08);
    border: 1px solid rgba(80, 167, 44, 0.28);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

/* =====================================================
   Markets Page (fama-mk__*)
   ===================================================== */

/* ----- Intro section ----- */
.fama-mk__intro {
    padding: 80px 0 70px;
    background: var(--ogenix-extra);
}
.fama-mk__intro-text .section-title__tagline {
    color: var(--ogenix-base);
}
.fama-mk__intro-text .section-title__title {
    font-size: 38px;
    color: var(--ogenix-black);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
}
.fama-mk__intro-text p {
    font-size: 16px;
    color: var(--ogenix-gray);
    line-height: 1.75;
    margin-bottom: 16px;
}
.fama-mk__stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.fama-mk__stat-box {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(42, 73, 29, 0.08);
    border: 1px solid rgba(80, 167, 44, 0.12);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.fama-mk__stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(80, 167, 44, 0.16);
}
.fama-mk__stat-num {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--ogenix-base);
    line-height: 1;
}
.fama-mk__stat-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ogenix-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 8px;
}
@media (max-width: 767px) {
    .fama-mk__intro {
        padding: 50px 0;
    }
    .fama-mk__intro-text .section-title__title {
        font-size: 28px;
    }
    .fama-mk__stat-num {
        font-size: 32px;
    }
}

/* ----- Map section ----- */
.fama-mk__map-section {
    padding: 80px 0 60px;
    background: #fff;
}
.fama-mk__map-header {
    margin-bottom: 32px;
}
.fama-mk__map-header .section-title__tagline {
    color: var(--ogenix-base);
}
.fama-mk__map-header .section-title__title {
    font-size: 36px;
    color: var(--ogenix-black);
    font-weight: 800;
    margin-bottom: 12px;
}
.fama-mk__map-sub {
    font-size: 15px;
    color: var(--ogenix-gray);
    margin-bottom: 0;
}
.fama-mk__map-legend {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.fama-mk__legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ogenix-black);
}
.fama-mk__legend-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}
.fama-mk__legend-dot--origin {
    background: #ffbd3c;
    border: 2px solid #e6a520;
}
.fama-mk__legend-dot--dest {
    background: #50a72c;
    border: 2px solid #3d8221;
}
.fama-mk__legend-dot--inactive {
    background: #e8e8e2;
    border: 2px solid #c8c8be;
}
.fama-mk__map-wrap {
    position: relative;
    background: #d4e8f5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(42, 73, 29, 0.12);
    user-select: none;
    -webkit-user-select: none;
}
#fama-world-map {
    width: 100%;
    height: auto;
    display: block;
}
.fama-country {
    transition: filter 0.15s ease;
}

@keyframes fama-pulse-dest {
    0% {
        r: 5;
        opacity: 0.8;
    }
    60% {
        r: 14;
        opacity: 0;
    }
    100% {
        r: 5;
        opacity: 0;
    }
}
@keyframes fama-pulse-origin {
    0% {
        r: 8;
        opacity: 0.9;
    }
    60% {
        r: 22;
        opacity: 0;
    }
    100% {
        r: 8;
        opacity: 0;
    }
}
.fama-pulse-ring--dest {
    animation: fama-pulse-dest 2.2s ease-out infinite;
    transform-box: fill-box;
    transform-origin: center;
}
.fama-pulse-ring--origin {
    animation: fama-pulse-origin 2s ease-out infinite;
    transform-box: fill-box;
    transform-origin: center;
}
.fama-mk__tooltip {
    position: absolute;
    pointer-events: none;
    background: #2a491d;
    color: #fff;
    border-radius: 10px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(4px);
    transition:
        opacity 0.15s ease,
        transform 0.15s ease;
    z-index: 30;
    min-width: 160px;
}
.fama-mk__tooltip.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.fama-mk__tooltip-flag {
    font-size: 22px;
    line-height: 1;
}
.fama-mk__tooltip-body strong {
    display: block;
    font-size: 13px;
    color: #fff;
}
.fama-mk__tooltip-body span {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    margin-top: 2px;
}
.fama-mk__info-card {
    display: none;
    margin-top: 20px;
}
.fama-mk__info-card.is-visible {
    display: block;
    animation: fama-slidein 0.3s ease;
}
@keyframes fama-slidein {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fama-mk__info-card-inner {
    position: relative;
    background: var(--ogenix-extra);
    border-radius: 14px;
    padding: 24px 44px 24px 24px;
    border-left: 4px solid var(--ogenix-base);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 4px 20px rgba(42, 73, 29, 0.08);
}
.fama-mk__info-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: var(--ogenix-gray);
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.2s;
}
.fama-mk__info-close:hover {
    color: var(--ogenix-black);
}
.fama-mk__info-flag {
    font-size: 40px;
    line-height: 1;
    flex-shrink: 0;
}
.fama-mk__info-body h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ogenix-black);
    margin-bottom: 4px;
}
.fama-mk__info-body #fama-info-cat {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ogenix-base);
    margin-bottom: 8px;
    display: block;
}
.fama-mk__info-body #fama-info-desc {
    font-size: 14px;
    color: var(--ogenix-gray);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ----- Regions grid ----- */
.fama-mk__regions {
    padding: 80px 0 70px;
    background: var(--ogenix-extra);
}
.fama-mk__regions-header {
    margin-bottom: 48px;
}
.fama-mk__regions-header .section-title__tagline {
    color: var(--ogenix-base);
}
.fama-mk__regions-header .section-title__title {
    font-size: 36px;
    color: var(--ogenix-black);
    font-weight: 800;
}
.fama-mk__region-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 28px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(42, 73, 29, 0.07);
    border: 1px solid rgba(80, 167, 44, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.fama-mk__region-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(80, 167, 44, 0.15);
}
.fama-mk__region-card--highlight {
    background: var(--ogenix-base);
    border-color: var(--ogenix-base);
}
.fama-mk__region-card--highlight .fama-mk__region-icon,
.fama-mk__region-card--highlight .fama-mk__region-title,
.fama-mk__region-card--highlight .fama-mk__country-list li {
    color: #fff;
}
.fama-mk__region-card--highlight .fama-mk__region-icon i {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.fama-mk__region-card--highlight .fama-mk__region-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}
.fama-mk__region-icon {
    margin-bottom: 20px;
}
.fama-mk__region-icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: rgba(80, 167, 44, 0.1);
    border-radius: 14px;
    font-size: 22px;
    color: var(--ogenix-base);
    transition: background 0.3s;
}
.fama-mk__region-card:not(.fama-mk__region-card--highlight):hover
    .fama-mk__region-icon
    i {
    background: rgba(80, 167, 44, 0.18);
}
.fama-mk__region-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ogenix-black);
    margin-bottom: 20px;
}
.fama-mk__country-list {
    margin-bottom: 24px;
}
.fama-mk__country-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ogenix-gray);
    padding: 7px 0;
    border-bottom: 1px solid rgba(125, 137, 120, 0.1);
}
.fama-mk__country-list li:last-child {
    border-bottom: none;
}
.fama-mk__flag {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}
.fama-mk__region-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ogenix-base);
    background: rgba(80, 167, 44, 0.08);
    border: 1px solid rgba(80, 167, 44, 0.2);
    border-radius: 20px;
    padding: 4px 14px;
}

/* ----- Why section ----- */
.fama-mk__why {
    padding: 80px 0 70px;
    background: #fff;
}
.fama-mk__why-header {
    margin-bottom: 48px;
}
.fama-mk__why-header .section-title__tagline {
    color: var(--ogenix-base);
}
.fama-mk__why-header .section-title__title {
    font-size: 36px;
    color: var(--ogenix-black);
    font-weight: 800;
}
.fama-mk__why-card {
    background: var(--ogenix-extra);
    border-radius: 18px;
    padding: 36px 28px;
    height: 100%;
    border: 1px solid rgba(80, 167, 44, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.fama-mk__why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(80, 167, 44, 0.12);
    background: #fff;
}
.fama-mk__why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(80, 167, 44, 0.1);
    border-radius: 16px;
    font-size: 24px;
    color: var(--ogenix-base);
    margin-bottom: 20px;
    transition:
        background 0.3s,
        color 0.3s;
}
.fama-mk__why-card:hover .fama-mk__why-icon {
    background: var(--ogenix-base);
    color: #fff;
}
.fama-mk__why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ogenix-black);
    margin-bottom: 12px;
}
.fama-mk__why-card p {
    font-size: 14px;
    color: var(--ogenix-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ----- Parallax CTA ----- */
.fama-mk__cta-parallax {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}
.fama-mk__cta-parallax-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
}
.fama-mk__cta-parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(42, 73, 29, 0.88) 0%,
        rgba(42, 73, 29, 0.7) 100%
    );
    z-index: -1;
}
.fama-mk__cta-inner .section-title__tagline {
    color: var(--ogenix-primary);
}
.fama-mk__cta-inner h2 {
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin: 16px 0 18px;
}
@media (max-width: 767px) {
    .fama-mk__cta-inner h2 {
        font-size: 28px;
    }
}
.fama-mk__cta-inner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto 36px;
}
.fama-mk__cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.fama-mk__btn-outline {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
}
.fama-mk__btn-outline:hover {
    background: #fff !important;
    color: var(--ogenix-black) !important;
    border-color: #fff !important;
}

/* =====================================================
   Markets Page — Leaflet map overrides & additions
   ===================================================== */

/* Map container */
#fama-world-map {
    width: 100%;
    height: 520px;
    border-radius: 0;
    z-index: 1;
    background: #eef0e8;
}
@media (max-width: 767px) {
    #fama-world-map {
        height: 320px;
    }
}

/* Override Leaflet popup/attribution */
.leaflet-container {
    font-family: var(--ogenix-font, "Manrope", sans-serif);
}
.fama-mk__leaflet-tip {
    background: #2a491d;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.fama-mk__leaflet-tip::before {
    border-top-color: #2a491d !important;
}

/* Floating mouse tooltip */
.fama-mk__map-tooltip {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    background: #2a491d;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease;
}

/* Legend dot fix */
.fama-mk__legend-dot--off {
    background: #d4d4cc;
    border: 2px solid #b8b8b0;
}

/* Click info panel */
#fama-map-info {
    margin-top: 16px;
    min-height: 0;
    transition: all 0.3s ease;
}
#fama-map-info:empty {
    display: none;
}
.fama-mk__info-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-left: 4px solid #50a72c;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    animation: fama-info-in 0.3s ease;
}
@keyframes fama-info-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fama-mk__info-flag {
    font-size: 36px;
    line-height: 1;
    flex-shrink: 0;
}
.fama-mk__info-inner h4 {
    font-size: 17px;
    font-weight: 700;
    color: #2a491d;
    margin: 0 0 6px;
}
.fama-mk__info-inner p {
    font-size: 14px;
    color: #7d8978;
    margin: 0;
    line-height: 1.6;
}
.fama-mk__info-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 20px;
    color: #7d8978;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
.fama-mk__info-close:hover {
    color: #2a491d;
}

/* Egypt pulse marker */
.fama-mk__pulse-pin {
    position: relative;
    width: 30px;
    height: 30px;
}
.fama-mk__pulse-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #ffbd3c;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}
.fama-mk__pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid #ffbd3c;
    border-radius: 50%;
    animation: fama-pulse-ring 1.8s ease-out infinite;
    opacity: 0;
}
@keyframes fama-pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.4);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* =====================================================
   Product Details Page — dynamic product styles
   ===================================================== */

.product-details__img img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.product-details__title {
    font-size: 32px;
    font-weight: 800;
    color: var(--ogenix-black);
    margin-bottom: 0;
}
.product-details__title span {
    display: none;
} /* hide price */

/* Varieties row */
.pd-varieties {
    margin: 14px 0 20px;
    font-size: 14px;
    color: var(--ogenix-gray);
    line-height: 1.6;
}
.pd-varieties strong {
    color: var(--ogenix-black);
}

/* Specs box */
.pd-specs {
    background: var(--ogenix-extra);
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 24px;
}
.pd-specs__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ogenix-black);
    margin-bottom: 14px;
}
.pd-specs__list li {
    font-size: 14px;
    color: var(--ogenix-gray);
    padding: 6px 0;
    border-bottom: 1px solid #e8e8e2;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.pd-specs__list li:last-child {
    border-bottom: none;
}
.pd-specs__list li i {
    color: var(--ogenix-base);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Products page — full card as anchor */
a.product__all-single-inner {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a.product__all-single-inner:hover .product__all-title {
    color: var(--ogenix-base);
}
a.product__all-single-inner:hover .product__all-img img {
    transform: scale(1.06);
}

/* =====================================================
   Contact Page (fama-ct__*)
   ===================================================== */

/* Intro */
.fama-ct__intro {
    padding: 90px 0 60px;
}
.fama-ct__intro-text {
    font-size: 16px;
    color: var(--ogenix-gray);
    line-height: 1.8;
    margin-top: 20px;
}

/* Contact cards */
.fama-ct__cards {
    padding: 0 0 80px;
}
.fama-ct__card {
    display: block;
    background: #fff;
    border-radius: 16px;
    padding: 38px 28px 28px;
    text-align: center;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.fama-ct__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--ogenix-base),
        var(--ogenix-primary)
    );
}
.fama-ct__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(80, 167, 44, 0.18);
    color: inherit;
    text-decoration: none;
}
.fama-ct__card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ogenix-base), #3d8a22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 24px rgba(80, 167, 44, 0.3);
}
.fama-ct__card-icon i {
    font-size: 26px;
    color: #fff;
}
.fama-ct__card-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--ogenix-base);
    background: rgba(80, 167, 44, 0.1);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.fama-ct__card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ogenix-black);
    margin-bottom: 8px;
    word-break: break-word;
}
.fama-ct__card p {
    font-size: 13px;
    color: var(--ogenix-gray);
    line-height: 1.6;
    margin: 0;
}

/* Form + Map section */
.fama-ct__form-section {
    padding: 80px 0;
    background: var(--ogenix-extra);
}
.fama-ct__form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}
.fama-ct__form .contact-page__form-input-box {
    margin-bottom: 16px;
}
.fama-ct__form input,
.fama-ct__form textarea,
.fama-ct__form select {
    width: 100%;
    background: var(--ogenix-extra);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
    color: var(--ogenix-black);
    font-family: inherit;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}
.fama-ct__form input:focus,
.fama-ct__form textarea:focus,
.fama-ct__form select:focus {
    outline: none;
    border-color: var(--ogenix-base);
    background: #fff;
}
.fama-ct__form textarea {
    min-height: 140px;
    resize: vertical;
}
.fama-ct__select-wrap {
    position: relative;
}
.fama-ct__select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.fama-ct__select-wrap::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ogenix-gray);
    font-size: 11px;
    pointer-events: none;
}

/* Map sidebar */
.fama-ct__map-wrap {
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}
.fama-ct__map {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
}
.fama-ct__map-info {
    background: linear-gradient(145deg, var(--ogenix-base), #3d8a22);
    color: #fff;
    padding: 28px 28px;
    flex-grow: 1;
}
.fama-ct__map-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.fama-ct__map-info h4 i {
    color: var(--ogenix-primary);
}
.fama-ct__map-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 16px;
}
.fama-ct__map-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.fama-ct__map-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}
.fama-ct__map-social a:hover {
    background: var(--ogenix-primary);
    color: var(--ogenix-black);
    transform: translateY(-2px);
}

/* FAQ */
.fama-ct__faq {
    padding: 90px 0;
}
.fama-ct__faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 26px 28px;
    margin-bottom: 24px;
    border-left: 4px solid var(--ogenix-base);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.fama-ct__faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
}
.fama-ct__faq-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ogenix-black);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.fama-ct__faq-item h4 i {
    color: var(--ogenix-base);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}
.fama-ct__faq-item p {
    font-size: 14px;
    color: var(--ogenix-gray);
    line-height: 1.7;
    margin: 0;
    padding-left: 28px;
}

/* Contact page — WhatsApp button + form note */
.fama-ct__whatsapp-btn {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    padding: 14px 36px !important;
    transition: all 0.3s ease;
}
.fama-ct__whatsapp-btn:hover {
    background: #128c7e !important;
    border-color: #128c7e !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}
.fama-ct__form-note {
    font-size: 12px;
    color: var(--ogenix-gray);
    margin: 14px 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.fama-ct__form-note i {
    color: var(--ogenix-base);
    font-size: 13px;
}

/* =====================================================
   FAQ Page  (fama-faq__*)
   ===================================================== */

/* Category tabs */
.fama-faq__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 30px 0 50px;
}
.fama-faq__tab {
    background: transparent;
    border: 2px solid #e0e0d8;
    color: var(--ogenix-black);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}
.fama-faq__tab:hover {
    border-color: var(--ogenix-base);
    color: var(--ogenix-base);
}
.fama-faq__tab.is-active {
    background: var(--ogenix-base);
    border-color: var(--ogenix-base);
    color: #fff;
    box-shadow: 0 6px 18px rgba(80, 167, 44, 0.3);
}

/* Highlight links inside answers */
.faq-page .accrodion-content .inner p a {
    color: var(--ogenix-base);
    text-decoration: underline;
    font-weight: 600;
}
.faq-page .accrodion-content .inner p a:hover {
    color: #3d8a22;
}

/* CTA at bottom */
.fama-faq__cta {
    background: linear-gradient(135deg, var(--ogenix-extra), #fff);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 60px;
    border: 2px solid #e8e8e2;
}
.fama-faq__cta-icon {
    width: 70px;
    height: 70px;
    background: var(--ogenix-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(80, 167, 44, 0.3);
}
.fama-faq__cta-icon i {
    font-size: 28px;
    color: #fff;
}
.fama-faq__cta h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--ogenix-black);
    margin-bottom: 10px;
}
.fama-faq__cta p {
    font-size: 15px;
    color: var(--ogenix-gray);
    max-width: 540px;
    margin: 0 auto 26px;
    line-height: 1.7;
}
.fama-faq__cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.fama-faq__wa-btn {
    background: #25d366 !important;
    border-color: #25d366 !important;
}
.fama-faq__wa-btn:hover {
    background: #128c7e !important;
    border-color: #128c7e !important;
}

/* =====================================================
   Gallery Page (fama-gal__*)
   ===================================================== */

.fama-gal__section {
    padding: 80px 0 90px;
}

/* Filter tabs */
.fama-gal__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 30px 0 50px;
}
.fama-gal__tab {
    background: transparent;
    border: 2px solid #e0e0d8;
    color: var(--ogenix-black);
    padding: 9px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}
.fama-gal__tab:hover {
    border-color: var(--ogenix-base);
    color: var(--ogenix-base);
}
.fama-gal__tab.is-active {
    background: var(--ogenix-base);
    border-color: var(--ogenix-base);
    color: #fff;
    box-shadow: 0 6px 18px rgba(80, 167, 44, 0.3);
}

/* Card as full anchor */
a.fama-gal__card {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 30px;
    cursor: pointer;
}
a.fama-gal__card:hover {
    color: inherit;
    text-decoration: none;
}

/* Uniform square images */
.fama-gal__card .gallery-one__img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f7f5ee;
    border-radius: 12px 12px 0 0;
}
.fama-gal__card .gallery-one__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}
.fama-gal__card:hover .gallery-one__img img {
    transform: scale(1.06);
}

/* Hide arrow box (not needed since whole card is link) */
.fama-gal__card .gallery-one__arrow-box {
    pointer-events: none;
}

/* Category sub-title color */
.fama-gal__card .gallery-one__sub-title {
    color: var(--ogenix-base) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 11px;
}

/* Footer gallery — small square thumbnails in 3-column grid */
.footer-widget__gallery .footer-widget__gallery-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 10px 0 0;
    padding: 0;
}
.footer-widget__gallery .footer-widget__gallery-list li {
    display: block;
    padding: 0;
    margin: 0;
    width: auto;
}
.footer-widget__gallery .footer-widget__gallery-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
}
.footer-widget__gallery .footer-widget__gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    transition: transform 0.4s ease;
}
.footer-widget__gallery
    .footer-widget__gallery-list
    li:hover
    .footer-widget__gallery-img
    img {
    transform: scale(1.08);
}

/* =====================================================
   Home Slider — AI-generated basket hero images
   ===================================================== */

/* Constrain the AI-generated transparent PNGs so they sit nicely as hero images */
.main-slider__img-one img[src*="famafresh-basket-"],
.main-slider__img-one img.famafresh-heart-basket {
    width: auto;
    max-width: 580px;
    max-height: 560px;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.18));
}

@media (max-width: 1399px) {
    .main-slider__img-one img[src*="famafresh-basket-"],
    .main-slider__img-one img.famafresh-heart-basket {
        max-width: 500px;
        max-height: 480px;
    }
}
@media (max-width: 1199px) {
    .main-slider__img-one img[src*="famafresh-basket-"],
    .main-slider__img-one img.famafresh-heart-basket {
        max-width: 420px;
        max-height: 400px;
    }
}
@media (max-width: 991px) {
    .main-slider__img-one img[src*="famafresh-basket-"],
    .main-slider__img-one img.famafresh-heart-basket {
        max-width: 340px;
        max-height: 320px;
    }
}
@media (max-width: 767px) {
    .main-slider__img-one img[src*="famafresh-basket-"],
    .main-slider__img-one img.famafresh-heart-basket {
        max-width: 240px;
        max-height: 220px;
    }
}
