/* ═══════════════════════════════════════════════
   BOUGIES.CSS — styles spécifiques à la page bougies
   ═══════════════════════════════════════════════ */

/* ── PAGE WRAPPER ────────────────────────────── */

.bougie-page {
    padding: var(--frame-gap);
    min-height: calc(100vh - 74px);
}

.bougie-page > .frame {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3.5rem 4rem;
    justify-content: flex-start;
    min-height: unset;
}

/* ── EN-TÊTE ─────────────────────────────────── */

.bougie-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
}

/* ── INTRODUCTION ────────────────────────────── */

.bougie-intro-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bougie-intro-text {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.bougie-intro-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 400;
    line-height: 1.85;
    color: var(--text);
    letter-spacing: 0.01em;
}

.bougie-intro-text strong {
    font-weight: 600;
}

.rounded-frame--intro {
    max-width: 300px;
    aspect-ratio: 3 / 4;
    margin: 0 auto;
}

/* ── ORNEMENT ────────────────────────────────── */

.ornament {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.35;
}

.ornament-line {
    flex: 1;
    height: 1px;
    background-color: var(--border);
}

.ornament-symbol {
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}

/* ── GRILLE BOUGIES ──────────────────────────── */

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

.bougie-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.bougie-card-img {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.rounded-frame--card {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 3 / 4;
    border-radius: 80px;
}

.bougie-card-vertu {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    font-style: italic;
    color: var(--text-mid);
    letter-spacing: 0.03em;
    line-height: 1.4;
}

.bougie-card-pierre {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.92rem, 1.35vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--text-mid);
    opacity: 0.85;
}

.bougie-card .price {
    margin-top: 0.3rem;
    margin-bottom: 0;
}

/* Carte Éphémère */
.bougie-card--ephemere {
    position: relative;
    border: 1.5px solid var(--nav-bg);
}

.badge-ephemere {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bg);
    background-color: var(--nav-bg);
    padding: 0.3em 0.9em;
    border-radius: 2px;
    margin-bottom: 0.8rem;
}

/* Carte CTA "Sur commande" */
.bougie-card--cta {
    justify-content: center;
    background-color: var(--bg-alt);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    gap: 1rem;
}

.bougie-card--cta .script--product {
    font-size: clamp(2rem, 3vw, 3rem);
}

/* ── NOTE ARTISANALE ─────────────────────────── */

.bougie-note {
    border-top: 1px solid rgba(44, 26, 18, 0.15);
    padding-top: 2rem;
}

.bougie-note .body-caps {
    font-size: 0.75rem;
    color: var(--text-mid);
    max-width: 680px;
    margin: 0 auto;
}

/* ── RESPONSIVE ──────────────────────────────── */

@media (max-width: 900px) {
    .bougie-page > .frame {
        padding: 2.5rem 2rem;
        gap: 3rem;
    }

    .bougie-intro-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rounded-frame--intro {
        max-width: 220px;
    }

    .bougie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .bougie-page > .frame {
        padding: 2rem 1.2rem;
        gap: 2.5rem;
    }

    .bougie-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}
