:root {
    --primary-bg: #FDF5F6; /* Blush Pink (from index.html) */
    --secondary-bg: #F2D5D9; /* Petal Pink (from index.html) */
    --primary-text: #4A3B3D; /* Ash Brown (from index.html) */
    --accent-salmon: #C88E81; /* Muted Dusty Rose / Terracotta */
    --accent-teal: #7CAFBA; /* Teal / Sage Green from banner */
    --accent-gold: #D4AF37;
    --charcoal: var(--primary-text);
    --rose-gold: var(--accent-salmon);
    --metallic-gold: var(--accent-gold);
    --cream-white: var(--primary-bg);
    --soft-peach: var(--secondary-bg);
    --pastel-pink: #FDF8F1;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 15px 35px rgba(44, 62, 80, 0.08); /* Darker shadow for premium contrast */
    
    /* New alternating pinks */
    --light-pink: var(--primary-bg);
    --dark-pink: var(--secondary-bg);
}

.bg-light-pink { background-color: var(--light-pink) !important; }
.bg-dark-pink { background-color: var(--dark-pink) !important; }

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

body {
    background-color: var(--primary-bg);
    color: var(--primary-text);
    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(253, 248, 241, 0.4), transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(253, 235, 208, 0.3), transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(124, 175, 186, 0.05), 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: 1.2rem 5%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: padding 0.5s ease, box-shadow 0.5s ease;
    background-color: var(--primary-bg);
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.05);
}

header.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.05);
}

.header-top {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--charcoal);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

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

header.scrolled .logo {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

header nav a {
    color: var(--charcoal);
    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;
}

/* --- Dropdown Menu --- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-chevron {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(253, 245, 246, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 0.75rem 0;
    min-width: 200px;
    list-style: none;
    box-shadow: 0 20px 50px rgba(74, 59, 61, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 2000;
    gap: 0;
}

/* Arrow pointer */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: rgba(253, 245, 246, 0.92);
    border-left: 1px solid rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--charcoal);
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
    border-radius: 8px;
    margin: 2px 8px;
}

.dropdown-menu li a i {
    font-size: 0.85rem;
    color: var(--rose-gold);
    width: 16px;
    text-align: center;
    transition: color 0.25s ease;
}

.dropdown-menu li a:hover {
    background: rgba(200, 142, 129, 0.12);
    color: var(--rose-gold) !important;
    padding-left: 1.8rem;
}

.dropdown-menu li a:hover i {
    color: var(--metallic-gold) !important;
}




/* Mother's Day Animations */
@keyframes floral-sway {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes petal-fall {
    0% { transform: translateY(-10vh) translateX(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(110vh) translateX(20px) rotate(360deg); opacity: 0; }
}

@keyframes heart-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.floating-element {
    position: absolute;
    z-index: 3;
    color: var(--rose-gold);
    font-size: 2.5rem;
    opacity: 0.6;
    filter: drop-shadow(0 5px 15px rgba(183, 110, 121, 0.2));
    pointer-events: none;
    animation: floral-sway 6s ease-in-out infinite;
}

.floral-1 { top: 15%; right: 10%; animation-delay: 0s; color: #FFB7B2; } 
.floral-2 { bottom: 25%; left: 8%; animation-delay: -1s; color: var(--rose-gold); } 
.floral-3 { top: 35%; left: 18%; animation-delay: -2s; color: var(--metallic-gold); }
.floral-4 { bottom: 15%; right: 20%; animation-delay: -3s; color: #FFDAC1; } 



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

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

/* 4-Item Grid for Sliders */
.grid-4-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .grid-4-items { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .grid-4-items { grid-template-columns: 1fr; }
}

.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 (Editorial) */
.hero-editorial {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-editorial-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.hero-editorial-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: slowZoom 20s ease-out forwards;
}

.hero-editorial-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 2;
}

.hero-editorial-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    padding: 40px 5% 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-editorial-title {
    margin-top: 5vh;
    text-align: center;
}

.hero-editorial-sub {
    color: var(--metallic-gold, #CFB53B);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-editorial-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    color: white;
    font-weight: 400;
    text-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.hero-editorial-title h1 span {
    font-size: 6.5rem;
    font-style: italic;
    font-weight: 700;
    color: var(--metallic-gold, #CFB53B);
    display: block;
    margin-top: -5px;
}

.hero-editorial-bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.8rem;
    margin-bottom: 5vh;
}

.hero-editorial-body {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 800px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-editorial-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-editorial {
    background: white;
    color: black;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-editorial i {
    transition: transform 0.4s ease;
}

.btn-editorial:hover {
    background: var(--metallic-gold, #CFB53B);
    color: white;
}

.btn-editorial:hover i {
    transform: translateX(5px);
}

.btn-editorial-outline {
    background: transparent;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.4s ease;
}

.btn-editorial-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@media (max-width: 1024px) {
    .hero-editorial-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .hero-editorial-body {
        max-width: 100%;
    }
    .hero-editorial-title h1 { font-size: 3.5rem; }
    .hero-editorial-title h1 span { font-size: 5rem; }
}

@media (max-width: 768px) {
    .hero-editorial { margin-top: 0; height: 100vh; }
    .hero-editorial-title { margin-top: 5vh; }
    .hero-editorial-title h1 { font-size: 2.2rem; }
    .hero-editorial-title h1 span { font-size: 3.2rem; }
    .hero-editorial-actions { flex-direction: column; width: 100%; }
    .btn-editorial, .btn-editorial-outline { width: 100%; justify-content: center; text-align: center; }
}

/* 2.5 Stories Section */
.story-section {
    background-color: var(--secondary-bg);
    padding: 8rem 5%;
    position: relative;
}

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

.story-content h2 {
    font-size: 3.5rem;
    color: var(--primary-text);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.story-divider {
    width: 80px;
    height: 3px;
    background: var(--accent-salmon);
    margin: 0 auto 40px;
}

.story-content p {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--primary-text);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--accent-salmon);
    color: #ffffff;
    padding: 1.25rem 3.5rem;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 12px; /* Updated border-radius as per guidelines */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 15px 35px rgba(200, 142, 129, 0.2);
    font-family: 'Montserrat', sans-serif;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(200, 142, 129, 0.35);
    background: #B57E70; /* Slightly darker shade for hover */
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--accent-salmon);
    padding: 1.2rem 3.2rem;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid var(--accent-salmon);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-outline-gold:hover {
    background: var(--accent-salmon);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(200, 142, 129, 0.2);
}

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

/* 3. Trust Bar */
.trust-bar {
    background: linear-gradient(90deg, #FDF8F1, #FDEBD0, #7CAFBA, #EFB39B);
    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.7);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-decoration: none; /* For <a> tags */
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.trust-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 8px 20px rgba(74, 59, 61, 0.12);
    color: var(--rose-gold);
}

.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: heart-pulse 2s ease-in-out infinite;
}

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

.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 floral element 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);
}

/* 5.5 Celebrate Banner (NEW) */
.celebrate-banner {
    display: flex;
    align-items: center;
    background-color: transparent; /* Removed so it blends beautifully with the pink section */
    margin: 2rem 0 4rem;
    position: relative;
    /* Removed heavy drop-shadow and border-radius to let it merge naturally */
}

.cb-content {
    flex: 1;
    padding: 5rem 4rem;
    z-index: 2;
}

.cb-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    color: #9A7070; /* Mauve/Dusty Rose */
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.cb-text {
    font-size: 1.1rem;
    color: #2D3748;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 90%;
}

.cb-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cb {
    padding: 1.2rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid transparent;
}

.btn-cb-primary {
    background-color: #9A7070;
    color: white;
    border-color: rgba(255,255,255,0.4);
}

.btn-cb-primary:hover {
    background-color: #835f5f;
    color: white;
}

.btn-cb-secondary {
    background-color: #4A3B3D;
    color: white;
    border-color: rgba(255,255,255,0.2);
}

.btn-cb-secondary:hover {
    background-color: #382b2d;
    color: white;
}

.cb-image-wrapper {
    flex: 1;
    min-width: 45%; /* slightly less than half to give text room */
    position: relative;
    display: flex;
    height: 100%;
    align-self: stretch;
}

.cb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mix-blend-mode: multiply; /* Extremely important: Allows the photo's beige background to naturally tint and blend into the pink wrapper! */
    mask-image: linear-gradient(to right, transparent, black 15%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%);
}

@media (max-width: 1024px) {
    .celebrate-banner { flex-direction: column; margin: 2rem 5%; }
    .cb-image-wrapper { width: 100%; min-width: 100%; height: 400px; }
    .cb-image { mask-image: linear-gradient(to bottom, transparent, black 15%); -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%); }
    .cb-content { padding: 3rem; text-align: center; }
    .cb-buttons { justify-content: center; }
    .cb-text { margin: 0 auto 2.5rem; }
}

@media (max-width: 768px) {
    .cb-title { font-size: 2rem; }
    .cb-content { padding: 2.5rem 1.5rem; }
    .btn-cb { width: 100%; text-align: center; border-radius: 4px !important; margin-bottom: 0.5rem; }
    .cb-buttons { flex-direction: column; gap: 0.2rem; }
    .cb-image-wrapper { height: 300px; }
}

/* 6. Featured Collection */
.collection {
    background-color: var(--secondary-bg); /* Use soft peach for section contrast */
}

.product-carousel {
    /* Styles are handled by .carousel-container */
    padding-bottom: 2rem;
}

.product-carousel .product-card {
    /* Desktop: 4 columns. Gap is 2rem. 4 items have 3 gaps = 6rem. Width = calc((100% - 6rem) / 4) */
    flex: 0 0 calc((100% - 6rem) / 4);
    min-width: calc((100% - 6rem) / 4);
}

.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(44, 62, 80, 0.1);
    border-color: var(--accent-teal);
}

/* Mother's Day Heart/Petal Badge */
.mother-day-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--rose-gold);
    color: white;
    padding: 15px;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%; /* Slightly more heart/petal shaped */
    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: 75px;
    height: 85px;
    text-align: center;
    line-height: 1.1;
    transform: rotate(-10deg);
}

.mother-day-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;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.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(--accent-salmon);
    color: var(--accent-salmon);
    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: 12px; /* Synchronized with .btn-gold */
    font-family: 'Montserrat', sans-serif;
}

.btn-outline:hover {
    background-color: var(--accent-salmon);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(200, 142, 129, 0.4);
}

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

/* Custom 4-Column Block (Based on Image Request) */
.custom-4col-section {
    background-color: var(--primary-bg);
}

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

.col-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.col-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 1.5rem;
    background-color: var(--secondary-bg);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s ease, border-color 0.6s ease;
}

.col-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(44, 62, 80, 0.1);
    border-color: var(--accent-teal);
}

.col-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    color: var(--charcoal);
    font-family: 'Montserrat', sans-serif;
}

.col-desc {
    font-size: 0.95rem;
    color: #4A5568;
    margin-bottom: 2rem;
    line-height: 1.8;
    padding: 0 10px;
}

.btn-shop {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--accent-salmon);
    color: var(--accent-salmon);
    background-color: transparent;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: auto;
    font-family: 'Montserrat', sans-serif;
}

.btn-shop:hover {
    background-color: var(--accent-salmon);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(200, 142, 129, 0.4);
}

@media (max-width: 1024px) {
    .grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media (max-width: 600px) {
    .grid-4col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ------------------------------------------------ */

/* 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 {
    display: block; /* Essential for <a> tags */
    text-decoration: none;
    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, 248, 241, 0.9), rgba(253, 248, 241, 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: var(--secondary-bg); /* Dusty Rose */
    display: flex;
    align-items: center;
    gap: 4rem;
    overflow: hidden;
}

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

.gwp-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.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-wrapper {
    position: relative;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--rose-gold);
    border-radius: 50%;
    color: var(--rose-gold);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: var(--metallic-gold);
    color: white;
    border-color: var(--metallic-gold);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -25px;
}

.carousel-nav.next {
    right: -25px;
}

@media (max-width: 1024px) {
    .carousel-nav.prev { left: -10px; }
    .carousel-nav.next { right: -10px; }
}

@media (max-width: 768px) {
    /* Mobile standard UX: Hide arrows to prevent them from obscuring content. Users intuitively swipe instead. */
    .carousel-nav {
        display: none;
    }
}

.carousel-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2.5rem 0.5rem;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-height: 480px; /* Force minimum height for content reliability */
    align-items: stretch;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.accessory-card {
    flex: 0 0 calc(25% - 1.5rem); /* Desktop: 4 items per row */
    width: calc(25% - 1.5rem);
    background: #ffffff !important;
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: none;
    opacity: 1 !important;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .accessory-card {
        flex: 0 0 calc(50% - 1rem); /* Tablet: 2 items */
        width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .accessory-card {
        flex: 0 0 calc(85% - 2rem);
        width: calc(85% - 2rem);
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }
}

.accessory-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(234, 218, 203, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.accessory-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.accessory-card:hover::before {
    opacity: 1;
}

.accessory-img {
    width: 90%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 2rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
    mix-blend-mode: multiply;
}

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

@media (max-width: 768px) {
    .accessory-img {
        height: 180px; 
        width: 100%;
    }
}

.accessory-card .gwp-tag {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.accessory-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.accessory-card .price-new {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    color: var(--charcoal);
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-bg);
    border-radius: 50px;
    margin-top: auto;
    cursor: pointer;
    transition: all 0.4s ease;
    width: auto;
    position: relative;
    z-index: 2;
    border: none;
}

.accessory-card:hover .price-new {
    background-color: var(--charcoal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

.reveal.active {
    opacity: 1;
}

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

.review-carousel .review-card {
    /* Desktop: 4 columns. Gap is 2rem. 4 items have 3 gaps = 6rem. Width = calc((100% - 6rem) / 4) */
    flex: 0 0 calc((100% - 6rem) / 4);
    min-width: calc((100% - 6rem) / 4);
}


.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(--secondary-bg);
    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. Pre-Footer Promo Blocks (NEW) */
.pre-footer-blocks {
    width: 100%;
    margin-bottom: 0;
    z-index: 2;
    position: relative;
}

.pf-block {
    padding: 3rem 5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pf-sage {
    background-color: var(--accent-bg); /* Match Ash Brown / Taupe */
    color: var(--charcoal);
}

.pf-cream {
    background-color: var(--cream-white); /* Match Brand Cream */
    color: var(--charcoal);
}

.pf-rose {
    background-color: var(--rose-gold); /* Match Brand Rose Gold */
    color: white;
}

.pf-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 600; /* Stronger weight for readability */
    max-width: 800px;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.pf-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
}

.pf-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
}

.pf-values {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pf-value-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.pf-value-item i {
    font-size: 1.3rem;
}

.pf-subtext {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.btn-pf-white {
    background: #ffffff;
    color: var(--rose-gold);
    padding: 1rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-pf-white:hover {
    background: #fdfdfd;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.pf-rose-leaf {
    position: absolute;
    bottom: -15px;
    right: 5%;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border-radius: 50% 0 50% 50%;
    transform: rotate(45deg);
}

/* Floral Decor before Footer */
.floral-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="%23FDF8F1"/></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; }
    .about-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    
    .product-carousel .product-card {
        flex: 0 0 calc((100% - 4rem) / 3); /* Tablet: 3 columns */
        min-width: calc((100% - 4rem) / 3);
    }
    
    .review-carousel .review-card {
        flex: 0 0 calc((100% - 4rem) / 3); /* Tablet: 3 columns */
        min-width: calc((100% - 4rem) / 3);
    }
    nav ul { gap: 2rem; }
}

@media (max-width: 768px) {
    header {
        padding: 1.2rem 5%;
    }
    .logo { font-size: 1.6rem; }
    header.scrolled { padding: 1.5rem 5% 1rem; } /* Giữ nguyên như header bình thường */
    header.scrolled .logo { font-size: 1.6rem; margin-bottom: 1rem; } /* Không đổi khi scroll */
    
    nav ul {
        display: flex;
        flex-wrap: wrap; /* Cho phép rớt xuống nhiều dòng trên Mobile */
        justify-content: center; /* Căn giữa các mục menu chiều ngang */
        align-items: center; /* Căn giữa các mục menu chiều dọc, tránh lệch dòng */
        gap: 1.2rem;
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
    }
    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;}

    .about-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 2.5rem;
    }
    
    .product-carousel .product-card {
        /* Mobile (<= 768px): 2 columns. Gap is 2rem. Width = calc((100% - 2rem) / 2) */
        flex: 0 0 calc((100% - 2rem) / 2);
        min-width: calc((100% - 2rem) / 2);
    }
    
    .review-carousel .review-card {
        /* Mobile (<= 768px): Show 1 column for testimonials as they have lots of text */
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .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: auto;
        border-radius: 12px;
    }
    .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; }

    .pf-quote { font-size: 1.2rem; }
    .pf-values { flex-direction: column; gap: 1.5rem; align-items: flex-start; margin: 0 auto; width: fit-content; }
    .btn-pf-white { width: auto; max-width: none; border-radius: 4px !important; }
    
    .big-bunny { display: none; }
    .floating-element { font-size: 2rem; }
    .floral-1 { top: 10%; right: 5%; }
    .floral-2 { bottom: 20%; left: 5%; }
    .floral-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; }
    .mother-day-badge { width: 60px; height: 80px; padding: 10px; font-size: 0.85rem;}
    .mother-day-badge span { font-size: 0.6rem; }
}
/* Picked Collections Grid */
.picked-collections-grid {
    display: grid;
    gap: 4rem;
}

/* ================================================= */
/* 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 */
    }

    .header-top {
        justify-content: center;
    }
    
    .hamburger {
        display: block;
    }

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

    header.scrolled .logo {
        font-size: 1.35rem;
    }
    
    #main-nav {
        display: none;
        width: 100%;
        margin-top: 1.5rem;
        padding-bottom: 1rem;
    }

    #main-nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
        width: 100%;
    }
    
    .dropdown-menu {
        position: relative;
        box-shadow: none;
        background: transparent;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transform: none !important;
        display: none;
        flex-direction: column;
        align-items: center;
        top: 0;
        left: 0;
        opacity: 1;
        visibility: visible;
        padding: 0.5rem 0 0 0;
        gap: 0.8rem;
    }

    .nav-dropdown.active .dropdown-menu {
        display: flex;
    }

    .nav-dropdown.active .nav-chevron {
        transform: rotate(180deg);
    }

    .dropdown-menu::before {
        display: none;
    }

    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-rebuilt {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
    }

    .hero-text-col {
        padding: 4rem 1.5rem 2rem;
        width: 100%;
        margin-top: 2rem;
    }

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

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

    .hero-body {
        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 */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .picked-collections-grid {
        gap: 1.5rem;
    }

    .picked-collections.section-padding {
        padding: 2rem 5%;
    }

    .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;
    }

    .btn-gold {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 1.2rem 2rem;
        display: flex;
        white-space: nowrap;
        border-radius: 12px !important;
        -webkit-border-radius: 12px !important;
        clip-path: none !important;
    }
}

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

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

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

    nav ul {
        justify-content: center; /* Đảm bảo căn giữa khi rớt dòng ở màn hình rất nhỏ */
        gap: 0.8rem;
    }

    .product-carousel .product-card {
        flex: 0 0 70vw; /* Return to 1.5 items per screen */
        min-width: 70vw;
    }

    .btn-gold, .btn-outline {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
        white-space: nowrap;
        border-radius: 12px !important;
        -webkit-border-radius: 12px !important;
    }
}
