/* ============================================
   MERVEILLEUSE BEAUTÉ — styles.css
   Matching the reference design
   ============================================ */

:root {
    --pink-bg: #f5d9d6;
    --pink-light: #fbe8e6;
    --pink-mid: #f0c8c4;
    --pink-dark: #e8b4b0;
    --red-accent: #b5354a;
    --red-dark: #8a2035;
    --text-dark: #3d1a24;
    --text-mid: #7a4050;
    --text-light: #a06070;
    --white: #ffffff;
    --off-white: #fdf6f4;
    --card-bg: #fefafa;
    font-family: 'Jost', system-ui, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--pink-bg);
    color: var(--text-dark);
    font-family: 'Jost', system-ui, sans-serif;
    overflow-x: hidden;
}

/* ---------- UTILITIES ---------- */
.script {
    font-family: 'Dancing Script', cursive;
}

/* ---------- TOP BAR ---------- */
.top-bar {
    background: #e2a0a8;
    color: var(--white);
    text-align: center;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 9px 16px;
}

/* ---------- SITE HEADER ---------- */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    padding: 18px 48px;
    gap: 20px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 160px;
}

.header-right {
    justify-content: flex-end;
}


.brand {
    text-align: center;
    flex: 1;
}

.logo-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--red-dark);
    letter-spacing: 0.02em;
    margin: 0;
}

.logo-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 2px;
}

/* ---------- MAIN NAV ---------- */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    background: var(--white);
    border-top: 1px solid #f0e0de;
    padding: 14px 48px;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--red-accent);
}


/* ---------- HERO ---------- */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--pink-light);
    min-height: 480px;
    overflow: hidden;
}

.hero-copy {
    padding: 60px 56px 60px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-pretitle {
    font-size: 1.25rem;
    color: var(--red-accent);
    margin-bottom: 14px;
}

.hero-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--red-dark);
    margin-bottom: 20px;
}

.hero-sub {
    color: var(--text-mid);
    font-size: 0.97rem;
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 30px;
}


/* ---------- HERO VISUAL ---------- */
.hero-visual {
    position: relative;
    background: linear-gradient(135deg, #4a1825 0%, #6b2535 45%, #3d1a24 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 48px;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(200, 80, 100, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 75% 25%, rgba(180, 60, 80, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-coming-soon {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 360px;
}

.cs-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 200, 210, 0.7);
    margin-bottom: 22px;
}

.cs-main {
    font-size: clamp(3.2rem, 6vw, 5rem);
    color: #fff4f6;
    line-height: 1;
    margin-bottom: 28px;
    text-shadow: 0 0 40px rgba(255, 150, 170, 0.35);
}

.cs-divider {
    width: 48px;
    height: 1px;
    background: rgba(255, 200, 210, 0.45);
    margin: 0 auto 26px;
}

.cs-tagline {
    font-size: 0.88rem;
    color: rgba(255, 210, 220, 0.65);
    line-height: 1.8;
    max-width: 300px;
    margin: 0 auto 28px;
}

.cs-cherries {
    font-size: 1.1rem;
    color: rgba(255, 200, 210, 0.7);
    letter-spacing: 0.6em;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 6px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--red-accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(181, 53, 74, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--red-dark);
    border: 2px solid var(--red-dark);
}

.btn-outline:hover {
    background: var(--red-dark);
    color: white;
}

.btn-outline-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 22px;
    border-radius: 6px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    color: var(--red-dark);
    border: 1.5px solid var(--red-dark);
    transition: all 0.2s;
}

.btn-outline-sm:hover {
    background: var(--red-dark);
    color: white;
}


/* ---------- FEATURES BAR ---------- */
.features-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--off-white);
    border-top: 1px solid #edd8d5;
    border-bottom: 1px solid #edd8d5;
    padding: 32px 48px;
    gap: 24px;
}

.feature-item {
    text-align: center;
    padding: 0 12px;
}

.feature-item+.feature-item {
    border-left: 1px solid #edd8d5;
}

.feature-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.feature-item h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.5;
}

/* ---------- PRODUCTS SECTION ---------- */
.products {
    padding: 72px 80px 88px;
    background: var(--off-white);
}

.section-header {
    margin-bottom: 48px;
}

.section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.04em;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(200, 150, 150, 0.12);
    box-shadow: 0 2px 16px rgba(120, 60, 70, 0.05);
    transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(120, 60, 70, 0.1);
}

.product-art {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.art-icon {
    font-size: 2.4rem;
    opacity: 0.7;
}

.pa-butter {
    background: linear-gradient(145deg, #fdeae6 0%, #f8d2ce 100%);
}

.pa-scrub {
    background: linear-gradient(145deg, #fce6e3 0%, #f7cecc 100%);
}

.pa-oil {
    background: linear-gradient(145deg, #fbe5e1 0%, #f5cfca 100%);
}

.pa-bar {
    background: linear-gradient(145deg, #fde8e4 0%, #f9d6d1 100%);
}

.pa-bomb {
    background: linear-gradient(145deg, #fae6f0 0%, #f4cedf 100%);
}

.pa-candle {
    background: linear-gradient(145deg, #fceae3 0%, #f6d4c4 100%);
}

.product-info {
    padding: 24px 24px 28px;
    border-top: 1px solid rgba(200, 150, 150, 0.1);
}

.product-collection-label {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
}

.product-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 0.83rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 0;
}

.coming-soon-badge {
    display: inline-block;
    margin-top: 18px;
    padding: 5px 14px;
    border: 1px solid rgba(138, 32, 53, 0.25);
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red-dark);
    background: rgba(138, 32, 53, 0.04);
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--white);
    padding: 32px 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #f0ddd9;
}

.footer-brand .logo-title {
    font-size: 1.5rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ---------- RESPONSIVE ---------- */

/* Large tablet */
@media (max-width: 1100px) {
    .products {
        padding: 56px 48px 72px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .site-header {
        padding: 14px 24px;
    }

    .header-left,
    .header-right {
        min-width: auto;
    }

    .main-nav {
        gap: 24px;
        padding: 12px 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 52px 40px;
        align-items: center;
        text-align: center;
    }

    .hero-visual {
        min-height: 320px;
        padding: 48px 32px;
    }

    .products {
        padding: 48px 32px 64px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .top-bar {
        font-size: 0.7rem;
        letter-spacing: 0.04em;
        padding: 8px 12px;
    }

    .site-header {
        padding: 12px 16px;
    }

    .logo-title {
        font-size: 1.7rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
        letter-spacing: 0.14em;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 14px;
        padding: 10px 16px;
        font-size: 0.76rem;
    }

    .hero-copy {
        padding: 40px 24px;
    }

    .hero-heading {
        font-size: 2.6rem;
    }

    .hero-visual {
        min-height: 280px;
        padding: 40px 24px;
    }

    .cs-main {
        font-size: 3rem;
    }

    .features-bar {
        grid-template-columns: 1fr;
        padding: 8px 24px;
        gap: 0;
    }

    .feature-item {
        padding: 20px 12px;
    }

    .feature-item+.feature-item {
        border-left: none;
        border-top: 1px solid #edd8d5;
    }

    .products {
        padding: 36px 16px 52px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-art {
        height: 160px;
    }

    .product-info {
        padding: 16px 14px 18px;
    }

    .coming-soon-badge {
        margin-top: 12px;
    }

    .site-footer {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 12px;
    }
}

/* Small mobile */
@media (max-width: 400px) {
    .logo-title {
        font-size: 1.45rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero-heading {
        font-size: 2.2rem;
    }
}