/* ===================================================
   LA MAISON DU CHOCOLAT — MAIN STYLESHEET
   =================================================== */

/* --- RESET & BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: #3D3335;
    background-color: #FDFAF6;
    -webkit-font-smoothing: antialiased;
    padding-top: 72px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

/* --- CSS VARIABLES --- */
:root {
    --primary: #B8A9C9;
    --primary-dark: #A394B8;
    --secondary: #F5C6AA;
    --accent: #A8D5BA;
    --accent2: #F4E1D2;
    --bg-primary: #FDFAF6;
    --bg-secondary: #FFF8F3;
    --text-primary: #3D3335;
    --text-secondary: #7A6B6E;
    --text-light: #A89598;
    --border: #E8DFE0;
    --white: #FFFFFF;
    --dark: #3D3335;
    --error: #D4726A;
    --shadow: 0 4px 20px rgba(61, 51, 53, 0.06);
    --shadow-hover: 0 8px 32px rgba(61, 51, 53, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --container: 1200px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

p { margin-bottom: 1.5em; color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }

.text-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
}

/* --- CONTAINER --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

/* --- SECTION PADDING --- */
.section {
    padding: 80px 0;
}
.section-sm { padding: 48px 0; }

/* --- SECTION LABELS --- */
.section-label {
    display: block;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}
.label-primary { color: var(--primary); }
.label-secondary { color: var(--secondary); }
.label-accent { color: var(--accent); }
.label-peach { color: var(--secondary); }

/* --- SECTION HEADINGS --- */
.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.section-heading h2 { margin-bottom: 16px; }
.section-heading p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 24px rgba(184, 169, 201, 0.35);
    transform: translateY(-1px);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--text-primary);
    padding: 12px 28px;
}
.btn-secondary:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    padding: 12px 0;
    text-decoration: underline;
    font-weight: 600;
}
.btn-ghost:hover { color: var(--text-primary); }

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-full { width: 100%; justify-content: center; }

/* --- HEADER --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    height: 72px;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(61, 51, 53, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.brand-link {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--text-primary);
    line-height: 1.2;
}

.brand-tagline {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--text-secondary);
    position: relative;
    padding-bottom: 4px;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--primary); }
.nav-link.active::after { width: 100%; }

.header-cta { flex-shrink: 0; }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 4px;
}

/* --- MOBILE MENU --- */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 8px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-nav-link {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 26px;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active { color: var(--primary); }

.mobile-nav-cta {
    margin-top: 16px;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.10;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 80px 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.8s ease-out 0.2s forwards;
}

@keyframes heroFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-divider {
    width: 120px;
    border: none;
    border-top: 2px dotted var(--border);
    margin: 0 auto 32px;
}

.trust-badges {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.trust-badge svg { color: var(--primary); }

/* --- PAGE HERO --- */
.page-hero {
    background-color: var(--bg-secondary);
    padding: 80px 0 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px;
}

.breadcrumb {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    display: block;
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); }

.page-hero h1 { margin-bottom: 20px; }
.page-hero .subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* --- BRAND INTRO (2-col) --- */
.brand-intro {
    background: var(--white);
}

.two-col {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 64px;
    align-items: center;
}

.two-col-reverse {
    grid-template-columns: 45fr 55fr;
}
.two-col-reverse .col-image { order: 2; }
.two-col-reverse .col-text { order: 1; }

.col-text h2 { margin-bottom: 24px; }

.col-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 8px solid var(--accent2);
    box-shadow: var(--shadow);
}

.col-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* Image placeholder */
.img-placeholder {
    background: var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 13px;
    font-family: 'Nunito Sans', sans-serif;
}
.img-placeholder svg { color: var(--text-light); opacity: 0.5; }

/* --- CATEGORY CARDS --- */
.categories-section {
    background: var(--bg-primary);
}

.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.category-card:hover .card-image img { transform: scale(1.04); }

.card-image-line {
    height: 3px;
    background: var(--primary);
}

.card-body {
    padding: 24px;
}

.card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.card-body p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}
.card-link:hover { gap: 10px; color: var(--primary-dark); }

/* --- WHY CHOOSE US --- */
.why-section {
    background: var(--bg-secondary);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.feature-icon-wrap {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-text p {
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

/* --- FEATURED PRODUCTS --- */
.products-showcase {
    background: var(--white);
}

.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.product-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.04); }

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: var(--white);
    z-index: 2;
}
.badge-green { background: var(--accent); }
.badge-peach { background: var(--secondary); }
.badge-lavender { background: var(--primary); }

.product-card-body {
    padding: 24px;
}

.product-card-body h3 {
    font-size: 1.125rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.product-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.product-card-body p {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.65;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 16px;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
    background: var(--bg-primary);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--primary);
    position: relative;
}

.testimonial-icon {
    color: var(--border);
    margin-bottom: 16px;
}

.testimonial-stars {
    font-size: 18px;
    color: #E8A87C;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.testimonial-author strong {
    display: block;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

/* --- INFO STRIP --- */
.info-strip {
    background: var(--dark);
    padding: 48px 0;
}

.info-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.info-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.info-strip-item svg { color: var(--secondary); }

.info-strip-item span {
    font-size: 14px;
    color: #E8DFE0;
    line-height: 1.5;
    font-family: 'Nunito Sans', sans-serif;
}

/* --- FINAL CTA --- */
.final-cta {
    background: var(--accent2);
    text-align: center;
}

.final-cta-content {
    max-width: 640px;
    margin: 0 auto;
}

.final-cta h2 { margin-bottom: 20px; }
.final-cta p { font-size: 1rem; margin-bottom: 32px; }

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- ABOUT STORY BLOCKS --- */
.story-block {
    padding: 64px 0;
    border-bottom: 1px solid var(--border);
}
.story-block:last-child { border-bottom: none; }

/* --- VALUE CARDS --- */
.values-section {
    background: var(--bg-primary);
}

.cards-grid-3-center {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.value-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.value-card p { font-size: 15px; margin: 0; }

/* --- WORKSHOP GALLERY --- */
.workshop-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 220px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.workshop-text {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.workshop-text h3 { margin-bottom: 16px; }
.workshop-text p { margin: 0; }

/* --- STATS SECTION --- */
.stats-section {
    background: var(--accent2);
    padding: 64px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3rem;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 8px;
    display: block;
}
.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
}

/* --- FILTER BUTTONS (PRODUCTS) --- */
.filter-section {
    background: var(--white);
    padding: 32px 0;
}

.filter-bar {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: transparent;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* --- PRODUCT CATEGORY SECTION --- */
.product-category-section {
    padding: 64px 0;
}

.product-category-section:nth-child(even) {
    background: var(--bg-primary);
}
.product-category-section:nth-child(odd) {
    background: var(--white);
}

.category-heading {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 40px;
}
.category-heading.border-peach { border-left-color: var(--secondary); }
.category-heading.border-mint { border-left-color: var(--accent); }

.category-heading h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}
.category-heading p {
    font-size: 15px;
    margin: 0;
    color: var(--text-secondary);
}

/* --- PRODUCT CATALOG CARDS --- */
.catalog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.catalog-card-image {
    height: 180px;
    overflow: hidden;
}
.catalog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.catalog-card:hover .catalog-card-image img { transform: scale(1.05); }

.catalog-card-body {
    padding: 20px 24px 24px;
}

.catalog-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.catalog-card-body p {
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.catalog-price {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

/* Gift cards (2-column) */
.cards-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.cards-grid-2 .catalog-card-image { height: 240px; }

/* --- ORDER INFO SECTION --- */
.order-info-section {
    background: var(--bg-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.step-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.step-item p { font-size: 14px; margin: 0; }

/* --- COLLECTION CARDS --- */
.collection-hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.collection-hero-image {
    height: 480px;
    overflow: hidden;
}
.collection-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-hero-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.collection-hero-content h2 { margin-bottom: 16px; }
.collection-hero-content p { font-size: 15px; margin-bottom: 24px; }

.collection-price {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.pill-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    font-family: 'Nunito Sans', sans-serif;
    margin-bottom: 20px;
}
.pill-mint { background: var(--accent); }
.pill-peach { background: var(--secondary); }
.pill-lavender { background: var(--primary); }

/* --- THEMATIC COLLECTION CARDS --- */
.collection-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.collection-card-image {
    height: 260px;
    overflow: hidden;
}
.collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.collection-card:hover .collection-card-image img { transform: scale(1.04); }

.collection-card-body {
    padding: 28px;
}
.collection-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.collection-card-body p {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.65;
}

/* --- PERSONALIZATION SECTION --- */
.personalization-section {
    background: var(--accent2);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.split-text h2 { margin-bottom: 16px; }
.split-text p { font-size: 15px; margin-bottom: 24px; }

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-primary);
    font-family: 'Nunito Sans', sans-serif;
}

.check-list svg { color: var(--accent); flex-shrink: 0; }

/* --- CONTACT FORM SECTION --- */
.contact-section {
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 40fr 60fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-wrap.icon-lavender { background: rgba(184,169,201,0.15); }
.contact-icon-wrap.icon-peach { background: rgba(245,198,170,0.15); }
.contact-icon-wrap.icon-mint { background: rgba(168,213,186,0.15); }
.contact-icon-wrap.icon-lavender svg { color: var(--primary); }
.contact-icon-wrap.icon-peach svg { color: var(--secondary); }
.contact-icon-wrap.icon-mint svg { color: var(--accent); }

.contact-info-text h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}
.contact-info-text p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    color: var(--text-secondary);
    white-space: pre-line;
}

.hours-block {
    margin-top: 8px;
}
.hours-block h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    margin-bottom: 12px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-secondary);
}
.hours-row:last-child { border-bottom: none; }

/* --- CONTACT FORM --- */
.contact-form-wrap {
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid var(--border);
}

.contact-form-wrap h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.contact-form-wrap .form-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(184, 169, 201, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-light); }

.form-textarea { resize: vertical; min-height: 140px; }

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A6B6E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.form-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-checkbox-label {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.form-checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

.form-gdpr-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
    display: block;
}

.form-error {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--error);
    font-size: 13px;
    margin-top: 6px;
    font-weight: 400;
}
.form-error svg { flex-shrink: 0; }

.input-error {
    border-color: var(--error) !important;
}

.form-success {
    background: rgba(168, 213, 186, 0.2);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: #2D7A50;
    font-size: 15px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- MAP SECTION --- */
.map-section {
    background: var(--bg-primary);
}

.map-container {
    border-radius: var(--radius-md);
    height: 400px;
    background: var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    overflow: hidden;
}

.map-placeholder-text { font-size: 15px; }

.map-info {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* --- FAQ ACCORDION --- */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--primary); }
.faq-question.active { color: var(--primary); }

.faq-icon { flex-shrink: 0; transition: transform 0.3s ease; }
.faq-question.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
    max-height: 400px;
}

.faq-answer-inner {
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* --- LEGAL PAGES --- */
.legal-page {
    background: var(--white);
    padding: 80px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 48px 0 16px;
    color: var(--text-primary);
}
.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
    font-size: 1.125rem;
    margin: 28px 0 12px;
    color: var(--text-primary);
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}
.legal-content ul li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 6px;
}

.legal-last-updated {
    display: inline-block;
    background: var(--accent2);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* --- SCROLL REVEAL --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- FOOTER --- */
.site-footer {
    background: var(--dark);
    padding: 64px 0 32px;
    color: #E8DFE0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-tagline {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-domain {
    font-size: 13px;
    color: #5A4D4F;
}

.footer-heading {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    font-size: 14px;
    color: #E8DFE0;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--secondary); }

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #E8DFE0;
    line-height: 1.5;
}

.footer-icon { color: var(--secondary); flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; }

.footer-divider {
    border: none;
    border-top: 1px solid #5A4D4F;
    margin-bottom: 24px;
}

.footer-legal {
    margin-bottom: 16px;
}
.footer-legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-size: 13px;
    color: var(--text-light);
    transition: color 0.2s;
}
.footer-legal-links a:hover { color: #E8DFE0; }

.footer-copyright p {
    text-align: center;
    font-size: 13px;
    font-weight: 300;
    color: #7A6B6E;
    margin: 0;
}

/* --- COMPACT FORM (Collections page) --- */
.compact-form {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow);
}
.compact-form h3 { font-size: 1.3rem; margin-bottom: 6px; }
.compact-form .form-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    display: block;
}

/* ===================================================
   RESPONSIVE
   =================================================== */

/* --- Large desktop (1200px+): all full width, handled above --- */

/* --- Small desktop / large tablet (992-1199px) --- */
@media (max-width: 1199px) {
    .cards-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .header-nav { gap: 20px; }
}

/* --- Tablet (768-991px) --- */
@media (max-width: 991px) {
    body { padding-top: 60px; }

    .site-header { height: 60px; }
    .header-inner { height: 60px; }
    .header-nav, .header-cta { display: none; }
    .hamburger { display: flex; }

    .section { padding: 48px 0; }
    .section-sm { padding: 32px 0; }

    .two-col,
    .two-col-reverse,
    .collection-hero-card,
    .split-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .two-col-reverse .col-image,
    .two-col-reverse .col-text { order: unset; }

    .collection-hero-image { height: 300px; }
    .collection-hero-content { padding: 32px; }

    .cards-grid-3,
    .cards-grid-3-center { grid-template-columns: repeat(2, 1fr); }
    .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .info-strip-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .hero-content h1 { font-size: 2.25rem; }
    .features-list { max-width: 100%; }
    .cards-grid-2 { grid-template-columns: 1fr; }
}

/* --- Large mobile (576-767px) --- */
@media (max-width: 767px) {
    .container { padding: 0 20px; }
    .section { padding: 48px 0; }

    .cards-grid-3,
    .cards-grid-3-center,
    .cards-grid-4 { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; }

    .hero-buttons, .cta-buttons { flex-direction: column; align-items: center; }
    .trust-badges { flex-direction: column; align-items: center; gap: 16px; }

    .section-heading { margin-bottom: 36px; }
    .feature-row { flex-direction: column; align-items: flex-start; gap: 16px; }

    .contact-form-wrap { padding: 24px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Extra small mobile (<576px) --- */
@media (max-width: 575px) {
    .hero-content h1 { font-size: 1.75rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .info-strip-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .filter-bar { gap: 8px; }
    .filter-btn { padding: 8px 16px; font-size: 13px; }
    .brand-name { font-size: 18px; }
    .contact-layout { gap: 24px; }
    .footer-legal-links { flex-direction: column; gap: 8px; }
}
