:root {
    --rose: #c58b95;
    --rose-dark: #a35b66;
    --rose-pale: #fff0f5;
    --noir: #2c2c2c;
    --gris: #777;
    --blanc: #fff;
    --shadow: 0 8px 30px rgba(0,0,0,0.08);
    --radius: 14px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--noir);
    background: #fff;
    line-height: 1.6;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

.container { width: 92%; max-width: 1180px; margin: 0 auto; }

a { color: var(--rose-dark); text-decoration: none; }

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

/* Header */
.site-header {
    background: var(--blanc);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--rose-dark);
    font-weight: 600;
}

.main-nav { display: flex; gap: 1.25rem; align-items: center; }
.main-nav a { color: var(--noir); font-weight: 500; font-size: .95rem; }
.main-nav a:hover { color: var(--rose-dark); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--rose-dark);
    cursor: pointer;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: .75rem 1.5rem;
    border-radius: 999px;
    background: var(--rose);
    color: #fff;
    border: 2px solid var(--rose);
    font-weight: 600;
    transition: .2s;
    cursor: pointer;
    text-align: center;
}

.btn:hover { background: var(--rose-dark); border-color: var(--rose-dark); }

.btn-light { background: #fff; color: var(--rose-dark); border-color: #fff; }
.btn-light:hover { background: #fff0f5; }

.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--rose-dark); }

.btn-small { padding: .45rem 1rem; font-size: .9rem; }

/* Hero */
.hero {
    min-height: 78vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 4rem 1rem;
}

.hero-content h1 { font-size: 3rem; margin: 0 0 .5rem; }
.hero-content p { font-size: 1.25rem; margin: 0 0 1.75rem; opacity: .95; }
.hero-content .btn { margin: .3rem; }

/* Hero slider */
.hero-slider {
    position: relative;
    height: 78vh;
    min-height: 500px;
    overflow: hidden;
    display: block;
    padding: 0;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
    color: #fff;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-content {
    width: 100%;
    padding: 4rem 1rem;
    position: relative;
    z-index: 3;
}

/* Sections */
.section { padding: 4rem 0; }
.section-pink { background: var(--rose-pale); }
.section-title { text-align: center; font-size: 2.1rem; margin: 0 0 2rem; color: var(--rose-dark); }

.text-center { text-align: center; }

/* Grilles */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

@media (max-width: 600px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2rem; }
    .menu-toggle { display: block; }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        display: none;
        box-shadow: 0 10px 20px rgba(0,0,0,.1);
    }
    .main-nav.open { display: flex; }
}

/* Cartes */
.card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    transition: transform .2s;
}

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

.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: .75rem;
}

.card h3 { margin: .25rem 0 .5rem; color: var(--rose-dark); }

.price {
    display: inline-block;
    color: var(--rose-dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin: .5rem 0;
}

.promo-prices del { color: var(--gris); margin-right: .5rem; }

.review .stars { color: #e6a23c; margin-bottom: .5rem; }

/* Galerie */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

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

@media (max-width: 992px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(37,211,102,.35);
    z-index: 1100;
}

.whatsapp-float svg { width: 32px; height: 32px; }

/* Footer */
.site-footer { background: #2c2c2c; color: #eee; padding: 3rem 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-grid h4 { color: #fff; margin-top: 0; }
.footer-grid a { color: #ffccd5; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: .2rem 0; }
.footer-copy { text-align: center; padding: 1.5rem; border-top: 1px solid #444; margin-top: 2rem; font-size: .85rem; }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* Forms */
.form { max-width: 600px; margin: 0 auto; }
.form label { display: block; margin: 1.2rem 0 .4rem; font-weight: 500; }
.form input, .form select, .form textarea {
    width: 100%;
    padding: .8rem 1rem;
    border: 1px solid #e0c3c7;
    border-radius: 10px;
    font-family: inherit;
}
.form textarea { min-height: 120px; resize: vertical; }
.form button { margin-top: 1.5rem; }

.status {
    padding: .8rem 1.2rem;
    border-radius: 10px;
    margin: 1rem 0;
}
.status-success { background: #e8f5e9; color: #2e7d32; }
.status-error { background: #ffebee; color: #c62828; }

/* Table simple */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
th, td { text-align: left; padding: .75rem; border-bottom: 1px solid #eee; }
th { background: var(--rose-pale); color: var(--rose-dark); }

/* Page sections */
.page-banner {
    background: linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)), var(--rose-pale);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}
.page-banner h1 { margin: 0; font-size: 2.6rem; }

@media (max-width: 480px) {
    .hero { min-height: 60vh; padding: 2.5rem 1rem; }
    .hero-slider { height: 60vh; min-height: 360px; }
    .hero-slide-content { padding: 3rem 1rem; }
    .hero-content h1 { font-size: 1.9rem; }
    .hero-content p { font-size: 1rem; }
    .hero-actions .btn, .home-actions .btn { margin: 0; }
    .page-banner { padding: 2.5rem 0; }
    .page-banner h1 { font-size: 1.85rem; }
    .section { padding: 2.5rem 0; }
    .section-title { font-size: 1.6rem; margin-bottom: 1.5rem; }
    .section-subtitle { font-size: 1rem; margin-bottom: 1.25rem; }
    .btn { display: block; width: 100%; margin-bottom: .5rem; }
    .btn-small, .page-banner .btn, .card .btn { width: auto; display: inline-block; }
    .form input, .form select, .form textarea { font-size: 16px; }
}
