/* --- Modern Landing Page Sections --- */

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90vh;
    padding: 20px 5%;
    background: radial-gradient(circle at 70% 30%, rgba(138, 154, 91, 0.1), transparent);
    gap: 50px;
}

@media (min-width: 922px) {
    .hero-section {
        padding: 0 10%;
    }
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--gp-primary);
    margin-bottom: 20px;
    font-family: var(--gp-font-heading);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: var(--gp-font-body);
    font-size: 1.25rem;
    color: var(--gp-text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-primary {
    padding: 15px 35px;
    background: var(--gp-primary);
    color: var(--gp-text-white);
    text-decoration: none;
    border-radius: var(--gp-radius-pill);
    font-weight: 600;
    transition: var(--gp-transition);
    box-shadow: 0 10px 20px rgba(45, 90, 39, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(45, 90, 39, 0.35);
    background: var(--gp-primary-hover);
    color: var(--gp-text-white) !important;
}

.btn-outline {
    padding: 15px 35px;
    border: 2px solid var(--gp-primary);
    color: var(--gp-primary);
    text-decoration: none;
    border-radius: var(--gp-radius-pill);
    font-weight: 600;
    transition: var(--gp-transition);
}

.btn-outline:hover {
    background: var(--gp-primary);
    color: var(--gp-text-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 90, 39, 0.2);
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--gp-radius-card);
    box-shadow: var(--gp-shadow-float);
    border: 1px solid var(--gp-border);
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Features Section */
.features-section {
    display: flex;
    justify-content: space-around;
    padding: 60px 5%;
    background: var(--gp-bg);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--gp-bg-card);
    border-radius: var(--gp-radius-card);
    border: 1px solid var(--gp-border);
    box-shadow: var(--gp-shadow);
    transition: var(--gp-transition-spring);
    flex: 1;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--gp-shadow-hover);
    border-color: var(--gp-sage);
}

.feature-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 20px;
}

.story-section {
    padding: 60px 5%;
    background: url('../assets/images/grandma_pickle_featured.jpg') center/cover no-repeat fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

@media (min-width: 922px) {

    .features-section,
    .story-section {
        padding: 100px 10%;
    }
}

.story-glass {
    max-width: 600px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--gp-radius-card);
    border: 1px solid var(--gp-border);
    box-shadow: var(--gp-shadow-float);
}

.story-glass h2 {
    font-family: var(--gp-font-heading);
    font-size: 3rem;
    color: var(--gp-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.story-glass p {
    font-family: var(--gp-font-body);
    color: var(--gp-text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-text {
    background: none;
    border: none;
    color: #2D5A27;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
}

.btn-text:hover {
    letter-spacing: 1px;
}

/* Image Slider */
.image-slider-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #000;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: #8A9A5B;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(138, 154, 91, 0.5);
}

/* --- Category Hero Section (Full Width Edge-to-Edge) --- */
.category-hero-section {
    padding: 50px 0 70px 0;
    background: var(--gp-bg);
    border: none;
    overflow: hidden;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero-header-wrap {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 30px auto;
    padding: 0 20px;
}

.category-title {
    font-family: var(--gp-font-heading) !important;
    font-size: 42px !important;
    font-weight: 800 !important;
    letter-spacing: -0.025em !important;
    color: var(--gp-primary) !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.2 !important;
}

.category-subtitle {
    font-size: 1.05rem;
    color: var(--gp-text-muted);
    font-family: var(--gp-font-body);
    margin: 0;
}

.category-slider-outer {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Edge Gradient Fade Masks (Active on Scroll Overflow) */
.category-slider-outer::before,
.category-slider-outer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 8;
    transition: opacity 0.35s ease;
    opacity: 0;
}

.category-slider-outer::before {
    left: 0;
    background: linear-gradient(to right, var(--gp-bg) 20%, transparent 100%);
}

.category-slider-outer::after {
    right: 0;
    background: linear-gradient(to left, var(--gp-bg) 20%, transparent 100%);
}

.category-hero-section.has-left-overflow .category-slider-outer::before {
    opacity: 1;
}

.category-hero-section.has-right-overflow .category-slider-outer::after {
    opacity: 1;
}

/* Auto-Fading Luxury Navigation Arrows */
.category-slider-outer .arrow-btn {
    position: absolute;
    top: 75px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid var(--gp-border);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(40, 35, 29, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gp-primary);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.2s ease,
                color 0.2s ease;
    z-index: 15;
}

.category-slider-outer .arrow-btn:hover {
    background: var(--gp-primary);
    color: #FFFFFF;
    border-color: var(--gp-primary);
    box-shadow: 0 12px 28px rgba(45, 90, 39, 0.25);
    transform: translateY(-50%) scale(1.1) !important;
}

.category-slider-outer .arrow-btn.prev {
    left: 24px;
    transform: translateY(-50%) scale(1);
}

.category-slider-outer .arrow-btn.next {
    right: 24px;
    transform: translateY(-50%) scale(1);
}

.category-slider-outer .arrow-btn.is-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-50%) scale(0.7) !important;
    visibility: hidden;
}

.category-slider-outer .arrow-btn.is-visible {
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible;
}

/* Full Width Scroll Container */
.category-scroll-container {
    display: flex;
    gap: 36px;
    overflow-x: auto;
    padding: 15px 5vw 35px 5vw;
    scroll-behavior: smooth;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.category-scroll-container::-webkit-scrollbar {
    display: none;
}

.category-item-modern {
    flex: 0 0 auto;
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    scroll-snap-align: start;
}

.category-image-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    background: #FFFFFF;
    margin-bottom: 14px;
    box-shadow: 0 8px 22px rgba(40, 35, 29, 0.07);
    border: 2px solid var(--gp-border);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.category-item-modern:hover .category-image-circle {
    border-color: var(--gp-primary);
    box-shadow: 0 16px 36px rgba(45, 90, 39, 0.16);
    transform: translateY(-6px);
}

.category-item-modern:hover .category-image-circle img {
    transform: scale(1.08);
}

.category-name {
    font-family: var(--gp-font-heading) !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    color: var(--gp-primary) !important;
    text-align: center;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.category-item-modern:hover .category-name {
    color: var(--gp-accent) !important;
}

@media (max-width: 768px) {
    .category-hero-section {
        padding: 35px 0 50px 0;
    }

    .category-title {
        font-size: 28px !important;
    }

    .category-slider-outer .arrow-btn {
        display: none !important; /* Touch swipe on mobile */
    }

    .category-image-circle {
        width: 110px;
        height: 110px;
    }

    .category-item-modern {
        width: 120px;
    }

    .category-scroll-container {
        gap: 20px;
        padding: 10px 20px 25px 20px;
    }
}

/* Offer Banner Section */
.offer-banner-section {
    padding: 80px 5%;
    /* Increased from 20px 5% */
    background: #fff;
}

.banner-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2D5A27 0%, #1a3a17 100%);
    border-radius: 30px;
    height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(45, 90, 39, 0.12);
}

.banner-image-box {
    flex: 0 0 45%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.banner-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0));
}

.banner-content-box {
    flex: 1;
    padding: 0 5% 0 2%;
    color: white;
    z-index: 2;
}

.banner-tagline {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    color: #8A9A5B;
    margin-bottom: 15px;
}

.banner-discount {
    font-family: var(--gp-font-heading);
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: 58px;
    line-height: 1;
    margin: 0 0 10px 0;
    color: var(--gp-gold);
    /* Using variable for discount highlight */
}

.banner-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    max-width: 400px;
}

.coupon-code-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.coupon-code-wrap .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.coupon-code-wrap .coupon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px dashed rgba(247, 208, 138, 0.5);
    padding: 8px 15px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: var(--gp-gold);
    /* Using variable for coupon code */
    letter-spacing: 1px;
}

.btn-banner-shop {
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    background: #f7d08a;
    color: #1a3a17;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(247, 208, 138, 0.2);
}

.btn-banner-shop:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

/* Decorative Orbits */
.deco-circle-1,
.deco-circle-2 {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 208, 138, 0.1) 0%, rgba(247, 208, 138, 0) 70%);
}

.deco-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.deco-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: 20%;
}

.sparkle {
    position: absolute;
    font-size: 24px;
    animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Advanced Ad Banner - Full Bleed Image with Overlay */
.advanced-ad-banner {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    height: 520px;
    background: #0F280D;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.ad-slide-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ad-slide-wrap.active {
    opacity: 1;
    visibility: visible;
}

/* Full Bleed Image Container (100% width and height) */
.ad-image-column {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    flex: none !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.ad-image-column img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.8s ease !important;
}

.ad-slide-wrap.active .ad-image-column img {
    transform: scale(1.02) !important;
}

/* Make Image Fully Visible & Unobscured */
.ad-image-column::after {
    display: none !important;
}

/* Content Container on Right Side */
.ad-content-column {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 50% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 30px 40px !important;
    z-index: 5 !important;
    background: transparent !important;
}

/* Fixed-size Rectangle Glass Container for text consistency across all slides */
.ad-card-inner {
    background: rgba(18, 42, 16, 0.85) !important;
    backdrop-filter: blur(16px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    border: 1.5px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 24px !important;
    padding: 32px 38px !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    width: 480px !important;
    height: 410px !important;
    box-sizing: border-box !important;
}

.ad-text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 70%;
}

.ad-action-block {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.ad-tagline {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.8;
    color: #F8E2B0;
}

.ad-title {
    font-size: 28px;
    line-height: 1.1;
    margin: 0 0 6px 0;
    font-family: var(--gp-font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ad-desc {
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.9;
    margin-bottom: 12px;
    max-width: 420px;
    font-weight: 400;
    color: #f0f0f0;
}

.ad-coupon-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.coupon-label {
    font-size: 11px;
    font-weight: 500;
    color: #F8E2B0;
}

.coupon-code {
    border: 1px solid rgba(248, 226, 176, 0.3);
    padding: 4px 12px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 11px;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    letter-spacing: 1px;
}

.coupon-offer {
    font-size: 9px;
    font-weight: 700;
    color: #1a3a17;
    background: #F8E2B0;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ad-btn {
    background: #F8E2B0;
    color: var(--gp-primary);
    padding: 8px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    width: fit-content;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.ad-btn:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.ad-sparkle {
    position: absolute;
    color: #F8E2B0;
    font-size: 20px;
    pointer-events: none;
    animation: twinkle 3s infinite ease-in-out;
}

.ad-nav-advanced {
    position: absolute;
    bottom: 15px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.ad-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ad-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ==========================================================================
   Brand Impact Bento Story Showcase (Redesign)
   ========================================================================== */
.brand-impact-section {
    padding: 60px 5% 70px;
    background: radial-gradient(circle at 80% 20%, rgba(138, 154, 91, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, rgba(194, 94, 56, 0.05) 0%, transparent 50%),
                var(--gp-bg, #FAF7F2);
    overflow: hidden;
    position: relative;
}

/* Section Header */
.brand-impact-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 5;
}

.impact-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 90, 39, 0.08);
    color: var(--gp-primary-dark, #1E3D1A);
    border: 1px solid rgba(45, 90, 39, 0.2);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.impact-pill-badge .badge-sparkle {
    font-size: 0.95rem;
    filter: drop-shadow(0 0 4px rgba(212, 139, 40, 0.4));
}

.impact-main-title {
    font-family: var(--gp-font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gp-text-dark, #1C1814);
    line-height: 1.18;
    margin: 0 0 12px;
    letter-spacing: -0.025em;
}

.impact-main-title .title-accent {
    color: var(--gp-primary, #2D5A27);
    font-style: italic;
}

.impact-subtitle {
    font-size: 1.05rem;
    color: var(--gp-text-secondary, #5C544B);
    line-height: 1.6;
    margin: 0;
    max-width: 620px;
    font-family: var(--gp-font-body);
}

/* Bento Grid Architecture */
.brand-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 350px 350px;
    gap: 20px;
    grid-template-areas:
        "img-large img-large text-1 img-medium"
        "img-large img-large img-small text-2";
    max-width: 1360px;
    margin: 0 auto;
}

/* Base Card Elements */
.impact-item {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(40, 35, 29, 0.05);
    border: 1px solid rgba(40, 35, 29, 0.07);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    background-color: #FFFFFF;
}

.impact-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(45, 90, 39, 0.14);
    border-color: rgba(45, 90, 39, 0.2);
}

/* Image Wrappers & Overlays */
.impact-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.impact-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.impact-item:hover .impact-img-wrap img {
    transform: scale(1.06);
}

.impact-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.05) 30%, rgba(10, 22, 14, 0.85) 70%, rgba(8, 18, 11, 0.98) 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.impact-img-overlay.subtle {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 40%, rgba(12, 24, 15, 0.8) 100%);
}

/* Glass Badges & Floating Tags */
.impact-badge-top.glass-pill {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #1C3822;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
    z-index: 6;
    transition: transform 0.3s ease;
}

.impact-item:hover .impact-badge-top.glass-pill {
    transform: scale(1.04);
}

.impact-floating-tag-bottom {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: center;
    z-index: 6;
}

.impact-floating-tag-bottom span {
    background: rgba(15, 28, 18, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* Card 1: 2x2 Hero Kitchen Card */
.impact-item.img-large {
    grid-area: img-large;
}

.impact-card-content-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 26px 24px;
    z-index: 6;
    color: #FFFFFF;
}

.impact-card-content-bottom .content-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #EBDCB9;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.impact-card-content-bottom .content-title {
    font-family: var(--gp-font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: #FFFFFF !important;
    line-height: 1.2;
    margin: 0 0 6px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.impact-card-content-bottom .content-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #FFFFFF !important;
    opacity: 0.95;
    margin: 0;
    font-weight: 400;
    max-width: 95%;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

/* Card 2: Women Empowerment */
.impact-item.text-1.story-women {
    grid-area: text-1;
    background: linear-gradient(145deg, #FFFDF9 0%, #F5EDE1 100%);
    padding: 24px 22px;
    justify-content: space-between;
    position: relative;
    border: 1px solid #EAE0CE;
}

.impact-card-top-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 5;
}

.tag-terracotta {
    background: #FDF0EB;
    color: #A84E2C;
    border: 1px solid rgba(168, 78, 44, 0.22);
}

.story-women .impact-text-body h3 {
    font-family: var(--gp-font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: #1E3D1A;
    line-height: 1.22;
    margin: 8px 0 6px;
    letter-spacing: -0.02em;
}

.story-women .impact-text-body p {
    font-size: 0.86rem;
    line-height: 1.48;
    color: #4A4238;
    margin: 0;
    font-weight: 400;
}

.impact-stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #FFFFFF;
    border: 1px solid #E8DECD;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 700;
    color: #2D5A27;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    z-index: 5;
    width: fit-content;
}

.impact-stat-chip .stat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2D5A27;
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.18);
}

/* Card 3 & 4: Image Areas */
.impact-item.img-medium {
    grid-area: img-medium;
}

.impact-item.img-small {
    grid-area: img-small;
}

/* Card 5: Clean Wellness Promise (High Contrast Emerald) */
.impact-item.text-2.story-wellness {
    grid-area: text-2;
    background: linear-gradient(145deg, #18331E 0%, #254F22 60%, #152B19 100%);
    padding: 24px 22px;
    justify-content: space-between;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.tag-sage {
    background: rgba(255, 255, 255, 0.15);
    color: #E8F2E5;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.story-wellness .impact-text-body h3 {
    font-family: var(--gp-font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: #FFFFFF !important;
    line-height: 1.22;
    margin: 8px 0 6px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.story-wellness .impact-text-body p {
    font-size: 0.86rem;
    line-height: 1.48;
    color: rgba(255, 255, 255, 0.92) !important;
    margin: 0;
    font-weight: 400;
}

.impact-purity-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 5;
}

.purity-chip {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}

/* Ambient glow accents */
.impact-ambient-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 139, 40, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.impact-ambient-glow.green-glow {
    background: radial-gradient(circle, rgba(138, 154, 91, 0.25) 0%, transparent 70%);
}

/* --- Astra Theme Layout Overrides (Home Only) --- */
.home.ast-header-break-point .site-header,
.home .site-header,
.home #masthead,
.home .main-header-bar,
.home .ast-main-header-wrap,
.home #ast-desktop-header {
    margin-bottom: 0 !important;
    border-bottom: none !important;
    border: none !important;
    box-shadow: none !important;
}

.advanced-ad-banner,
.advanced-ad-banner .ad-slide-wrap,
.advanced-ad-banner .ad-image-column,
.advanced-ad-banner .ad-image-column img {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.home .ast-container,
.home .site-content,
.home #content,
.home #primary,
.home .site-main,
.home article,
.home .entry-content,
.home #home-rebuild-root,
.home .modern-landing-page {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-sizing: border-box !important;
}

.home .ast-container {
    display: block !important;
}

#home-rebuild-root {
    width: 100% !important;
    flex: 1;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
}

.modern-landing-page section {
    width: 100%;
    box-sizing: border-box;
}

/* --- Responsive Media Queries --- */

@media (max-width: 921px) {

    /* Category Hero Fixes */
    .category-title {
        font-size: 32px !important;
        padding: 0 15px;
    }

    .category-subtitle {
        font-size: 0.95rem;
        padding: 0 20px;
        line-height: 1.4;
    }

    .category-hero-section {
        padding: 10px 0 0 !important;
    }

    .category-slider-outer {
        padding: 0 !important;
        max-width: 100% !important;
    }

    .category-scroll-container {
        gap: 10px;
        padding: 10px 0 30px;
        margin-left: -50px;
        width: calc(100% + 50px);
    }

    .category-item-modern {
        width: 100px;
    }

    .category-image-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 10px;
    }

    .category-name {
        font-size: 13px !important;
        font-weight: 700 !important;
        letter-spacing: -0.2px;
    }

    .category-slider-outer .arrow-btn {
        display: none !important;
        /* Hide arrows on touch devices */
    }

    /* Hero Section Fixes */
    .hero-section {
        flex-direction: column-reverse;
        /* Put image on top of text on mobile if needed, or text on top */
        padding: 40px 5%;
        text-align: center;
        min-height: auto;
        gap: 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        /* Stack buttons on mobile */
        align-items: center;
        width: 100%;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Advanced Ad Banner Fixes */
    .advanced-ad-banner {
        height: 580px !important;
        /* Fixed height for mobile to contain absolute slides */
        flex-direction: column;
        width: 95%;
        margin: 20px auto;
    }

    .ad-slide-wrap {
        flex-direction: column;
    }

    .ad-image-column {
        flex: 0 0 240px !important;
        width: 100%;
        height: 240px !important;
    }

    .ad-image-column::after {
        background: linear-gradient(to bottom, transparent, var(--gp-primary));
        width: 100%;
        height: 60%;
        top: auto;
        bottom: 0;
        right: 0;
    }

    .ad-content-column {
        padding: 20px 25px 40px !important;
        align-items: center;
        text-align: center;
        flex: 1;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .ad-text-block {
        max-width: 100% !important;
    }

    .ad-action-block {
        margin-top: 20px;
    }

    .ad-title {
        font-size: 32px !important;
        margin-bottom: 10px !important;
    }

    .ad-desc {
        font-size: 14px !important;
        margin-bottom: 20px !important;
        max-width: 100%;
    }

    .ad-nav-advanced {
        bottom: 10px;
        right: 50%;
        transform: translateX(50%);
    }

    .ad-sparkle {
        display: none !important;
    }

    /* Brand Impact Bento Responsive Redesign */
    .brand-impact-section {
        padding: 40px 5% 50px !important;
    }

    .brand-impact-header {
        margin-bottom: 28px !important;
    }

    .impact-pill-badge {
        font-size: 0.72rem;
        padding: 5px 14px;
        margin-bottom: 10px;
    }

    .impact-main-title {
        font-size: 1.85rem !important;
        margin-bottom: 8px !important;
    }

    .impact-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.45 !important;
    }

    .brand-impact-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto !important;
        grid-template-areas:
            "img-large img-large"
            "text-1 img-medium"
            "img-small text-2" !important;
        gap: 14px !important;
    }

    .impact-item.img-large {
        grid-area: img-large !important;
        height: 300px !important;
        min-height: 300px !important;
    }

    .impact-item.text-1 {
        grid-area: text-1 !important;
        min-height: 220px !important;
        height: auto !important;
        padding: 20px 16px !important;
    }

    .impact-item.img-medium {
        grid-area: img-medium !important;
        display: flex !important;
        min-height: 220px !important;
        height: auto !important;
    }

    .impact-item.img-small {
        grid-area: img-small !important;
        display: flex !important;
        min-height: 220px !important;
        height: auto !important;
    }

    .impact-item.text-2 {
        grid-area: text-2 !important;
        min-height: 220px !important;
        height: auto !important;
        padding: 20px 16px !important;
    }

    .impact-card-content-bottom {
        padding: 20px 18px !important;
    }

    .impact-card-content-bottom .content-title {
        font-size: 1.4rem !important;
        margin-bottom: 4px !important;
    }

    .impact-card-content-bottom .content-desc {
        font-size: 0.82rem !important;
        line-height: 1.4 !important;
    }

    .impact-badge-top.glass-pill {
        top: 12px !important;
        left: 12px !important;
        font-size: 0.7rem !important;
        padding: 5px 11px !important;
    }

    .impact-floating-tag-bottom {
        bottom: 12px !important;
    }

    .impact-floating-tag-bottom span {
        font-size: 0.72rem !important;
        padding: 4px 12px !important;
    }

    .story-women .impact-text-body h3,
    .story-wellness .impact-text-body h3 {
        font-size: 1.25rem !important;
        margin: 8px 0 6px !important;
    }

    .story-women .impact-text-body p,
    .story-wellness .impact-text-body p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }

    .impact-stat-chip {
        font-size: 0.7rem !important;
        padding: 4px 10px !important;
    }

    .purity-chip {
        font-size: 0.68rem !important;
        padding: 3px 8px !important;
    }

    /* Features Fixes */
    .features-section {
        flex-direction: column;
        padding: 60px 5%;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    /* Decorative Shapes Fix */
    .impact-item.text-1 .deco-shape-organic,
    .impact-item.text-2 .deco-shape-organic {
        display: block !important;
        transform: scale(0.6);
        transform-origin: center;
    }

    .spark-icon-modern {
        display: none !important;
    }

    /* Story Section Fixes */
    .story-glass {
        padding: 25px 15px;
        border-radius: 25px;
        max-width: 90%;
    }

    .story-glass h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .story-glass p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .story-glass .btn-text {
        font-size: 0.85rem;
    }

    .story-portraits {
        gap: 15px;
    }

    .portrait-circle {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .category-title {
        font-size: 24px !important;
        margin-bottom: 5px !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .advanced-ad-banner {
        height: 520px !important;
    }

    .ad-image-column {
        flex: 0 0 180px !important;
        height: 180px !important;
    }

    .ad-title {
        font-size: 26px !important;
    }

    .ad-coupon-box {
        flex-direction: column;
        /* Stack coupon code on tiny screens */
        gap: 5px;
    }

    .banner-container {
        height: auto;
        flex-direction: column;
        padding-bottom: 30px;
    }

    .banner-image-box {
        flex: 0 0 200px;
        width: 100%;
    }

    .banner-content-box {
        padding: 20px;
        text-align: center;
    }

    .ad-btn {
        width: 100%;
        text-align: center;
    }
}

/* --- Social Proof & Trust Assurance Bar (Concept 3 - Smooth Loop Marquee) --- */
.trust-social-proof-section {
    background: var(--gp-bg);
    border-top: 1px solid var(--gp-border);
    border-bottom: 1px solid var(--gp-border);
    padding: 16px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
    width: 100%;
    /* Edge fade mask for sleek modern feel */
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.trust-scroll-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: trust-infinite-loop 38s linear infinite;
    will-change: transform;
    padding: 6px 12px;
}

.trust-social-proof-section:hover .trust-scroll-track {
    animation-play-state: paused;
}

@keyframes trust-infinite-loop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.trust-social-card {
    background: var(--gp-bg-card);
    border: 1px solid var(--gp-border);
    border-radius: var(--gp-radius-card);
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--gp-shadow-sm);
    transition: var(--gp-transition-spring);
    flex-shrink: 0;
    min-width: 320px;
    max-width: 360px;
    user-select: none;
}

.trust-social-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gp-shadow);
    border-color: var(--gp-sage);
}

.trust-social-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--gp-sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    border: 1px solid rgba(138, 154, 91, 0.25);
    transition: var(--gp-transition);
}

.trust-social-card:hover .trust-social-icon-box {
    background: var(--gp-primary);
    transform: scale(1.08) rotate(5deg);
}

.trust-social-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.trust-social-stat-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-social-stat {
    font-family: 'Plus Jakarta Sans', var(--gp-font-body), sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--gp-primary);
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.trust-social-stars {
    color: var(--gp-amber);
    font-size: 12px;
    letter-spacing: 1px;
}

.trust-social-title {
    font-family: 'Plus Jakarta Sans', var(--gp-font-body), sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--gp-text-dark);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trust-social-sub {
    font-family: 'Plus Jakarta Sans', var(--gp-font-body), sans-serif;
    font-size: 12px;
    color: var(--gp-text-muted);
    margin: 0;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .trust-social-proof-section {
        padding: 12px 0;
    }

    .trust-scroll-track {
        gap: 14px;
        animation-duration: 26s;
    }

    .trust-social-card {
        min-width: 275px;
        padding: 10px 16px;
        gap: 12px;
        border-radius: 14px;
    }

    .trust-social-icon-box {
        width: 38px;
        height: 38px;
        font-size: 18px;
        border-radius: 10px;
    }

    .trust-social-stat {
        font-size: 14px;
    }

    .trust-social-title {
        font-size: 12px;
    }

    .trust-social-sub {
        font-size: 11px;
    }
}

/* Trust Impact Section */
.trust-impact-section {
    background-color: var(--gp-pale);
    /* Using standard pale cream divider color */
    /* Light Cream */
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 77, 64, 0.05);
}

.trust-impact-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.impact-brand-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.laurel-icon {
    display: flex;
    align-items: center;
}

.impact-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.impact-text-content .loved-by {
    font-size: 32px;
    font-family: 'Inter', sans-serif;
    color: var(--gp-primary);
    line-height: 1.1;
    font-weight: 400;
}

.impact-text-content .count {
    font-size: 64px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--gp-primary);
    margin: 5px 0;
    line-height: 1;
}

.impact-text-content .families {
    font-size: 48px;
    font-family: 'Inter', sans-serif;
    color: #2D5A27;
    line-height: 1;
    font-weight: 600;
}

/* Google Rating Card */
.google-rating-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rating-content-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-brand {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.g-logo {
    letter-spacing: -1px;
}

.rating-stats {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-score {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.star-rating {
    display: flex;
    gap: 2px;
}

.gp-star-rating-v2 {
    display: flex;
    gap: 4px;
    align-items: center;
}

.gp-star-svg {
    display: block;
    width: 20px;
    height: 20px;
}

.total-reviews {
    color: #888;
    font-size: 15px;
}

.btn-write-review {
    background-color: #2D5A27;
    /* Dark Green */
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-write-review:hover {
    background-color: #1a3a17;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 90, 39, 0.2);
    color: #fff !important;
}

@media (max-width: 992px) {
    .trust-impact-container {
        flex-direction: column;
        text-align: center;
    }

    .google-rating-card {
        width: 100%;
        justify-content: space-between;
        padding: 20px;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .impact-text-content .loved-by {
        font-size: 24px;
    }

    .impact-text-content .count {
        font-size: 48px;
    }

    .impact-text-content .families {
        font-size: 36px;
    }

    .google-rating-card {
        flex-direction: column;
        gap: 15px;
    }

    .btn-write-review {
        width: 100%;
        text-align: center;
    }
}

/* Featured Categories Promo Section */
.featured-categories-promo {
    display: none;
    /* Hidden on desktop */
    padding: 20px 5% 60px;
    background: #fdfaf7;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    /* Reduced gap between cards and banner */
    overflow: hidden;
}

.promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    transition: all 0.3s ease;
}

.promo-card-wrapper {
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    border-radius: 40px;
}

.promo-card {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.promo-card-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    min-height: 180px;
    padding: 0;
    /* No padding to allow image to fill */
    overflow: hidden;
}

.promo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the card */
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.promo-card:hover .promo-card-image img {
    transform: scale(1.1);
}

.promo-card-footer {
    background: #2D5A27;
    /* Grandma's Green */
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.2px;
    z-index: 2;
}

.brand-promo-banner {
    background: #fff;
    border: 1.5px solid #D2C2A4;
    border-radius: 100px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    max-width: 95%;
    margin: 20px auto;
}

.brand-promo-icon {
    font-size: 20px;
    color: #F8B400;
    padding-right: 15px;
    border-right: 1px solid #D2C2A4;
    display: flex;
    align-items: center;
    height: 30px;
}

.brand-promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 20px;
}

.promo-main-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.promo-highlight {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #2D5A27;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.2px;
}

.promo-coupon-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.promo-label {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.promo-code-box {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.promo-code-pill {
    background: #F8B400;
    color: #000;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.copy-icon {
    color: #2D5A27;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .promo-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .featured-categories-promo {
        display: flex;
        /* Show only on mobile */
        padding: 10px 10px 40px;
        /* Reduced gap */
        align-items: center;
    }

    .promo-cards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
        overflow-x: hidden;
        padding-bottom: 0;
    }

    .promo-card {
        border-radius: 15px;
        height: 100%;
    }

    .promo-card-image {
        min-height: 80px;
        /* Extremely compact for mobile */
    }

    .promo-card-footer {
        padding: 8px 4px;
        font-size: 11px;
        letter-spacing: -0.5px;
    }

    .brand-promo-banner {
        margin: 15px auto;
        width: 94%;
        padding: 10px 15px;
        border-radius: 100px;
        gap: 12px;
    }

    .brand-promo-icon {
        border-right: 1.5px solid #EAEAEA;
        padding-right: 10px;
        font-size: 16px;
    }

    .brand-promo-text {
        font-size: 11px;
    }

    .promo-code-text {
        padding: 2px 8px;
        font-size: 10px;
    }
}

/* Pre-Footer CTA Section */
.pre-footer-cta-section {
    padding: 80px 5%;
    background: #fff;
    display: flex;
    justify-content: center;
}

.cta-banner-box {
    background: #1A6B3A;
    /* Deep Green from image */
    max-width: 1400px;
    width: 100%;
    height: 180px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(26, 107, 58, 0.2);
}

.cta-product-showcase {
    display: flex;
    align-items: center;
    height: 100%;
    width: 300px;
    position: relative;
}

.cta-prod-img {
    height: 130%;
    width: auto;
    object-fit: contain;
    position: absolute;
    bottom: -15%;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.cta-prod-img.img-0 {
    left: 0;
    z-index: 1;
    transform: rotate(-8deg);
}

.cta-prod-img.img-1 {
    left: 60px;
    z-index: 2;
    transform: rotate(-4deg);
}

.cta-prod-img.img-2 {
    left: 120px;
    z-index: 3;
    transform: rotate(4deg);
}

.cta-prod-img.img-3 {
    left: 180px;
    z-index: 4;
    transform: rotate(8deg);
}

.cta-text-wrap {
    flex: 1;
    text-align: center;
    color: #fff;
    padding: 0 30px;
}

.cta-text-wrap h2 {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    margin: 0 0 5px 0;
    color: #fff !important;
}

.cta-text-wrap p {
    font-size: 18px;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.cta-shop-btn {
    background: #FFCC00;
    /* Bright Yellow from image */
    color: #000;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none !important;
    font-size: 20px;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-shop-btn:hover {
    background: #fff;
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
    color: #000 !important;
}

@media (max-width: 1024px) {
    .cta-banner-box {
        padding: 0 30px;
        height: auto;
        min-height: 250px;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        text-align: center;
        padding-bottom: 40px;
    }

    .cta-product-showcase {
        height: 150px;
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }

    .cta-prod-img {
        position: static;
        height: 120px;
        margin: 0 -15px;
    }

    .cta-text-wrap h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .cta-banner-box {
        height: auto;
        padding: 40px 20px;
    }

    .cta-text-wrap h2 {
        font-size: 28px;
    }

    .cta-text-wrap p {
        font-size: 16px;
    }

    .cta-shop-btn {
        padding: 12px 35px;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }
}

/* Comparison Section Antimation Enhancements */
@keyframes compFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes compBadgeFloat {

    0%,
    100% {
        transform: rotate(-2deg) translateY(0);
    }

    50% {
        transform: rotate(-1deg) translateY(-10px);
    }
}

.comparison-section {
    padding: 120px 5%;
    background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.comparison-container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    border: 1px solid #2D5A27;
    border-radius: 60px;
    padding: 80px 40px 40px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    animation: compFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.comp-badge {
    position: absolute;
    top: -20px;
    left: 40px;
    background: #DFFF00;
    /* Lime/Yellow */
    color: #1A3A17;
    font-weight: 900;
    padding: 10px 25px;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    transform: rotate(-2deg);
    box-shadow: 5px 5px 0 #2D5A27;
    z-index: 10;
    animation: compBadgeFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.comp-badge:hover {
    transform: rotate(0deg) scale(1.1);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.comp-table {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.comp-row {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(45, 90, 39, 0.1);
    transition: all 0.3s ease;
}

.comp-row:nth-child(2) {
    animation-delay: 0.1s;
}

.comp-row:nth-child(3) {
    animation-delay: 0.2s;
}

.comp-row:nth-child(4) {
    animation-delay: 0.3s;
}

.comp-row:nth-child(5) {
    animation-delay: 0.4s;
}

.comp-row:nth-child(6) {
    animation-delay: 0.5s;
}

.comp-row:nth-child(7) {
    animation-delay: 0.6s;
}

.comp-row:not(.header):hover {
    background: rgba(45, 90, 39, 0.05);
    transform: translateX(10px);
}

.comp-row.header {
    border-bottom: none;
    margin-bottom: 20px;
}

.comp-col {
    flex: 1;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #444;
    transition: all 0.3s ease;
}

.comp-col.attr {
    text-align: left;
    font-weight: 700;
    color: #2D5A27;
    max-width: 150px;
}

.comp-col.ghar,
.comp-col.junk {
    padding: 0 20px;
}

.header .comp-col {
    font-weight: 800;
    color: #2D5A27;
    font-size: 18px;
}

.comp-col.gp-highlight {
    background: #2D5A27;
    /* Dark Green */
    color: #ffffff !important;
    padding: 20px 10px;
    margin: -20px 0;
    border-radius: 0;
    position: relative;
    z-index: 5;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.25);
}

.comp-col.gp-highlight span {
    color: #ffffff !important;
}

.comp-row:not(.header):hover .comp-col.gp-highlight {
    background: #23471e;
    transform: scale(1.02);
}

.comp-row:first-of-type .comp-col.gp-highlight {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-top: -30px;
    padding-top: 30px;
}

.comp-row:last-child .comp-col.gp-highlight {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    margin-bottom: -30px;
    padding-bottom: 30px;
}

.comp-row:last-child {
    border-bottom: none;
}

.highlight-title {
    font-size: 28px;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.header .comp-col.gp-highlight {
    background: #2D5A27;
}

/* Responsiveness */
@media (max-width: 992px) {
    .comparison-section {
        padding: 40px 5%;
    }

    .comparison-container {
        padding: 50px 15px 15px;
        border-radius: 30px;
    }

    .comp-badge {
        font-size: 16px;
        left: 20px;
        padding: 6px 15px;
    }

    .comp-col {
        font-size: 14px;
    }

    .header .comp-col {
        font-size: 13px;
    }

    .highlight-title {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .comp-row {
        flex-wrap: nowrap !important;
        padding: 8px 0 !important;
        gap: 4px;
    }

    .comp-col.ghar {
        display: none !important;
    }

    .comp-col {
        width: auto !important;
        flex: 1 !important;
        margin-bottom: 0 !important;
        font-size: 11px !important;
        padding: 0 6px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .comp-col.attr {
        max-width: 80px !important;
        text-align: left !important;
        justify-content: flex-start;
        background: transparent !important;
        font-weight: 800 !important;
        font-size: 12px !important;
    }

    .comp-col.gp-highlight {
        margin: -8px 0 !important;
        padding: 8px 6px !important;
        border-radius: 0 !important;
        background: #2D5A27 !important;
        box-shadow: none !important;
    }

    .highlight-title {
        font-size: 13px !important;
    }

    .header .comp-col {
        font-size: 10px !important;
        line-height: 1.1;
        font-weight: 800;
    }

    .comp-badge {
        font-size: 16px !important;
        padding: 6px 15px !important;
        top: -18px !important;
        left: 15px !important;
    }
}

/* Benefit Showcase Section */
.benefit-showcase-section {
    padding: 120px 5%;
    background: linear-gradient(135deg, #F0FDF4 0%, #F8FAFC 50%, #DCFCE7 100%);
    display: flex;
    justify-content: center;
}

.benefit-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    background: #FEF4E8;
    /* Brand Light Cream */
    border-radius: 60px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.benefit-text-side {
    flex: 0.35;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.benefit-block {
    opacity: inherit;
    /* Fix empty ruleset lint */
}

.benefit-block:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-block:nth-child(3) {
    animation-delay: 0.4s;
}

.benefit-block h3 {
    font-size: 32px;
    font-weight: 800;
    color: #166534;
    /* Darker green to match Alpino style */
    margin: 0 0 8px 0;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.benefit-block p {
    font-size: 16px;
    color: #334155;
    margin: 0 auto;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    max-width: 320px;
}

.benefit-image-side {
    flex: 0.7;
    position: relative;
}

.benefit-lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 60px 60px 0;
}

@media (max-width: 1024px) {
    .benefit-container {
        flex-direction: column;
        border-radius: 30px;
    }

    .benefit-text-side {
        padding: 30px 20px;
        order: 2;
        text-align: center;
        gap: 20px;
    }

    .benefit-block p {
        max-width: 100%;
    }

    .benefit-image-side {
        height: 400px;
        order: 1;
    }

    .benefit-lifestyle-img {
        border-radius: 30px 30px 0 0;
    }

    .benefit-block h3 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .benefit-showcase-section {
        padding: 40px 5%;
    }

    .benefit-image-side {
        height: 300px;
    }

    .benefit-block h3 {
        font-size: 18px;
        letter-spacing: -0.5px;
    }

    .benefit-block p {
        font-size: 14px;
    }
}

/* --- Global Reveal System --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Staggered triggers for children */
.reveal-on-scroll.is-visible .benefit-block:nth-child(1),
.reveal-on-scroll.is-visible .comp-row:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-on-scroll.is-visible .benefit-block:nth-child(2),
.reveal-on-scroll.is-visible .comp-row:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-on-scroll.is-visible .benefit-block:nth-child(3),
.reveal-on-scroll.is-visible .comp-row:nth-child(3) {
    transition-delay: 0.3s;
}

/* ==========================================================================
   ULTRA-PREMIUM BRAND ELEVATION ENHANCEMENTS (Modern Landing)
   ========================================================================== */

/* Editorial Subheadings & Eyebrow Badges */
.section-eyebrow,
.hero-tagline-eyebrow,
.ad-tagline {
    font-family: 'Inter', sans-serif !alignment;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    color: #8A9A5B !important; /* Sage Accent */
    margin-bottom: 8px !important;
    display: inline-block !important;
}

/* Gold Filigree Line under Major Headlines */
.modern-section-title::after,
.section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    margin: 14px auto 0 auto;
}

/* Frosted Glass Hero Badges & Banner Borders */
.hero-section, 
.advanced-ad-banner {
    border: 1px solid rgba(138, 154, 91, 0.25) !important;
    box-shadow: 0 20px 50px rgba(45, 90, 39, 0.08) !important;
}

.hero-offer-badge,
.coupon-tag,
.ad-coupon-code {
    background: rgba(255, 255, 255, 0.18) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(212, 175, 55, 0.45) !important;
    color: #FFFFFF !important;
    border-radius: 30px !important;
    letter-spacing: 0.06em !important;
    padding: 6px 16px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Category Circles Dual Concentric Ring Hover Effect */
.category-item,
.pantry-cat-card,
.cat-circle-item {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.category-item img,
.pantry-cat-card img,
.cat-circle-item img {
    border-radius: 50% !important;
    border: 2px solid transparent !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.category-item:hover,
.pantry-cat-card:hover,
.cat-circle-item:hover {
    transform: translateY(-6px) !important;
}

.category-item:hover img,
.pantry-cat-card:hover img,
.cat-circle-item:hover img {
    border-color: #D4AF37 !important; /* Gold Concentric Ring */
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25), 0 12px 25px rgba(45, 90, 39, 0.15) !important;
}

/* Luxury Comparison Matrix Table (Grandma's vs The Rest) */
.comparison-table,
.comp-table {
    border-collapse: separate !important;
    border-spacing: 12px 0 !important;
}

.comp-col-grandma,
.comparison-table td:nth-child(2),
.comparison-table th:nth-child(2) {
    background: rgba(45, 90, 39, 0.04) !important;
    border-left: 1.5px solid rgba(45, 90, 39, 0.18) !important;
    border-right: 1.5px solid rgba(45, 90, 39, 0.18) !important;
    position: relative !important;
}

.comp-col-grandma-header {
    background: rgba(45, 90, 39, 0.08) !important;
    border-top: 2px solid #2D5A27 !important;
    font-weight: 700 !important;
    color: #2D5A27 !important;
}

.comp-check-grandma {
    color: #2D5A27 !important;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
}

/* ==========================================================================
   FULL-BLEED HERO AD BANNER (FULL CONTAINER IMAGE & TEXT OVERLAY)
   ========================================================================== */

/* Hide Sparkles Entirely */
.sparkle, 
.ad-sparkle {
    display: none !important;
}

@media (min-width: 922px) {
    .advanced-ad-banner {
        height: 520px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        background: #0F280D !important;
        box-shadow: none !important;
        overflow: hidden !important;
        position: relative !important;
    }

    .advanced-ad-banner .ad-slide-wrap {
        height: 100% !important;
        width: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
    }

    /* 1. Image takes 100% Full Bleed of Container */
    .advanced-ad-banner .ad-image-column {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        flex: none !important;
        z-index: 1 !important;
        display: block !important;
    }

    .advanced-ad-banner .ad-image-column img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    /* 2. Image fully visible with no dark scrim overlay */
    .advanced-ad-banner .ad-image-column::after {
        display: none !important;
    }

    /* 3. Hide inner text container and shop button */
    .advanced-ad-banner .ad-content-column,
    .advanced-ad-banner .ad-card-inner,
    .advanced-ad-banner .ad-text-block,
    .advanced-ad-banner .ad-action-block {
        display: none !important;
    }

    /* Compact Top/Bottom Spacing Between Home Page Sections on Desktop */
    .modern-landing-page section,
    .category-hero-section,
    .trust-impact-section,
    .gp-bs-section,
    .comparison-section,
    .featured-categories-promo,
    .brand-impact-section,
    .benefit-showcase-section,
    .story-section,
    .pre-footer-cta-section {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .trust-marquee-section {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .advanced-ad-banner {
        padding: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .reveal-on-scroll {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .gp-bs-header,
    .hero-header-wrap,
    .comp-badge,
    .brand-promo-banner {
        margin-bottom: 25px !important;
    }
}

/* ==========================================================================
   ✨ GRANDMA'S PANTRY SHELF MODAL & OPENING ANIMATIONS
   ========================================================================== */

/* Backdrop Fade */
.gp-pantry-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(18, 33, 16, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gp-pantry-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

/* Cabinet Container */
.gp-pantry-cabinet {
    background: #FAF8F2;
    background-image: 
        radial-gradient(#E8DFC8 1px, transparent 1px),
        linear-gradient(to bottom, #FFFDF9 0%, #FAF6EE 100%);
    background-size: 20px 20px, 100% 100%;
    width: 100%;
    max-width: 1080px;
    max-height: 90vh;
    border-radius: 24px;
    border: 4px solid #E2D3B8;
    box-shadow: 
        0 25px 60px -15px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(138, 90, 54, 0.2),
        inset 0 2px 6px rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transform: scale(0.92) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gp-pantry-backdrop.is-open .gp-pantry-cabinet {
    transform: scale(1) translateY(0);
}

/* Cabinet Top Header */
.gp-pantry-header {
    padding: 24px 32px 18px;
    background: linear-gradient(135deg, #2D5A27 0%, #1c3c18 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #F7D08A;
}

.gp-pantry-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gp-pantry-seal-icon {
    width: 52px;
    height: 52px;
    background: #FAF8F2;
    border: 2px solid #F7D08A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.gp-pantry-title-wrap h2 {
    font-family: var(--gp-font-heading);
    font-size: 24px;
    margin: 0 0 4px 0;
    color: #ffffff !important;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.gp-pantry-title-wrap p {
    margin: 0;
    font-size: 13px;
    color: #E2E8D8;
    opacity: 0.95;
}

.gp-pantry-close-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.gp-pantry-close-btn:hover {
    background: #E2725B;
    border-color: #E2725B;
    transform: rotate(90deg) scale(1.05);
}

/* Category Switcher Tabs inside Cabinet */
.gp-pantry-nav-bar {
    padding: 14px 28px;
    background: #F4EEDF;
    border-bottom: 1px solid #E5DAC0;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.gp-pantry-nav-bar::-webkit-scrollbar {
    height: 4px;
}
.gp-pantry-nav-bar::-webkit-scrollbar-thumb {
    background: #C4B598;
    border-radius: 4px;
}

.gp-pantry-chip {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    background: #FFFFFF;
    color: #4A5568;
    border: 1px solid #D8CCB2;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gp-pantry-chip:hover {
    border-color: #2D5A27;
    color: #2D5A27;
    transform: translateY(-1px);
}

.gp-pantry-chip.is-active {
    background: #2D5A27;
    color: #FFFFFF;
    border-color: #2D5A27;
    box-shadow: 0 3px 8px rgba(45, 90, 39, 0.25);
}

/* Pantry Shelves Body */
.gp-pantry-body {
    padding: 30px 32px 35px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Wooden Shelf Grid */
.gp-pantry-shelf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 28px 24px;
    position: relative;
    padding-bottom: 20px;
}

/* Wooden Shelf Board under row of items */
.gp-pantry-shelf-board {
    width: 100%;
    height: 14px;
    background: linear-gradient(180deg, #B88B58 0%, #8E6032 50%, #68411D 100%);
    border-radius: 4px;
    box-shadow: 
        0 6px 12px rgba(60, 35, 14, 0.35),
        inset 0 1px 1px rgba(255, 255, 255, 0.4);
    margin-top: 15px;
    position: relative;
}

.gp-pantry-shelf-board::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 4%;
    width: 92%;
    height: 6px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, transparent 70%);
}

/* Product Card on Shelf */
.gp-shelf-card {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 16px;
    border: 1px solid #EBE4D5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: gpShelfItemFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gp-shelf-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 32px rgba(45, 90, 39, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: #C3D9BD;
}

.gp-shelf-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #E2725B;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(226, 114, 91, 0.3);
}

.gp-shelf-img-box {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    background: #FAF8F2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    overflow: hidden;
    position: relative;
}

.gp-shelf-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    transition: transform 0.35s ease;
}

.gp-shelf-card:hover .gp-shelf-img-box img {
    transform: scale(1.08);
}

.gp-shelf-product-title {
    font-family: var(--gp-font-heading);
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: #2D5A27;
    margin: 0 0 6px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

.gp-shelf-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #E6A23C;
    margin-bottom: 8px;
}

.gp-shelf-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
    margin-top: auto;
}

.gp-shelf-price {
    font-size: 17px;
    font-weight: 700;
    color: #1F2937;
}

.gp-shelf-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.gp-shelf-btn-view {
    padding: 9px 8px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    background: #F1F5E9;
    color: #2D5A27;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.gp-shelf-btn-view:hover {
    background: #2D5A27;
    color: #FFFFFF !important;
}

.gp-shelf-btn-add {
    padding: 9px 8px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    background: #2D5A27;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.gp-shelf-btn-add:hover {
    background: #8A9A5B;
    transform: translateY(-1px);
}

.gp-shelf-empty-box {
    text-align: center;
    padding: 60px 20px;
    color: #718096;
}

.gp-shelf-empty-box .icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

/* Bottom Bar of Cabinet */
.gp-pantry-footer {
    padding: 16px 32px;
    background: #F0E8D7;
    border-top: 1px solid #E2D3B8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gp-pantry-footer-btn {
    font-size: 14px;
    font-weight: 700;
    color: #2D5A27;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.gp-pantry-footer-btn:hover {
    gap: 10px;
    color: #1c3c18;
}

/* Stagger Animation */
@keyframes gpShelfItemFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Mobile Bottom Sheet */
@media (max-width: 768px) {
    .gp-pantry-backdrop {
        padding: 0;
        align-items: flex-end;
    }
    
    .gp-pantry-cabinet {
        max-height: 88vh;
        border-radius: 24px 24px 0 0;
        border-bottom: none;
    }

    .gp-pantry-header {
        padding: 16px 20px;
    }

    .gp-pantry-title-wrap h2 {
        font-size: 18px;
    }

    .gp-pantry-body {
        padding: 20px 16px;
    }

    .gp-pantry-shelf-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 12px;
    }

    .gp-shelf-card {
        padding: 10px;
    }

    .gp-shelf-img-box {
        height: 120px;
    }

    .gp-shelf-product-title {
        font-size: 13px;
        min-height: 34px;
    }

    .gp-shelf-actions {
        grid-template-columns: 1fr;
    }
}
