/**
 * Greener Grocer — Home page polish layer
 * Applies on top of style.css + style-pro.css when body.page-home is set.
 * Goal: calmer palette, generous whitespace, modern type, Coles-style clarity.
 *
 * Brand palette (deep emerald — fresh, premium, trustworthy):
 *   --gg-green:           #0E7C3F  primary brand
 *   --gg-green-dark:      #0A5C2D  hover / pressed / links
 *   --gg-green-deepest:   #063A1C  strongest text on light bg
 *   --gg-green-mid:       #1FA058  accents / "new" badge
 *   --gg-green-tint:      #E9F5ED  soft surface
 *   --gg-green-tint-bd:   #C9E5D2  hairline borders on tint
 */

body.page-home {
    --gg-green: #0E7C3F;
    --gg-green-dark: #0A5C2D;
    --gg-green-deepest: #063A1C;
    --gg-green-mid: #1FA058;
    --gg-green-tint: #E9F5ED;
    --gg-green-tint-bd: #C9E5D2;
    --gg-ink: #122119;
    --gg-ink-soft: #4a5b4f;
    --gg-ink-muted: #6b7a70;

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--gg-ink);
    background: #ffffff;
    font-feature-settings: 'cv11', 'ss01', 'ss03';
    letter-spacing: -0.005em;
}

body.page-home .home-main {
    background: #ffffff;
}

body.page-home .container {
    max-width: 1320px;
}

/* ==========================================
   HERO — light, editorial, two-column
   ========================================== */
body.page-home .hero-section-pro {
    margin-bottom: 0;
    min-height: 0;
    overflow: visible;
}

body.page-home .hero-slider {
    min-height: 0;
}

body.page-home .hero-slide {
    min-height: 0;
    padding: 0;
}

body.page-home .hero-background,
body.page-home .hero-background::before {
    background: none;
}

body.page-home .hero-section-pro {
    background:
        radial-gradient(circle at 85% 75%, rgba(31, 160, 88, 0.10), transparent 55%),
        radial-gradient(circle at 10% 20%, rgba(14, 124, 63, 0.06), transparent 50%),
        linear-gradient(180deg, #f1faf3 0%, #e6f3ea 100%);
    border-bottom: 1px solid rgba(14, 124, 63, 0.08);
}

body.page-home .hero-content-wrapper {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 40px;
    min-height: 0;
    padding: clamp(40px, 6vw, 80px) 0 clamp(96px, 9vw, 140px);
}

body.page-home .hero-text-content {
    color: #1d2a1f;
    max-width: 560px;
    padding: 0;
}

body.page-home .hero-tag {
    background: #ffffff;
    border: 1px solid rgba(14, 124, 63, 0.18);
    color: var(--gg-green-dark);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 20px;
    backdrop-filter: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

body.page-home .hero-title {
    font-size: clamp(2.25rem, 4.6vw, 3.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
    text-shadow: none;
    color: var(--gg-green-deepest);
}

body.page-home .hero-description {
    font-size: 1.0625rem;
    line-height: 1.55;
    color: #4a5b4f;
    opacity: 1;
    margin-bottom: 28px;
    max-width: 460px;
}

body.page-home .hero-trust-row {
    display: none;
}

body.page-home .hero-price-tag {
    margin-bottom: 28px;
    align-items: baseline;
    gap: 14px;
}

body.page-home .hero-price-current {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--gg-green-deepest);
    letter-spacing: -0.02em;
}

body.page-home .hero-price-original {
    font-size: 1.125rem;
    color: #8a978d;
    opacity: 1;
}

body.page-home .hero-discount-badge {
    background: #d92d20;
    color: white;
    padding: 6px 12px;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: none;
    letter-spacing: 0.01em;
}

body.page-home .hero-actions {
    gap: 12px;
}

body.page-home .hero-btn-primary,
body.page-home .hero-btn-secondary {
    padding: 14px 26px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: none;
    transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

body.page-home .hero-btn-primary {
    background: var(--gg-green);
    color: #ffffff;
    border: 1px solid var(--gg-green);
    box-shadow: 0 8px 18px rgba(14, 124, 63, 0.22);
}

body.page-home .hero-btn-primary:hover {
    background: var(--gg-green-dark);
    border-color: var(--gg-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(14, 124, 63, 0.3);
}

body.page-home .hero-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--gg-green-deepest);
    border: 1px solid rgba(20, 32, 26, 0.12);
    backdrop-filter: none;
}

body.page-home .hero-btn-secondary:hover {
    background: #ffffff;
    border-color: rgba(20, 32, 26, 0.25);
    transform: none;
}

/* Hero bullets — checklist under the description */
body.page-home .hero-bullets {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.page-home .hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #2d3a31;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.45;
}

body.page-home .hero-bullets i {
    color: var(--gg-green);
    font-size: 1.05rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Visual area on the right of hero — image is the focus, no card framing */
body.page-home .hero-visual {
    position: relative;
    width: 100%;
    min-height: clamp(380px, 46vw, 600px);
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.page-home .hero-visual img {
    width: 100%;
    height: auto;
    max-height: clamp(380px, 50vw, 640px);
    object-fit: contain;
    filter: drop-shadow(0 28px 42px rgba(14, 39, 26, 0.18));
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

body.page-home .hero-slide.active .hero-visual img {
    transform: scale(1.02);
}

/* Floating circular sticker badge — section-level, bottom-left corner.
   Sits below the text/photo area in the green pastel band, clear of both. */
body.page-home .hero-floating-badge {
    position: absolute;
    bottom: clamp(20px, 3vw, 44px);
    left: clamp(20px, 5vw, 64px);
    width: clamp(120px, 13vw, 168px);
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow:
        0 0 0 5px var(--gg-green),
        0 0 0 9px rgba(255, 255, 255, 0.95),
        0 0 0 12px var(--gg-green-dark),
        0 16px 30px rgba(6, 58, 28, 0.25);
    transform: rotate(-8deg);
    z-index: 5;
    color: var(--gg-green-deepest);
    padding: 14px 12px;
    pointer-events: none; /* don't block clicks on hero buttons next to it */
}

body.page-home .hero-floating-badge::before {
    content: '';
    position: absolute;
    top: -5px;
    right: 14%;
    width: 12px;
    height: 12px;
    background: var(--gg-green);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

body.page-home .hero-badge-top {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.78rem, 1.05vw, 1rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--gg-green-deepest);
    text-transform: uppercase;
}

body.page-home .hero-badge-bottom {
    margin-top: 8px;
    background: var(--gg-green);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: clamp(0.55rem, 0.7vw, 0.6875rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(14, 124, 63, 0.3);
}

@keyframes ggBadgeWobble {
    0%, 100% { transform: rotate(-8deg) scale(1); }
    50%      { transform: rotate(-6deg) scale(1.03); }
}

body.page-home .hero-floating-badge {
    animation: ggBadgeWobble 4.5s ease-in-out infinite;
}

/* Hero controls — make subtle */
body.page-home .hero-controls {
    bottom: 22px;
    left: auto;
    right: 32px;
    transform: none;
    background: rgba(255, 255, 255, 0.92);
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    gap: 10px;
}

body.page-home .hero-prev,
body.page-home .hero-next {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--gg-green-deepest);
    backdrop-filter: none;
}

body.page-home .hero-prev:hover,
body.page-home .hero-next:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: none;
}

body.page-home .hero-dot {
    width: 7px;
    height: 7px;
    background: rgba(20, 32, 26, 0.25);
}

body.page-home .hero-dot.active,
body.page-home .hero-dot:hover {
    background: var(--gg-green-deepest);
    transform: scale(1.3);
}

/* ==========================================
   CATEGORY STRIP — Coles-style pill bar
   ========================================== */
.category-strip {
    background: #f6faf7;
    border-bottom: 1px solid rgba(14, 124, 63, 0.08);
    padding: 22px 0;
}

.category-strip-inner {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 4px;
    -webkit-overflow-scrolling: touch;
}

.category-strip-inner::-webkit-scrollbar {
    display: none;
}

.category-pill {
    flex: 0 0 auto;
    text-decoration: none;
    color: var(--gg-green-deepest);
    text-align: center;
    width: 92px;
    transition: transform 0.18s ease;
}

.category-pill:hover {
    transform: translateY(-2px);
}

.category-pill-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gg-green-deepest);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.category-pill-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-pill:hover .category-pill-icon {
    border-color: rgba(14, 124, 63, 0.4);
    box-shadow: 0 10px 22px rgba(14, 124, 63, 0.18);
}

.category-pill-name {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.25;
    color: #1f2a24;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2em;
}

/* ==========================================
   HIDE noisy legacy sections on home page
   ========================================== */
body.page-home .premium-proof-bar,
body.page-home .features-banner {
    display: none;
}

/* ==========================================
   SECTION HEADERS — calmer, no border
   ========================================== */
body.page-home .section-header-pro {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 24px;
    align-items: flex-end;
    gap: 24px;
}

body.page-home .section-title-pro {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.022em;
    color: var(--gg-green-deepest);
    margin-bottom: 6px;
}

body.page-home .section-subtitle-pro {
    font-size: 0.9375rem;
    color: #6b7a70;
    font-weight: 400;
}

body.page-home .view-all-link-pro {
    border: none;
    padding: 8px 0;
    color: var(--gg-green-dark);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 0;
}

body.page-home .view-all-link-pro:hover {
    background: transparent;
    color: var(--gg-green-deepest);
    transform: none;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ==========================================
   SECTION SHELLS — clean white, generous breathing room
   ========================================== */
body.page-home .categories-section-pro,
body.page-home .products-section-pro,
body.page-home .flash-sale-section,
body.page-home .promo-banner-section {
    background: #ffffff;
    padding: clamp(48px, 6vw, 80px) 0;
}

body.page-home .featured-section,
body.page-home .trending-section,
body.page-home .value-section,
body.page-home .new-arrivals-section {
    background: #ffffff;
}

body.page-home .trending-section {
    background: #fafaf7;
}

body.page-home .new-arrivals-section {
    background: #fafaf7;
}

body.page-home .value-section {
    background: #ffffff;
}

body.page-home .flash-sale-section {
    background: linear-gradient(180deg, #fff7f5 0%, #ffffff 100%);
}

/* ==========================================
   PRODUCT CARDS — cleaner, lighter shadows
   ========================================== */
body.page-home .products-grid-pro {
    grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
    gap: 20px;
}

body.page-home .product-card-pro {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.page-home .product-card-pro:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.18);
    border-color: rgba(0, 0, 0, 0.1);
}

body.page-home .product-image-wrapper {
    background: #ffffff;
    padding: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

body.page-home .product-badge-pro {
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 6px;
    box-shadow: none;
    top: 14px;
    left: 14px;
    text-transform: uppercase;
}

body.page-home .badge-flash {
    background: #d92d20;
    animation: none;
}

body.page-home .badge-featured {
    background: var(--gg-green-deepest);
}

body.page-home .badge-new {
    background: var(--gg-green-mid);
}

body.page-home .badge-discount {
    background: #d92d20;
}

body.page-home .badge-mega-deal {
    background: #b54708;
    color: white;
    font-size: 0.6875rem;
    padding: 4px 10px;
}

body.page-home .uber-badge-pro {
    background: rgba(20, 32, 26, 0.92);
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: none;
    top: 14px;
    right: 14px;
}

body.page-home .quick-view-btn,
body.page-home .quick-add-btn {
    width: 42px;
    height: 42px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    color: var(--gg-green-deepest);
}

body.page-home .quick-view-btn:hover,
body.page-home .quick-add-btn:hover {
    background: var(--gg-green);
    color: white;
    transform: scale(1.08);
}

body.page-home .product-info-pro {
    padding: 16px 18px 18px;
}

body.page-home .product-category-pro {
    color: #6b7a70;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

body.page-home .product-title-pro {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--gg-green-deepest);
    min-height: 2.6em;
    margin-bottom: 8px;
}

body.page-home .product-rating-pro {
    margin-bottom: 8px;
}

body.page-home .stars-pro {
    color: #f59e0b;
    font-size: 0.8125rem;
}

body.page-home .rating-count-pro {
    color: #6b7a70;
    font-size: 0.75rem;
}

body.page-home .product-pricing-pro {
    margin-bottom: 14px;
}

body.page-home .current-price-pro {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--gg-green-deepest);
    letter-spacing: -0.02em;
}

body.page-home .original-price-pro {
    font-size: 0.875rem;
    color: #8a978d;
}

body.page-home .savings-amount {
    font-size: 0.75rem;
    color: #b54708;
    font-weight: 600;
    margin-top: 2px;
}

body.page-home .add-to-cart-btn-pro {
    background: var(--gg-green);
    border: 1px solid var(--gg-green);
    color: #ffffff;
    padding: 11px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(14, 124, 63, 0.18);
}

body.page-home .add-to-cart-btn-pro:hover {
    background: var(--gg-green-dark);
    border-color: var(--gg-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(14, 124, 63, 0.28);
}

body.page-home .uber-btn-pro {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--gg-green-deepest);
    font-size: 1rem;
}

body.page-home .uber-btn-pro:hover {
    background: var(--gg-green);
    color: #ffffff;
    border-color: var(--gg-green);
    transform: none;
}

body.page-home .stock-alert {
    background: linear-gradient(to top, rgba(217, 45, 32, 0.9), transparent);
    font-size: 0.6875rem;
}

/* ==========================================
   CATEGORIES SECTION GRID — compact, scannable
   Goal: clear "department" cards, not big product tiles.
   ========================================== */
body.page-home .categories-section-pro {
    background: #fafaf7;
    padding: clamp(40px, 5vw, 64px) 0;
}

body.page-home .categories-grid-pro {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}

body.page-home .category-card-pro {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    box-shadow: none;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
}

body.page-home .category-card-pro::after {
    content: '\f061'; /* fa-arrow-right */
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', sans-serif;
    font-weight: 900;
    position: absolute;
    bottom: 14px;
    right: 14px;
    color: var(--gg-green);
    font-size: 0.75rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

body.page-home .category-card-pro:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -16px rgba(14, 124, 63, 0.22);
    border-color: rgba(14, 124, 63, 0.28);
}

body.page-home .category-card-pro:hover::after {
    opacity: 1;
    transform: translateX(0);
}

body.page-home .category-image-container {
    height: 132px;
    background: linear-gradient(180deg, #f8faf7 0%, #f1f5f0 100%);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

body.page-home .category-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
    mix-blend-mode: multiply; /* drop white product backgrounds into the tray */
}

body.page-home .category-card-pro:hover .category-img {
    transform: scale(1.06);
}

body.page-home .category-overlay {
    display: none; /* tray background does the job, no dark gradient needed */
}

body.page-home .category-icon-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    background: transparent !important;
}

body.page-home .category-info-pro {
    padding: 12px 14px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex: 0 0 auto;
}

body.page-home .category-name-pro {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gg-green-deepest);
    line-height: 1.25;
    margin: 0;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.page-home .category-count-pro {
    background: var(--gg-green-tint);
    color: var(--gg-green-dark);
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    flex-shrink: 0;
    margin: 0;
    letter-spacing: 0.01em;
    font-variant-numeric: tabular-nums;
}

/* Hide the original arrow div — the ::after pseudo handles it cleanly */
body.page-home .category-arrow {
    display: none;
}

/* ==========================================
   FLASH SALE TIMER — quieter
   ========================================== */
body.page-home .flash-header {
    border-color: transparent;
}

body.page-home .sale-timer {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    box-shadow: none;
    padding: 12px 16px;
}

body.page-home .timer-value {
    color: #d92d20;
    font-size: 1.5rem;
}

body.page-home .timer-sep {
    color: #d92d20;
    font-size: 1.5rem;
}

body.page-home .flash-icon {
    animation: none;
}

/* ==========================================
   PROMO BANNER — editorial split layout
   ========================================== */
body.page-home .promo-banner-section {
    background: #ffffff;
    padding-bottom: clamp(64px, 7vw, 96px);
}

body.page-home .promo-banner {
    background: linear-gradient(135deg, #063A1C 0%, #0E7C3F 100%);
    border-radius: 28px;
    padding: clamp(36px, 5vw, 64px);
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(28px, 4vw, 56px);
    box-shadow: 0 30px 70px -30px rgba(14, 39, 26, 0.5);
}

body.page-home .promo-banner::before {
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    width: 520px;
    height: 520px;
    top: -45%;
    right: -10%;
}

body.page-home .premium-eyebrow-light {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    font-size: 0.6875rem;
    margin-bottom: 18px;
}

body.page-home .promo-title {
    font-size: clamp(1.5rem, 2.8vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 14px;
}

body.page-home .promo-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 22px;
    opacity: 0.85;
}

body.page-home .promo-feature-list span {
    font-size: 0.875rem;
    opacity: 0.9;
}

body.page-home .app-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 12px 18px;
}

body.page-home .app-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: none;
}

body.page-home .promo-image-premium {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    align-content: center;
}

body.page-home .promo-stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
    padding: 18px 20px;
    border-radius: 16px;
}

body.page-home .promo-stat-card strong {
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

body.page-home .promo-stat-card:nth-child(3) {
    grid-column: span 2;
}

/* ==========================================
   PRODUCT SLIDER ARROWS — quieter
   ========================================== */
body.page-home .slider-arrow {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--gg-green-deepest);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

body.page-home .slider-arrow:hover {
    background: var(--gg-green);
    color: #ffffff;
    border-color: var(--gg-green);
    transform: translateY(-50%) scale(1.05);
}

body.page-home .slider-prev {
    left: -22px;
}

body.page-home .slider-next {
    right: -22px;
}

/* ==========================================
   TRUST STRIP — small, refined under hero
   ========================================== */
.home-trust-strip {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.home-trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 18px 0;
}

.home-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1f2a24;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.3;
}

.home-trust-item i {
    color: var(--gg-green);
    font-size: 1.125rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.home-trust-item strong {
    display: block;
    font-weight: 700;
    color: var(--gg-green-deepest);
}

.home-trust-item span {
    display: block;
    color: #6b7a70;
    font-size: 0.8125rem;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    body.page-home .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    body.page-home .hero-visual {
        max-width: 640px;
        width: 100%;
        margin: 0 auto;
        min-height: clamp(300px, 60vw, 480px);
    }

    body.page-home .hero-visual img {
        max-height: clamp(300px, 60vw, 480px);
    }

    body.page-home .hero-floating-badge {
        bottom: clamp(16px, 3vw, 32px);
        left: clamp(16px, 4vw, 36px);
        width: clamp(108px, 18vw, 150px);
    }

    body.page-home .promo-banner {
        grid-template-columns: 1fr;
    }

    body.page-home .promo-image {
        display: grid;
    }

    .home-trust-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body.page-home .hero-content-wrapper {
        padding: 32px 0 48px;
    }

    body.page-home .hero-text-content {
        text-align: left;
    }

    body.page-home .hero-actions {
        flex-direction: column;
    }

    body.page-home .hero-btn-primary,
    body.page-home .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    body.page-home .hero-controls {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 18px auto 0;
        width: fit-content;
    }

    body.page-home .hero-bullets li {
        font-size: 0.875rem;
    }

    body.page-home .hero-floating-badge {
        width: clamp(96px, 24vw, 130px);
        bottom: 12px;
        left: 12px;
    }

    body.page-home .hero-badge-bottom {
        padding: 3px 8px;
    }

    body.page-home .products-grid-pro {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    body.page-home .categories-grid-pro {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    body.page-home .category-image-container {
        height: 110px;
        padding: 12px;
    }

    body.page-home .category-info-pro {
        padding: 10px 12px 12px;
        flex-wrap: wrap;
        gap: 6px;
    }

    body.page-home .category-name-pro {
        font-size: 0.875rem;
    }

    body.page-home .product-info-pro {
        padding: 12px 14px 14px;
    }

    body.page-home .current-price-pro {
        font-size: 1.125rem;
    }

    body.page-home .add-to-cart-btn-pro span {
        display: none;
    }

    body.page-home .add-to-cart-btn-pro {
        padding: 11px;
    }

    .category-pill {
        width: 76px;
    }

    .category-pill-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .category-pill-name {
        font-size: 0.75rem;
    }

    .category-strip {
        padding: 16px 0;
    }

    .category-strip-inner {
        gap: 18px;
    }
}

@media (max-width: 480px) {
    body.page-home .promo-stat-card:nth-child(3) {
        grid-column: span 2;
    }

    body.page-home .promo-image-premium {
        grid-template-columns: 1fr 1fr;
    }

    body.page-home .categories-grid-pro {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-home .category-image-container {
        height: 100px;
    }
}
