/* =====================================================================
   GLORIOUS HOLDINGS — EPIC DESIGN LAYER (gh-epic.css)
   Cinematic 2.5D upgrade. Loaded after glorious.css.

   Techniques applied (epic-design catalogue):
   - Layered depth hero (static bg / atmosphere / leaf / content / particles)
   - Mouse-move depth parallax on atmosphere + leaf (pointer:fine only)
   - Character-stagger hero title reveal (SplitText)
   - 3D tilt cards + magnetic buttons (pointer:fine only)
   - Glassmorphism sticky header + glass counters
   - Scroll progress bar, marquee edge masks, particle drift
   Hero background photo is intentionally static (client request).
   All animations: transform / opacity / filter only.
   ===================================================================== */

/* ------------------------------------------------------------------ */
/* -1. SMOOTH SCROLLING (Lenis + native fallback)                      */
/* ------------------------------------------------------------------ */

/* Native smooth anchors when JS/Lenis is unavailable */
@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

/* Lenis-recommended styles — it adds these classes when active */
html.lenis,
html.lenis body { height: auto; }

.lenis.lenis-smooth { scroll-behavior: auto !important; }

.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

.lenis.lenis-stopped { overflow: hidden; }

/* ------------------------------------------------------------------ */
/* 0. SCROLL PROGRESS BAR                                              */
/* ------------------------------------------------------------------ */
.gh-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    z-index: 10001;
    background: linear-gradient(90deg, var(--gh-green) 0%, var(--gh-green-light) 55%, var(--gh-gold) 100%);
    transform-origin: 0 50%;
    transform: scaleX(0);
    pointer-events: none;
}

/* ------------------------------------------------------------------ */
/* 1. GLASSMORPHISM STICKY HEADER                                      */
/* ------------------------------------------------------------------ */
#header-sticky.sticky {
    background: rgba(255, 255, 255, 0.78) !important;
    -webkit-backdrop-filter: blur(16px) saturate(170%);
    backdrop-filter: blur(16px) saturate(170%);
    box-shadow: 0 8px 32px rgba(15, 74, 39, 0.12);
    border-bottom: 1px solid rgba(27, 107, 58, 0.10);
}

/* ------------------------------------------------------------------ */
/* 2. CINEMATIC HERO — DEPTH SYSTEM                                    */
/* ------------------------------------------------------------------ */
.gh-hero-full {
    isolation: isolate;
}

/* Depth-0 — background photo (intentionally static, no animation) */
.gh-hero-full .gh-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

/* Depth-1 — atmosphere: colour glows + cinematic vignette */
.gh-hero-full .gh-hero-atmosphere {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.gh-hero-full .gh-hero-atmosphere::before,
.gh-hero-full .gh-hero-atmosphere::after {
    content: "";
    position: absolute;
    width: 46vw;
    height: 46vw;
    max-width: 700px;
    max-height: 700px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .5;
}

.gh-hero-full .gh-hero-atmosphere::before {
    left: -12%;
    bottom: -28%;
    background: radial-gradient(circle, rgba(27, 107, 58, 0.55), transparent 65%);
}

.gh-hero-full .gh-hero-atmosphere::after {
    right: -10%;
    top: -30%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.35), transparent 65%);
}

/* Stronger filmic overlay (replaces flat dark overlay) */
.gh-hero-full .gh-hero-overlay {
    background: linear-gradient(100deg,
            rgba(8, 34, 18, 0.88) 0%,
            rgba(8, 34, 18, 0.62) 38%,
            rgba(8, 34, 18, 0.18) 72%,
            rgba(8, 34, 18, 0.45) 100%) !important;
    z-index: 1 !important;
}

/* Depth-2 — parallax leaf */
.gh-hero-full .shape-1 {
    z-index: 2;
    will-change: transform;
}

/* Depth-4 — content: refined type + CTA row (existing markup) */
.gh-hero-full .hero-content h1 {
    text-shadow: 0 6px 40px rgba(0, 0, 0, 0.45);
}

/* SplitText char state (JS sets initial transform) */
.gh-hero-title .gh-char {
    display: inline-block;
    will-change: transform, opacity;
}

/* Depth-5 — drifting particles */
.gh-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 4;
    overflow: hidden;
    pointer-events: none;
}

.gh-hero-particles span {
    position: absolute;
    bottom: -3vh;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 184, 64, 0.9), rgba(224, 184, 64, 0) 70%);
    animation: gh-particle-rise linear infinite;
    opacity: 0;
}

.gh-hero-particles span:nth-child(odd) {
    background: radial-gradient(circle, rgba(120, 200, 150, 0.85), rgba(120, 200, 150, 0) 70%);
}

@keyframes gh-particle-rise {
    0%   { transform: translateY(0) translateX(0) scale(.6); opacity: 0; }
    12%  { opacity: .9; }
    85%  { opacity: .35; }
    100% { transform: translateY(-108vh) translateX(4vw) scale(1.15); opacity: 0; }
}

/* Scroll indicator */
.gh-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
}

.gh-scroll-indicator:hover { color: #fff; }

.gh-scroll-indicator .wheel {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 14px;
    position: relative;
}

.gh-scroll-indicator .wheel::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 7px;
    width: 4px;
    height: 9px;
    margin-left: -2px;
    border-radius: 3px;
    background: var(--gh-gold-light);
    animation: gh-wheel 1.8s ease-in-out infinite;
}

@keyframes gh-wheel {
    0%   { transform: translateY(0); opacity: 1; }
    70%  { transform: translateY(14px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* ------------------------------------------------------------------ */
/* 3. BUTTONS — shine sweep + lift                                     */
/* ------------------------------------------------------------------ */
.theme-btn {
    position: relative;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}

.theme-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    transform: skewX(-22deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left .6s ease;
    pointer-events: none;
}

.theme-btn:hover::before { left: 130%; }

.theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(27, 107, 58, 0.35);
}

/* ------------------------------------------------------------------ */
/* 4. 3D TILT CARDS (JS drives rotation only — no inner translateZ,
      which can blank card content in Chrome inside overflow clips)    */
/* ------------------------------------------------------------------ */
.gh-tilt {
    will-change: transform;
}

/* ------------------------------------------------------------------ */
/* 6. MARQUEES — soft edge masks                                       */
/* ------------------------------------------------------------------ */
.gh-marquee-container,
.marquee-section {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

/* ------------------------------------------------------------------ */
/* 7. COUNTER SECTION — glass cards                                    */
/* ------------------------------------------------------------------ */
.counter-items-style-1 {
    background: rgba(255, 255, 255, 0.07);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    backdrop-filter: blur(10px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    padding: 30px 22px;
    height: 100%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), background .4s ease;
}

.counter-items-style-1:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
}

/* ------------------------------------------------------------------ */
/* 8. WHATSAPP FLOAT — radar pulse                                     */
/* ------------------------------------------------------------------ */
.whatsapp-float::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(37, 211, 102, 0.65);
    animation: gh-radar 2.4s ease-out infinite;
    pointer-events: none;
}

@keyframes gh-radar {
    0%   { transform: scale(1); opacity: .9; }
    100% { transform: scale(1.65); opacity: 0; }
}

/* ------------------------------------------------------------------ */
/* 9. SECTION TITLES — gradient ink on key word                        */
/* ------------------------------------------------------------------ */
.section-title .sub-title {
    position: relative;
    padding-left: 34px;
}

.section-title .sub-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 2px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, var(--gh-gold), var(--gh-green));
}

.section-title.text-center .sub-title {
    padding-left: 34px;
    padding-right: 34px;
}

.section-title.text-center .sub-title::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 24px;
    height: 2px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, var(--gh-green), var(--gh-gold));
}

/* ------------------------------------------------------------------ */
/* 10. RESPONSIVE & ACCESSIBILITY GUARDS                                */
/* ------------------------------------------------------------------ */
@media (max-width: 767px) {
    .gh-scroll-indicator { display: none; }
}

/* Reduced motion: freeze the cinematic layer entirely */
@media (prefers-reduced-motion: reduce) {

    .gh-hero-particles span,
    .gh-scroll-indicator .wheel::after,
    .whatsapp-float::after {
        animation: none !important;
    }

    .gh-progress-bar { display: none; }
}


/* =====================================================================
   PRODUCTS PAGE REDESIGN (v4)
   Premium catalogue: trust stats, segmented tabs, category headers,
   glass product cards, quality assurance band.
   ===================================================================== */

/* ---- Trust stats row ---- */
.gh-product-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 880px;
    margin: 36px auto 8px;
}

.gh-pstat {
    text-align: center;
    padding: 22px 14px;
    border-radius: 18px;
    background: linear-gradient(160deg, #ffffff, var(--gh-bg-light));
    border: 1px solid var(--gh-border);
    box-shadow: 0 6px 22px rgba(15, 74, 39, 0.06);
}

.gh-pstat-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--gh-green), var(--gh-green-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gh-pstat-label {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gh-text-light);
    letter-spacing: .3px;
}

/* ---- Segmented filter tabs ---- */
.gh-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.gh-filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--gh-border);
    background: #fff;
    color: var(--gh-text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .3s cubic-bezier(.22,1,.36,1), background .3s ease, border-color .3s ease, box-shadow .3s ease, color .3s ease;
}

.gh-filter-tab i { font-size: 15px; color: var(--gh-green); transition: color .3s ease; }

.gh-filter-tab .gh-tab-count {
    font-style: normal;
    font-size: 11px;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    background: var(--gh-bg-light);
    color: var(--gh-text-light);
    transition: background .3s ease, color .3s ease;
}

.gh-filter-tab:hover {
    transform: translateY(-2px);
    border-color: var(--gh-green);
    box-shadow: 0 8px 22px rgba(27, 107, 58, 0.16);
}

.gh-filter-tab.active {
    background: linear-gradient(135deg, var(--gh-green), var(--gh-green-light));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 26px rgba(27, 107, 58, 0.30);
}

.gh-filter-tab.active i { color: #fff; }
.gh-filter-tab.active .gh-tab-count { background: rgba(255,255,255,0.25); color: #fff; }

/* ---- Category header ---- */
.gh-cat-header {
    display: flex;
    gap: 26px;
    align-items: flex-start;
    margin-bottom: 38px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gh-border);
}

.gh-cat-icon {
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    font-size: 30px;
    color: #fff;
    background: linear-gradient(140deg, var(--gh-green-dark), var(--gh-green-light));
    box-shadow: 0 12px 30px rgba(27, 107, 58, 0.28);
}

.gh-cat-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--gh-gold);
    margin-bottom: 6px;
}

.gh-cat-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 3.4vw, 34px);
    font-weight: 800;
    color: var(--gh-text);
    margin-bottom: 10px;
}

/* =====================================================================
   PRODUCTS PAGE — FULL-WIDTH HORIZONTAL ROWS (v6)
   One card per row, alternating image left/right. Premium watermark
   numbers, highlight lists, category accent colours.
   ===================================================================== */

/* ---- Row container ---- */
.gh-product-row {
    position: relative;
    background: #fff;
    border: 1px solid var(--gh-border);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(15, 74, 39, 0.06);
    transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s ease, border-color .5s ease;
}

.gh-product-row:last-child {
    margin-bottom: 0;
}

.gh-product-row:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(15, 74, 39, 0.16);
    border-color: rgba(27, 107, 58, 0.22);
}

/* ---- Watermark number ---- */
.gh-product-row-num {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(120px, 14vw, 200px);
    font-weight: 900;
    line-height: 0.8;
    color: rgba(27, 107, 58, 0.04);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    top: 20px;
    transition: color .5s ease;
}

.gh-product-row:hover .gh-product-row-num {
    color: rgba(27, 107, 58, 0.07);
}

.gh-product-row-num--right {
    right: 30px;
}

.gh-product-row-num--left {
    left: 30px;
}

/* ---- Image column ---- */
.gh-product-row-media {
    position: relative;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
}

.gh-product-row-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}

.gh-product-row:hover .gh-product-row-media img {
    transform: scale(1.08);
}

.gh-product-row-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(8, 34, 18, 0.10) 0%,
        rgba(8, 34, 18, 0.40) 100%
    );
    opacity: 0;
    transition: opacity .5s ease;
    z-index: 1;
}

.gh-product-row:hover .gh-product-row-media-overlay {
    opacity: 1;
}

/* Category icon floating badge */
.gh-product-row-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--accent, var(--gh-green));
    color: #fff;
    font-size: 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}

.gh-product-row:hover .gh-product-row-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.30);
}

/* Accent strip at image edge */
.gh-product-row-media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent, var(--gh-green));
    z-index: 2;
}

.gh-product-row--reverse .gh-product-row-media::before {
    left: auto;
    right: 0;
}

/* ---- Content column ---- */
.gh-product-row-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 52px;
    position: relative;
    z-index: 1;
    height: 100%;
}

.gh-product-row-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent, var(--gh-gold));
    margin-bottom: 12px;
    position: relative;
    padding-left: 32px;
}

.gh-product-row-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 2px;
    transform: translateY(-50%);
    background: var(--accent, var(--gh-green));
}

.gh-product-row-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--gh-text, #2c3e2d);
    margin-bottom: 16px;
    line-height: 1.2;
}

.gh-product-row-lead {
    font-size: 15.5px;
    color: var(--gh-text-light, #5a6b5c);
    line-height: 1.75;
    margin-bottom: 10px;
}

.gh-product-row-detail {
    font-size: 14.5px;
    color: var(--gh-text-light, #5a6b5c);
    line-height: 1.7;
    margin-bottom: 22px;
    opacity: 0.85;
}

/* ---- Highlights list (replaces old tags) ---- */
.gh-product-row-highlights {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.gh-product-row-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gh-text, #2c3e2d);
    line-height: 1.4;
}

.gh-product-row-highlights li i {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 14px;
    color: var(--gh-green, #1B6B3A);
}

/* ---- CTA button ---- */
.gh-product-row-cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--accent, var(--gh-green));
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    border: 2px solid var(--accent, var(--gh-green));
    transition: background .35s ease, color .35s ease, gap .35s ease, box-shadow .35s ease, transform .35s ease;
}

.gh-product-row-cta .gh-cta-arrow {
    transition: transform .35s ease;
}

.gh-product-row-cta:hover {
    background: var(--accent, var(--gh-green));
    color: #fff;
    gap: 14px;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(27, 107, 58, 0.28);
}

.gh-product-row-cta:hover .gh-cta-arrow {
    transform: translateX(4px);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .gh-product-row-media {
        min-height: 300px;
        border-radius: 24px 24px 0 0;
    }

    .gh-product-row-body {
        padding: 36px 28px;
    }

    .gh-product-row-num {
        font-size: 100px;
        top: 10px;
    }

    .gh-product-row-num--right,
    .gh-product-row-num--left {
        right: 20px;
        left: auto;
    }

    .gh-product-row-highlights {
        grid-template-columns: 1fr;
    }

    /* Stack: image always on top on mobile */
    .gh-product-row--reverse .gh-product-row-media::before {
        left: 0;
        right: auto;
        width: 100%;
        height: 5px;
        top: 0;
    }

    .gh-product-row-media::before {
        width: 100%;
        height: 5px;
        top: 0;
        left: 0;
    }

    /* Icon adjusts */
    .gh-product-row-icon {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .gh-product-row-media {
        min-height: 240px;
    }

    .gh-product-row-body {
        padding: 28px 22px;
    }

    .gh-product-row-num {
        font-size: 80px;
    }

    .gh-product-row-title {
        font-size: 24px;
    }

    .gh-product-row-cta {
        width: 100%;
        justify-content: center;
    }
}

.gh-cat-lead {
    font-size: 15.5px;
    color: var(--gh-text-light);
    line-height: 1.75;
    max-width: 760px;
    margin-bottom: 16px;
}

.gh-cat-chips { display: flex; flex-wrap: wrap; gap: 10px; }

.gh-cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gh-green-dark);
    background: rgba(27, 107, 58, 0.08);
    border: 1px solid rgba(27, 107, 58, 0.16);
    padding: 6px 14px;
    border-radius: 30px;
}

.gh-cat-chip i { font-size: 10px; color: var(--gh-green); }

/* ---- Premium product card ---- */
.gh-product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--gh-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(15, 74, 39, 0.06);
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .4s ease;
}

.gh-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(15, 74, 39, 0.18);
    border-color: rgba(27, 107, 58, 0.30);
}

.gh-product-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gh-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.22,1,.36,1);
}

.gh-product-card:hover .gh-product-media img { transform: scale(1.08); }

.gh-product-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 34, 18, 0.45), transparent 45%);
    opacity: 0;
    transition: opacity .4s ease;
}

.gh-product-card:hover .gh-product-media::after { opacity: 1; }

.gh-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 6px 12px;
    border-radius: 30px;
    color: #fff;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

.gh-product-badge i { font-size: 11px; }

/* category badge colours */
.gh-product-badge.greenhouse { background: rgba(27, 107, 58, 0.92); }
.gh-product-badge.coconut    { background: rgba(139, 90, 43, 0.92); }
.gh-product-badge.tea        { background: rgba(123, 31, 162, 0.90); }
.gh-product-badge.spices     { background: rgba(198, 40, 40, 0.92); }
.gh-product-badge.coffee     { background: rgba(78, 52, 46, 0.94); }
.gh-product-badge.fresh      { background: rgba(2, 119, 189, 0.92); }

.gh-product-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 22px 22px 24px;
}

.gh-product-body h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--gh-text);
    margin-bottom: 9px;
    line-height: 1.3;
}

.gh-product-body p {
    font-size: 14px;
    color: var(--gh-text-light);
    line-height: 1.65;
    margin-bottom: 18px;
}

.gh-product-cta {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gh-green);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: gap .3s ease, border-color .3s ease, color .3s ease;
}

.gh-product-cta i { transition: transform .3s ease; }

.gh-product-cta:hover {
    color: var(--gh-green-dark);
    border-color: var(--gh-green);
    gap: 12px;
}

.gh-product-cta:hover i { transform: translateX(3px); }

/* ---- Quality / assurance band ---- */
.gh-quality-band {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: 52px clamp(24px, 5vw, 60px);
    background: linear-gradient(140deg, var(--gh-green-dark) 0%, var(--gh-green) 100%);
    box-shadow: 0 24px 60px rgba(15, 74, 39, 0.30);
}

.gh-quality-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../img/home-1/service/bg.webp') center/cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.gh-quality-head { position: relative; text-align: center; margin-bottom: 40px; }
.gh-quality-head .sub-title { color: var(--gh-gold-light); }
.gh-quality-head .hero_title { color: #fff; font-size: clamp(26px, 4vw, 38px); font-weight: 800; }

.gh-quality-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.gh-quality-item { text-align: center; }

.gh-quality-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-size: 25px;
    color: var(--gh-gold-light);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.gh-quality-item h4 { color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.gh-quality-item p { color: rgba(255, 255, 255, 0.82); font-size: 14px; line-height: 1.7; margin: 0; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .gh-product-stats { grid-template-columns: repeat(2, 1fr); }
    .gh-quality-grid  { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .gh-cat-header { gap: 18px; }
    .gh-cat-icon { flex-basis: 60px; width: 60px; height: 60px; font-size: 24px; }
}

@media (max-width: 575px) {
    .gh-product-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gh-quality-grid  { grid-template-columns: 1fr; }
    .gh-cat-header { flex-direction: column; gap: 16px; }
    .gh-filter-tab { padding: 9px 15px; font-size: 13px; }
}


/* =====================================================================
   PRODUCTS PAGE — CATEGORY CARDS (v5)
   Six icon-free category cards (image-top grid). Distinct from the
   solutions page (which uses alternating horizontal carousels).
   ===================================================================== */

.gh-cat-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--gh-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(15, 74, 39, 0.06);
    transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease, border-color .45s ease;
}

.gh-cat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 54px rgba(15, 74, 39, 0.20);
    border-color: rgba(27, 107, 58, 0.30);
}

/* --- media --- */
.gh-cat-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.gh-cat-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(.22,1,.36,1);
}

.gh-cat-card:hover .gh-cat-card-media img { transform: scale(1.09); }

.gh-cat-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 34, 18, 0.55) 0%, rgba(8, 34, 18, 0.10) 40%, transparent 70%);
}

/* big number index instead of an icon */
.gh-cat-card-num {
    position: absolute;
    top: 14px;
    left: 18px;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.gh-cat-card-num::after {
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    margin-top: 4px;
    border-radius: 3px;
    background: var(--gh-gold);
}

/* --- body --- */
.gh-cat-card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 24px 24px 26px;
}

.gh-cat-card-eyebrow {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gh-gold);
    margin-bottom: 8px;
}

.gh-cat-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--gh-text);
    margin-bottom: 12px;
    line-height: 1.25;
}

.gh-cat-card-lead {
    font-size: 14.5px;
    color: var(--gh-text-light);
    line-height: 1.7;
    margin-bottom: 18px;
}

/* product tags (replaces the old per-product cards — detail kept here) */
.gh-cat-tags {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gh-cat-tags li {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gh-green-dark);
    background: var(--gh-bg-light);
    border: 1px solid var(--gh-border);
    padding: 5px 12px;
    border-radius: 30px;
    transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.gh-cat-card:hover .gh-cat-tags li {
    background: rgba(27, 107, 58, 0.08);
    border-color: rgba(27, 107, 58, 0.18);
}

/* CTA */
.gh-cat-card-cta {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gh-green);
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 30px;
    border: 1.5px solid var(--gh-green);
    transition: background .3s ease, color .3s ease, gap .3s ease, box-shadow .3s ease;
}

.gh-cat-card-cta .gh-cta-arrow { transition: transform .3s ease; }

.gh-cat-card-cta:hover {
    background: var(--gh-green);
    color: #fff;
    gap: 13px;
    box-shadow: 0 10px 24px rgba(27, 107, 58, 0.28);
}

.gh-cat-card-cta:hover .gh-cta-arrow { transform: translateX(3px); }

/* coloured top accent strip per category (subtle, icon-free identity) */
.gh-cat-card-media::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    z-index: 2;
}
.gh-cat-card--greenhouse .gh-cat-card-media::before { background: #1b6b3a; }
.gh-cat-card--coconut    .gh-cat-card-media::before { background: #8b5a2b; }
.gh-cat-card--tea        .gh-cat-card-media::before { background: #7b1fa2; }
.gh-cat-card--spices     .gh-cat-card-media::before { background: #c62828; }
.gh-cat-card--coffee     .gh-cat-card-media::before { background: #4e342e; }
.gh-cat-card--fresh      .gh-cat-card-media::before { background: #0277bd; }

/* --- quality band: icon-free numbers --- */
.gh-quality-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: var(--gh-gold-light);
    margin-bottom: 10px;
}

/* =========================================================================
   UNIFIED CONTACT PANEL (Split-Screen)
   ========================================================================= */

.gh-contact-wrapper {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Left Panel: Info (Dark) */
.gh-contact-info-panel {
    background: linear-gradient(145deg, var(--gh-green-dark) 0%, var(--gh-green) 100%);
    color: #ffffff;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern/overlay for the dark panel */
.gh-contact-info-panel::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
}
.gh-contact-info-panel::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, rgba(212,175,55,0) 70%); /* Gold hint */
    border-radius: 50%;
    z-index: 1;
}

.gh-info-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gh-info-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.gh-info-lead {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Info List Items */
.gh-info-item-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.gh-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.gh-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gh-gold);
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition);
}

.gh-info-item:hover .gh-info-icon {
    background: var(--gh-gold);
    color: #fff;
    transform: translateY(-3px);
}

.gh-info-text span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    font-weight: 600;
}

.gh-info-text p, .gh-info-text a {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    transition: var(--transition);
}

.gh-info-text a:hover {
    color: var(--gh-gold);
}

/* Divider */
.gh-info-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0 0 30px 0;
    opacity: 1;
}

/* Office Hours */
.gh-info-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.gh-info-hours {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.gh-info-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}
.gh-info-hours li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.gh-info-hours li span {
    font-weight: 600;
    color: #ffffff;
}

/* WhatsApp Box */
.gh-info-whatsapp-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-top: auto; /* Pushes to bottom if space allows */
}

.gh-info-whatsapp-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.5;
}

.gh-info-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    width: 100%;
}

.gh-info-whatsapp-btn:hover {
    background: #1ebe5c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Right Panel: Form (Light) */
.gh-contact-form-panel {
    background: #ffffff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
}

.gh-form-content .section-title {
    text-align: left;
}

.gh-form-content .sub-title {
    justify-content: flex-start;
}

.gh-form-content .sub-title::before {
    display: none;
}

@media (min-width: 992px) {
    .gh-contact-wrapper {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .gh-contact-info-panel,
    .gh-contact-form-panel {
        padding: 40px 25px;
    }
}
