:root {
    --pink-light: #fce4ec;
    --gold: #d4af37;
    --white: #ffffff;
    --dark: #1a1a1a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background-color: #fffafb; color: var(--dark); }

/* LOGO */
.site-logo {
    height: 60px;
    width: auto;
    border-radius: 50%;
}

/* VIDEO HERO */
.hero-video-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#heroVideo {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 20px;
    color: white;
}

.hero-overlay h1 { font-family: 'Playfair Display'; font-size: 4rem; color: var(--gold); }

/* NAVBAR */
header {
    background: white;
    padding: 10px 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar { display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; }

/* PRODUITS */
.section-title { text-align: center; margin: 60px 0 30px; font-family: 'Playfair Display'; font-size: 2.5rem; color: var(--gold); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; padding: 0 5%; }

.product-card {
    background: white;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eee;
}

.product-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.product-card img { width: 100%; height: 300px; object-fit: cover; border-radius: 10px; margin-bottom: 15px; }

.btn-gold {
    background: var(--gold);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

/* PANIER */
.cart-sidebar { position: fixed; right: -400px; top: 0; width: 350px; height: 100%; background: white; z-index: 2000; transition: 0.4s; padding: 20px; box-shadow: -5px 0 15px rgba(0,0,0,0.1); }
.cart-sidebar.active { right: 0; }
