:root {
    --cream-white: #FDFBF7;
    --soft-mint: #E8F5E9;
    --pastel-pink: #FEF5F7;
    --soft-blue: #E3F2FD;
    --pastel-yellow: #FFF9C4;
    --soft-peach: #FFF0E6;
    --charcoal: #1A202C; /* Deeper charcoal for better contrast */
    --metallic-gold: #D4AF37;
    --rose-gold: #B76E79;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--cream-white);
    color: var(--charcoal);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none; /* Hide default cursor for custom one */
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(254, 245, 247, 0.8), transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(227, 242, 253, 0.6), transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(232, 245, 233, 0.7), transparent 50%);
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    background-color: var(--metallic-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--metallic-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease, opacity 0.3s ease;
}

.cursor-hover {
    transform: scale(1.5);
    background-color: rgba(212, 175, 55, 0.2);
    border: none;
}

p {
    margin-bottom: 1.5rem;
}

/* 1. Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 5%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background-color 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
    background-color: transparent;
}

header.scrolled {
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.logo {
    font-size: 2.2rem;
    letter-spacing: 0.25em;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    font-weight: 700;
    text-transform: uppercase;
}

header:not(.scrolled) .logo, 
header:not(.scrolled) nav a {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

header.scrolled .logo {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--charcoal);
    text-shadow: none;
}

header.scrolled nav a {
    color: var(--charcoal);
    text-shadow: none;
    font-weight: 600;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3.5rem;
}

nav a {
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.4s ease-in-out;
    font-weight: 500;
}

nav a:hover {
    color: var(--metallic-gold) !important;
}

/* Easter Animations */
@keyframes bunny-hop {
    0% { transform: translateY(0); }
    20% { transform: translateY(-15px); }
    40% { transform: translateY(0); }
    60% { transform: translateY(-8px); }
    80% { transform: translateY(0); }
    100% { transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(15deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-reverse {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(20px) rotate(-15deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes hop-across {
    0% { transform: translateX(-100vw) translateY(0) scaleX(-1); }
    10% { transform: translateX(-60vw) translateY(-60px) scaleX(-1); }
    20% { transform: translateX(-20vw) translateY(0) scaleX(-1); }
    30% { transform: translateX(20vw) translateY(-60px) scaleX(-1); }
    40% { transform: translateX(60vw) translateY(0) scaleX(-1); }
    50% { transform: translateX(100vw) translateY(-60px) scaleX(-1); }
    100% { transform: translateX(100vw) translateY(0); }
}

.floating-egg {
    position: absolute;
    z-index: 3;
    color: var(--metallic-gold);
    font-size: 3rem;
    opacity: 0.9;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    pointer-events: none;
}

.egg-1 { top: 15%; right: 10%; animation: float 7s ease-in-out infinite; color: #FFB7B2; font-size: 4rem; } 
.egg-2 { bottom: 25%; left: 8%; animation: float-reverse 9s ease-in-out infinite; font-size: 3.5rem; color: #E2F0CB; } 
.egg-3 { top: 35%; left: 18%; animation: float 8s ease-in-out infinite; font-size: 2.5rem; color: var(--metallic-gold); }
.egg-4 { bottom: 15%; right: 20%; animation: float-reverse 10s ease-in-out infinite; font-size: 3rem; color: #FFDAC1; } 

.big-bunny {
    position: absolute;
    bottom: 30px;
    left: -100px;
    font-size: 8rem; /* Made bunny even bigger */
    color: #ffffff;
    z-index: 4;
    animation: hop-across 12s linear infinite; /* Faster hop */
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3));
    pointer-events: none;
}

/* Setup generic section styles */
.section-padding {
    padding: 8rem 5%;
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    cursor: default;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.section-header p {
    color: var(--rose-gold);
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 1rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--rose-gold);
    margin: 2rem auto 0;
    border-radius: 5px;
}

/* 2. Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1522336704952-4a572dbcd177?q=80&w=2000');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(45, 55, 72, 0.3), rgba(254, 245, 247, 0.6) 70%, var(--cream-white));
    z-index: 1;
}

.hero-bg-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23D4AF37" fill-opacity="0.08"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    z-index: 2;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.7;
    animation: float 15s infinite ease-in-out;
    pointer-events: none;
}
.glow-1 { top: -20%; left: -10%; width: 50vw; height: 50vw; background: var(--soft-mint); }
.glow-2 { bottom: -10%; right: -10%; width: 60vw; height: 60vw; background: var(--pastel-pink); animation-delay: -5s; }
.glow-3 { top: 30%; left: 40%; width: 45vw; height: 45vw; background: var(--pastel-yellow); animation-delay: -10s; }

.hero-content {
    position: relative;
    z-index: 5;
    padding: 0 20px;
    margin-top: 6rem;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    padding: 4rem 3rem;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.hero h1 {
    font-size: 4.8rem;
    margin-bottom: 1rem;
    color: var(--charcoal); 
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero h1 span {
    font-style: italic;
    color: var(--rose-gold);
    text-transform: none;
    font-size: 5.5rem;
    display: block;
}

.hero p {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
    color: var(--charcoal);
    text-transform: uppercase;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--pastel-yellow), var(--metallic-gold));
    color: var(--charcoal);
    padding: 1.25rem 3.5rem;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 9999px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    font-family: 'Montserrat', sans-serif;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--metallic-gold), var(--pastel-yellow));
}

.btn-gold i {
    font-size: 1.2rem;
    color: var(--charcoal);
    animation: bunny-hop 2s ease-in-out infinite;
}

/* 3. Trust Bar */
.trust-bar {
    background: linear-gradient(90deg, var(--pastel-pink), var(--soft-blue), var(--soft-mint), var(--pastel-yellow));
    background-size: 300% 300%;
    animation: gradient-shift 10s ease infinite;
    padding: 1.5rem 0;
    position: relative;
    z-index: 10;
    border-bottom: 2px solid white;
    border-top: 2px solid white;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.trust-bar-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    background: rgba(255, 255, 255, 0.6);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.trust-item i {
    font-size: 1.4rem;
    color: var(--rose-gold);
}

/* Festive Banner */
.festive-banner {
    background-color: var(--metallic-gold);
    color: #fff;
    text-align: center;
    padding: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.festive-banner i {
    margin: 0 10px;
    animation: bunny-hop 2s ease infinite;
}

/* 4. About the Campaign Section */
.about-section {
    background-color: var(--cream-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Add a decorative Easter egg behind image */
.about-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 200px;
    background: var(--pastel-yellow);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    z-index: -1;
    transform: rotate(-15deg);
    opacity: 0.5;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.1rem;
    color: #4A5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--pastel-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #718096;
}

/* 5. Parallax Promo Banner */
.promo-banner {
    background-image: url('https://images.unsplash.com/photo-1596464716127-f2a82984de30?q=80&w=2000'); /* Luxury flowers/spring */
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 8rem 5%;
    text-align: center;
    color: white;
}

.promo-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(45, 55, 72, 0.6);
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.promo-content i {
    font-size: 4rem;
    color: var(--metallic-gold);
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

.promo-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.promo-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
}

.promo-code {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border: 2px dashed var(--metallic-gold);
    padding: 1rem 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    border-radius: 10px;
    color: var(--metallic-gold);
}

/* 6. Featured Collection */
.collection {
    background-color: var(--soft-peach); /* Gives a different alternating background */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: #ffffff;
    border-radius: 20px;
    padding-bottom: 2.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 2px solid var(--soft-mint);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(183, 110, 121, 0.2);
    border-color: var(--rose-gold);
}

/* Easter Egg Discount Badge */
.easter-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--rose-gold);
    color: white;
    padding: 15px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(183, 110, 121, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 70px;
    height: 90px;
    text-align: center;
    line-height: 1.1;
    transform: rotate(15deg);
}

.easter-badge span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-image-container {
    width: 100%;
    aspect-ratio: 4/4;
    overflow: hidden;
    background-color: var(--soft-beige);
    margin-bottom: 2rem;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image {
    transform: scale(1.08); 
}

.product-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--charcoal);
    letter-spacing: 0.05em;
    font-weight: 700;
}

.product-price {
    margin-bottom: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.price-old {
    color: #A0AEC0;
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 500;
}

.price-new {
    color: var(--charcoal);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.btn-outline {
    display: inline-block;
    padding: 1.2rem 3rem;
    border: 2px solid var(--rose-gold);
    color: var(--rose-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
    width: 100%;
    border-radius: 9999px;
    font-family: 'Montserrat', sans-serif;
}

.btn-outline:hover {
    background-color: var(--rose-gold);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(183, 110, 121, 0.4);
}

/* ------------------------------------------------ */
/* NEW SECTIONS ADDED FOR LENGTH & CONVERSION       */
/* ------------------------------------------------ */

/* A. The Gifting Guide (Bento Grid) */
.gifting-guide {
    background-color: var(--cream-white);
    padding-bottom: 4rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 1.5rem;
}

.bento-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bento-item:hover img {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: white;
    z-index: 2;
}

.bento-item.contain-bg {
    background-color: #ffffff;
}

.bento-item.contain-bg img {
    object-fit: contain;
    padding: 2rem;
}

.bento-item.large { grid-column: span 2; grid-row: span 2; }
.bento-item.wide { grid-column: span 2; }

.bento-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.bento-overlay p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pastel-yellow);
    margin-bottom: 0;
}

/* B. Brand Value Proposition icons */
.brand-values {
    background-color: var(--soft-peach);
    border-top: 2px dashed var(--rose-gold);
    border-bottom: 2px dashed var(--rose-gold);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.value-card i {
    font-size: 3rem;
    color: var(--metallic-gold);
    margin-bottom: 1.5rem;
}

.value-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.value-card p {
    font-size: 0.9rem;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 0;
}

/* C. Heritage Section (The Art of the Maison) */
.heritage-section {
    background: linear-gradient(rgba(253, 251, 247, 0.9), rgba(253, 251, 247, 0.9)), 
                url('https://images.unsplash.com/photo-1513519245088-0e12902e35ca?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.heritage-content {
    max-width: 900px;
    margin: 0 auto;
}

.heritage-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.heritage-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #4A5568;
    margin-bottom: 3rem;
}

/* D. Gift-With-Purchase (GWP) */
.gwp-section {
    background-color: #FEF5F7; /* Pastel pink */
    display: flex;
    align-items: center;
    gap: 4rem;
    overflow: hidden;
}

.gwp-image {
    flex: 1;
    position: relative;
}

.gwp-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0 50px 50px 0;
}

.gwp-info {
    flex: 1;
    padding-right: 5%;
}

.gwp-tag {
    color: var(--rose-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    display: block;
}

.gwp-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.gwp-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.gwp-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.gwp-list li i {
    color: var(--metallic-gold);
}

/* E. Accessories Carousel */
.accessories-section {
    background-color: var(--cream-white);
    overflow: hidden;
}

.carousel-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.carousel-container::-webkit-scrollbar {
    height: 4px;
}

.carousel-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.carousel-container::-webkit-scrollbar-thumb {
    background: var(--metallic-gold);
    border-radius: 10px;
}

.accessory-card {
    min-width: 300px;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
    transition: transform 0.3s ease;
}

.accessory-card:hover {
    transform: translateY(-10px);
}

.accessory-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

/* Scroll Reveal Utilities */
.reveal {
    opacity: 0;
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
}

/* 7. Testimonials Section */
.testimonials {
    background-color: var(--cream-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.review-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
    position: relative;
}

.review-card::before {
    content: '\201C'; /* Quotes */
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 6rem;
    font-family: 'Playfair Display', serif;
    color: var(--soft-peach);
    line-height: 1;
}

.stars {
    color: var(--metallic-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #4A5568;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.reviewer-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--charcoal);
}

.reviewer-title {
    font-size: 0.8rem;
    color: var(--rose-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* 8. Newsletter / CTA Section */
.newsletter {
    background-color: var(--pastel-pink);
    text-align: center;
    padding: 6rem 5% 12rem; /* Extra padding at bottom for wavy decor */
    position: relative;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    margin-top: 2.5rem;
    box-shadow: 0 15px 35px rgba(183, 110, 121, 0.15);
    border-radius: 50px;
    overflow: hidden;
    background: white;
    padding: 5px;
}

.newsletter-input {
    flex-grow: 1;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    background: transparent;
}

/* Wavy Easter Decor before Footer */
.easter-decor-footer {
    height: 120px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" preserveAspectRatio="none"><path d="M0,20 L0,10 Q10,0 20,10 T40,10 T60,10 T80,10 T100,10 L100,20 Z" fill="%23FEF5F7"/></svg>');
    background-size: 100% 100%;
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    z-index: 1;
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
    .hero h1 { font-size: 4rem; }
    .hero h1 span { font-size: 4.5rem; }
    .product-grid, .about-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .testimonial-grid .review-card:last-child { display: none; } /* hide 3rd on tablet */
    nav ul { gap: 2rem; }
}

@media (max-width: 768px) {
    header {
        padding: 1.2rem 5%;
    }
    .logo { font-size: 1.6rem; }
    header.scrolled .logo { font-size: 1.4rem; }
    
    nav ul {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 1.2rem;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        width: 100vw;
        padding-left: 5%;
        padding-right: 5%;
    }
    nav ul::-webkit-scrollbar { display: none; } /* Clean look */
    nav a { font-size: 0.65rem; white-space: nowrap; }
    
    .section-padding { padding: 4rem 5%; } /* Tighter sections on mobile */
    .section-header { margin-bottom: 3rem; }
    .section-header h2 { font-size: 2.2rem; margin-bottom: 0.5rem; }
    .section-header p { font-size: 0.8rem; }
    
    .hero h1 { font-size: 2.8rem; }
    .hero h1 span { font-size: 3.2rem; display: block; margin-top: 0.2rem; }
    .hero p { margin-bottom: 2rem; font-size: 0.85rem; }
    .btn-gold { padding: 1rem 2rem; font-size: 0.8rem; }
    
    .trust-bar { padding: 1rem 0; }
    .trust-bar-container { flex-direction: column; align-items: stretch; gap: 1rem; padding: 0 1.5rem; }
    .trust-item { justify-content: flex-start;  font-size: 0.75rem; padding: 12px 15px;}

    .product-grid, .about-grid, .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 2.5rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 1.5rem;
        width: 100%;
    }
    .bento-item { height: 350px; grid-column: span 1 !important; grid-row: span 1 !important; }
    .bento-item.large { height: 450px; }
    .bento-item.wide { height: 350px; }
    .bento-item.contain-bg img { padding: 3rem; }
    .bento-overlay { padding: 1.5rem; }
    .bento-overlay h3 { font-size: 1.5rem; }
    
    .values-grid { grid-template-columns: 1fr; gap: 3rem; }

    /* GWP & Heritage Mobile Adjustments */
    .gwp-section {
        flex-direction: column;
        gap: 0;
    }
    .gwp-image img {
        height: 400px;
        border-radius: 0 0 50px 50px;
    }
    .gwp-info {
        padding: 4rem 10% !important;
        text-align: center;
    }
    .gwp-list {
        display: inline-block;
        text-align: left;
        margin-bottom: 2.5rem;
    }
    .gwp-title { font-size: 2.2rem; }

    .heritage-title { font-size: 2.4rem; padding: 0 5%; }
    .heritage-text { font-size: 1rem; line-height: 1.8; padding: 0 5%; }
    .heritage-section img { border-radius: 20px; }

    .about-content h2 { font-size: 2.2rem; }
    .about-content p { font-size: 0.95rem; }
    .about-image { order: -1; } 
    
    .promo-banner { padding: 5rem 5%; }
    .promo-content h2 { font-size: 2rem; }
    .promo-content p { font-size: 1rem; }
    .promo-code { padding: 0.8rem 1rem; font-size: 1rem; }

    .newsletter { padding: 4rem 5% 10rem; }
    .newsletter h2 { font-size: 2.2rem; }
    .newsletter-form { flex-direction: column; background: transparent; box-shadow: none; border-radius: 0; padding: 0; gap: 1rem;}
    .newsletter-input { border-radius: 50px; background: white; padding: 1rem 1.5rem; text-align: center;}
    .newsletter-form .btn-gold { width: 100%; justify-content: center;}
    
    .big-bunny { font-size: 4rem; bottom: 40px;}
    .floating-egg { font-size: 2rem; }
    .egg-1 { top: 10%; right: 5%; }
    .egg-2 { bottom: 20%; left: 5%; }
    .egg-4 { display: none; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.4rem; }
    .hero h1 span { font-size: 2.8rem; }
    .festive-banner { font-size: 0.75rem; padding: 8px; }
    .trust-item { font-size: 0.7rem; }
    .product-card { border-radius: 15px; }
    .product-title { font-size: 1.15rem; }
    .easter-badge { width: 60px; height: 80px; padding: 10px; font-size: 0.85rem;}
    .easter-badge span { font-size: 0.6rem; }
}
/* ================================================= */
/* RESPONSIVE FIXES                                  */
/* ================================================= */

@media (max-width: 768px) {
    /* 1. Header & Logo Fix */
    header {
        padding: 1.5rem 5% 1rem; /* Reduce padding */
    }

    header:not(.scrolled) {
        position: relative; /* On mobile, let it flow so it doesn't overlap the banner */
        background-color: var(--charcoal); /* Default dark background for visibility */
    }

    .logo {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        letter-spacing: 0.15em;
    }

    header.scrolled .logo {
        font-size: 1.35rem;
    }

    nav ul {
        gap: 1.5rem; /* Reduce gap between links */
        justify-content: center;
        width: 100%;
    }

    nav a {
        font-size: 0.7rem; /* Slightly smaller text */
    }

    /* 2. Festive Banner Fix */
    .festive-banner {
        font-size: 0.75rem;
        padding: 10px 5%;
        line-height: 1.4;
    }

    /* 3. Hero Section Fix */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 8rem 0 4rem;
    }

    .hero-content {
        padding: 3rem 1.5rem;
        width: 90%;
        margin-top: 2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero h1 span {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* 4. Spacing Fixes */
    .section-padding {
        padding: 4rem 5%;
    }

    .section-header h2 {
        font-size: 2.4rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    /* 5. Gaps & Grid Fixes */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-item.large, 
    .bento-item.wide {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h1 span {
        font-size: 2.8rem;
    }

    nav ul {
        gap: 1rem;
        flex-wrap: wrap; /* Allow links to wrap to second line if needed */
    }
}
