/* --- 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: #2D5A27;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-primary {
    padding: 15px 35px;
    background: #2D5A27;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(45, 90, 39, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(45, 90, 39, 0.3);
    color: white !important;
}

.btn-outline {
    padding: 15px 35px;
    border: 2px solid #2D5A27;
    color: #2D5A27;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #2D5A27;
    color: white !important;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    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: #fcfcfc;
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.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.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.story-glass h2 {
    font-size: 3rem;
    color: #2D5A27;
    margin-bottom: 20px;
}

.story-glass p {
    color: #444;
    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 */
.category-hero-section {
    padding: 10px 4% 0;
    background: var(--gp-bg);
    border-bottom: 1px solid rgba(45, 90, 39, 0.05);
    overflow: hidden;
}

.hero-header-wrap {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
}

.category-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 52px !important;
    color: #2D5A27 !important;
    margin: 0 0 10px 0 !important;
    letter-spacing: -1px;
}

.category-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.category-slider-outer {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.category-slider-outer .arrow-btn {
    position: absolute;
    top: 70px;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2D5A27;
    transition: all 0.3s ease;
    z-index: 10;
}

.category-slider-outer .arrow-btn:hover {
    background: #2D5A27;
    color: white;
    border-color: #2D5A27;
    transform: translateY(-50%) scale(1.1);
}

.category-slider-outer .arrow-btn.prev {
    left: 0;
}

.category-slider-outer .arrow-btn.next {
    right: 0;
}

.category-scroll-container {
    display: flex;
    gap: 35px;
    overflow-x: auto;
    padding: 10px 10px 30px;
    scroll-behavior: smooth;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.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.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-image-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.category-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-item-modern:hover .category-image-circle {
    border-color: #2D5A27;
    box-shadow: 0 15px 35px rgba(45, 90, 39, 0.15);
    transform: translateY(-5px);
}

.category-item-modern:hover .category-image-circle img {
    transform: scale(1.1);
}

.category-name {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #2D5A27 !important;
    text-align: center;
    transition: color 0.3s ease;
}

.category-item-modern:hover .category-name {
    color: #8A9A5B;
}

/* Offer Banner Section */
.offer-banner-section {
    padding: 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: 'Playfair Display', serif;
    font-size: 58px;
    line-height: 1;
    margin: 0 0 10px 0;
    color: #f7d08a;
}

.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: #f7d08a;
    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 */
.advanced-ad-banner {
    position: relative;
    width: 92%;
    max-width: 1400px;
    margin: 15px auto;
    height: 220px;
    background: linear-gradient(135deg, var(--gp-primary), #1a3a17);
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    display: flex;
}

.ad-slide-wrap {
    display: flex;
    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;
}

.ad-image-column {
    flex: 0 0 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ad-image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.ad-slide-wrap.active .ad-image-column img {
    transform: none;
}

.ad-image-column::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--gp-primary));
}

.ad-content-column {
    flex: 1;
    padding: 20px 60px;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 30px;
}

.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: 'Playfair Display', serif;
    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 Mosaic Section */
.brand-impact-section {
    padding: 80px 5%;
    background: radial-gradient(circle at 70% 30%, rgba(138, 154, 91, 0.1), transparent);
    overflow: hidden;
}

.brand-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 20px;
    grid-template-areas:
        "img-large img-large text-1 img-medium"
        "img-large img-large img-small text-2";
    max-width: 1400px;
    margin: 0 auto;
}

.impact-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.4s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
}

.impact-item.img-large {
    grid-area: img-large;
}

.impact-item.img-medium {
    grid-area: img-medium;
}

.impact-item.img-small {
    grid-area: img-small;
}

.impact-item.text-1 {
    grid-area: text-1;
    background-color: #F4F1EA;
    padding: 40px;
}

.impact-item.text-2 {
    grid-area: text-2;
    background-color: #5D3A2C;
    color: white;
    padding: 40px;
}

.impact-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.impact-item h3 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: inherit;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 5;
}

.impact-item.text-1 h3 {
    color: #2D5A27;
}

.impact-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 5;
}

.deco-shape-organic {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.shape-1 {
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: #E8DCC4;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.5;
}

.shape-2 {
    bottom: -30px;
    left: 20px;
    width: 120px;
    height: 120px;
    background: #F4A261;
    border-radius: 30% 70% 70% 30% / 50% 60% 40% 50%;
    opacity: 0.4;
}

/* --- Astra Theme Layout Overrides (Home Only) --- */
.home.ast-header-break-point .site-header,
.home .ast-container,
.home .site-content,
.home .site-main {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.home .ast-container {
    display: block !important;
}


#home-rebuild-root {
    width: 100%;
    flex: 1;
    display: block;
}

.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-section {
        padding: 10px 5% !important;
    }

    /* Brand Impact Mosaic Fixes */
    .brand-impact-grid {
        grid-template-columns: 1.1fr 0.9fr;
        grid-template-rows: repeat(2, 170px);
        grid-template-areas:
            "img-large text-1"
            "img-large text-2";
        gap: 12px;
    }

    .impact-item.img-medium,
    .impact-item.img-small {
        display: none !important;
    }

    .impact-item {
        height: 100% !important;
    }

    .impact-item.text-1,
    .impact-item.text-2 {
        height: auto !important;
        padding: 15px 10px;
    }

    .impact-item.text-1 h3,
    .impact-item.text-2 h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .impact-item.text-1 p,
    .impact-item.text-2 p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .impact-item h3 {
        font-size: 1.8rem;
    }

    /* 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;
    }
}

/* Trust Marquee Section */
.trust-marquee-section {
    background: #FAFF00;
    padding: 8px 0;
    margin-bottom: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    min-height: 80px;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 40s linear infinite;
    gap: 100px;
    padding-left: 0;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 15px;


}

.marquee-icon {
    font-size: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 1em !important;
    height: 1em !important;
}

.marquee-icon img.emoji {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    margin: 0 !important;
    object-fit: contain;
}

.marquee-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #2D5A27;
    /* Dark Green */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.trust-marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .trust-marquee-section {
        padding: 6px 0;
        min-height: 50px;
    }

    .marquee-text {
        font-size: 11px;
    }

    .marquee-icon {
        font-size: 24px;
    }

    .marquee-track {
        gap: 40px;
    }
}

/* Trust Impact Section */
.trust-impact-section {
    background-color: #FEF4E8;
    /* Light Cream */
    padding: 60px 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: #2D5A27;
    line-height: 1.1;
    font-weight: 400;
}

.impact-text-content .count {
    font-size: 64px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #2D5A27;
    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: 100px 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: #fff;
    padding: 20px 0;
    margin: -20px 0;
    border-radius: 0;
    position: relative;
    z-index: 5;
    font-weight: 700;
    box-shadow: 0 0 30px rgba(45, 90, 39, 0.2);
}

.comp-row:not(.header):hover .comp-col.gp-highlight {
    background: #1e3d1a;
    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: 80px 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;
}