/* Palette de couleurs reprise de l'affiche */
:root {
    --bleu: #022a75;
    --violet: #8c1e83;
    --rose: #f02d7d;
    --jaune: #f7d51d;
    --blanc-pur: #ffffff;
    --gris-securite: #f4f7fa;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body { 
    font-family: 'Quicksand', sans-serif; 
    background-color: var(--blanc-pur);
    color: #333;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* NAVIGATION */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
    border-bottom: 1px solid #eee;
    position: sticky; top: 0; z-index: 1000;
}
.logo { font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--violet); letter-spacing: 2px; }
.nav-links a { text-decoration: none; color: #555; font-weight: 600; margin-left: 25px; }
.nav-btn-rdv { background: var(--violet); color: white !important; padding: 10px 25px; border-radius: 50px; transition: 0.3s; }
.nav-btn-rdv:hover { background: var(--bleu); }

/* HERO SECTION */
.hero-section { padding: 100px 0; background: radial-gradient(circle at 0% 100%, #fff0f6 0%, #f0f5ff 100%); overflow: hidden; }
.hero-flex { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hero-text { flex: 1; }
.badge-security { display: inline-block; padding: 5px 15px; background: #e8f5e9; color: #2e7d32; border-radius: 20px; font-size: 0.8rem; font-weight: 700; margin-bottom: 20px; }
.hero-text h1 { font-family: 'Montserrat', sans-serif; font-size: 3.8rem; line-height: 1.1; color: var(--bleu); margin-bottom: 20px; }
.gradient-text { background: linear-gradient(45deg, var(--rose), var(--violet)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.hero-visual { flex: 1; position: relative; text-align: center; }
.chakra-character { width: 100%; max-width: 450px; border-radius: 30px; position: relative; z-index: 2; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.glow-effect { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 120%; height: 120%; background: radial-gradient(circle, var(--jaune) 0%, transparent 70%); opacity: 0.25; z-index: 1; }

.btn-primary { display: inline-block; padding: 18px 40px; background: var(--rose); color: white; text-decoration: none; border-radius: 50px; font-weight: 700; box-shadow: 0 10px 20px rgba(240, 45, 125, 0.2); transition: 0.3s; }
.btn-primary:hover { transform: translateY(-3px); background: var(--violet); }
.phone-hero { margin-left: 20px; font-weight: 700; color: var(--bleu); }

/* CONTACT SECURISE */
.contact-secure-section { padding: 100px 0; background: white; }
.contact-card { background: var(--gris-securite); border-radius: 30px; padding: 60px; border: 1px solid #e0e6ed; }
.contact-header-clear { text-align: center; margin-bottom: 50px; }
.contact-header-clear h2 { font-family: 'Montserrat', sans-serif; color: var(--bleu); font-size: 2.2rem; }

.contact-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }

.secure-form input, .secure-form select, .secure-form textarea {
    width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #d1d9e0; border-radius: 12px; font-family: inherit; font-size: 1rem;
}
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.rgpd-check { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #666; margin-bottom: 20px; }

.btn-submit-secure {
    width: 100%; padding: 20px; border: none; border-radius: 12px; background: linear-gradient(to right, var(--bleu), var(--violet)); color: white; font-weight: 700; cursor: pointer; transition: 0.3s;
}
.btn-submit-secure:hover { opacity: 0.9; transform: translateY(-2px); }

.detail-item { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; }
.detail-item i { width: 40px; height: 40px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--rose); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.detail-item strong { display: block; font-size: 0.75rem; color: #999; text-transform: uppercase; }
.detail-item p { font-weight: 700; color: var(--bleu); }

/* FOOTER */
.footer-clean { text-align: center; padding: 60px; background: #fafafa; border-top: 1px solid #eee; color: #999; }
.tiny { font-size: 0.7rem; margin-top: 10px; }

@media (max-width: 900px) {
    .hero-flex, .contact-layout, .input-row { grid-template-columns: 1fr; flex-direction: column; }
    .hero-text h1 { font-size: 2.5rem; }
    .chakra-character { width: 100%; }
}:root {
    --bleu: #022a75;
    --violet: #8c1e83;
    --rose: #f02d7d;
    --jaune: #f7d51d;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Quicksand', sans-serif; background: #fff; color: #333; line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* NAVBAR */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; background: #fff; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.logo { font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--violet); }
.nav-links a { text-decoration: none; color: #555; margin-left: 20px; font-weight: 600; }
.nav-btn-rdv { background: var(--violet); color: white !important; padding: 8px 20px; border-radius: 50px; }

/* HERO */
.hero-section { padding: 80px 0; background: radial-gradient(circle at bottom right, #fff0f6, #f0f5ff); }
.hero-flex { display: flex; align-items: center; gap: 40px; }
.hero-text h1 { font-family: 'Montserrat', sans-serif; font-size: 3.5rem; color: var(--bleu); line-height: 1.1; margin: 20px 0; }
.gradient-text { background: linear-gradient(45deg, var(--rose), var(--violet)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.badge-security { background: #e8f5e9; color: #2e7d32; padding: 5px 15px; border-radius: 20px; font-weight: 700; font-size: 0.8rem; }
.chakra-character { width: 100%; max-width: 400px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.btn-primary { display: inline-block; padding: 15px 35px; background: var(--rose); color: white; text-decoration: none; border-radius: 50px; font-weight: 700; }

/* PRESENTATION SECTION */
.presentation-section { padding: 100px 0; background: #fff; }
.section-title { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; color: var(--bleu); margin-bottom: 30px; }
.description { font-size: 1.2rem; color: #555; margin-bottom: 50px; max-width: 800px; }

.specialties { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.spec-item { display: flex; gap: 20px; align-items: flex-start; }
.spec-item i { font-size: 2rem; color: var(--rose); background: #fff0f5; padding: 15px; border-radius: 15px; }
.spec-item h4 { font-family: 'Montserrat', sans-serif; color: var(--violet); margin-bottom: 5px; }

/* CONTACT */
.contact-secure-section { padding: 80px 0; }
.contact-card { background: #f8f9fc; padding: 50px; border-radius: 30px; border: 1px solid #eee; }
.contact-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
.secure-form input, .secure-form textarea { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 10px; }
.btn-submit-secure { width: 100%; padding: 15px; border: none; background: var(--bleu); color: white; border-radius: 10px; font-weight: 700; cursor: pointer; }
.detail-item { display: flex; gap: 15px; margin-bottom: 25px; }
.detail-item i { color: var(--rose); }

/* FOOTER */
.footer-clean { text-align: center; padding: 40px; background: #fafafa; color: #aaa; font-size: 0.8rem; }

@media (max-width: 850px) {
    .hero-flex, .contact-layout { flex-direction: column; text-align: center; }
}
/* Couleurs & Variables */
:root {
    --primary-color: #a8dadc; /* Bleu zen */
    --accent-color: #457b9d;  /* Bleu profond */
    --text-dark: #1d3557;
    --bg-light: #f8f9fa;
    --gradient: linear-gradient(135deg, #a8dadc 0%, #457b9d 100%);
}

/* Header Boutique */
.shop-hero {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-light);
    border-bottom: 1px solid #eee;
}

.shop-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Grille de Produits */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

/* Carte Produit */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Image du produit */
.product-img-container {
    height: 250px;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-img-container img {
    max-height: 80%;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

/* Détails */
.product-details {
    padding: 25px;
    text-align: center;
}

.category {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 1px;
    font-weight: 700;
}

.product-details h3 {
    margin: 10px 0;
    font-family: 'Montserrat', sans-serif;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Bouton Ajouter */
.btn-add {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: opacity 0.3s;
}

.btn-add:hover {
    opacity: 0.9;
}
/* admin-style.css */
body { font-family: 'Quicksand', sans-serif; background: #f0f2f5; margin: 0; }
.admin-wrapper { display: flex; min-height: 100vh; }

.admin-sidebar { width: 260px; background: #1d3557; color: white; padding: 20px; }
.admin-sidebar ul { list-style: none; padding: 0; }
.admin-sidebar li { padding: 15px; cursor: pointer; border-radius: 8px; transition: 0.3s; }
.admin-sidebar li:hover, .admin-sidebar li.active { background: #457b9d; }

.admin-content { flex: 1; padding: 40px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }

.admin-card { background: white; padding: 20px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); margin-bottom: 20px; }

table { width: 100%; border-collapse: collapse; }
th { text-align: left; padding: 12px; border-bottom: 2px solid #eee; }
td { padding: 12px; border-bottom: 1px solid #eee; }

.stock-status.low { color: #e63946; font-weight: bold; background: #ffe3e3; padding: 4px 8px; border-radius: 4px; }
.btn-add-product { background: #a8dadc; border: none; padding: 10px 20px; border-radius: 8px; font-weight: bold; cursor: pointer; }

/* Style des factures */
.invoice-item { display: flex; justify-content: space-between; align-items: center; padding: 15px; border: 1px solid #eee; margin-top: 10px; border-radius: 8px; }
.btn-pdf { background: #e63946; color: white; border: none; padding: 5px 12px; border-radius: 4px; cursor: pointer; }
/* RESET & FONTS */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Quicksand', sans-serif; background-color: #ffffff; color: #333; line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* NAVBAR */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; background: #fff; }
.logo { font-family: 'Montserrat', sans-serif; font-weight: 800; color: #8e2de2; font-size: 1.2rem; }
.nav-links a { text-decoration: none; color: #333; margin-left: 20px; font-weight: 500; }
.nav-btn-rdv { background: #8e2de2; color: white !important; padding: 10px 20px; border-radius: 50px; }

/* HEADER */
.shop-header-clean { text-align: center; padding: 80px 20px; background: #fff; }
.top-subtitle { font-size: 0.9rem; color: #666; text-transform: uppercase; letter-spacing: 1px; }
h1 { font-family: 'Montserrat', sans-serif; font-size: 3rem; margin: 10px 0; }
.vibratoire-text { color: #d63384; } /* Le rose du modèle */
.shop-header-clean p { max-width: 700px; margin: 0 auto; color: #777; font-size: 1.1rem; }

/* LAYOUT */
.main-shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 40px; margin-top: 20px; }

/* SIDEBAR */
.categories-sidebar h3 { font-family: 'Montserrat', sans-serif; margin-bottom: 15px; font-size: 1.1rem; }
.categories-sidebar ul { list-style: none; }
.categories-sidebar li { padding: 8px 0; color: #666; cursor: pointer; font-size: 0.95rem; }
.categories-sidebar li.active { color: #333; font-weight: 700; }

/* GRID & CARDS */
.products-grid-clean { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.card-item { background: #fff; border-radius: 20px; overflow: hidden; text-align: center; transition: 0.3s; padding-bottom: 20px; border: 1px solid #f0f0f0; }
.card-item:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }

.image-wrapper { position: relative; background: #f9f9f9; height: 300px; display: flex; align-items: center; justify-content: center; }
.image-wrapper img { max-width: 80%; max-height: 80%; }

.hover-overlay { position: absolute; background: rgba(255,255,255,0.8); border: 1px solid #333; padding: 5px 15px; font-size: 0.8rem; cursor: pointer; opacity: 0.8; }

.card-content { padding: 20px 10px; }
.card-cat { font-size: 0.75rem; color: #8e2de2; font-weight: 700; letter-spacing: 1px; }
.card-item h3 { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; margin: 10px 0; }
.card-price { font-weight: 700; font-size: 1.2rem; color: #333; }

/* Responsive */
@media (max-width: 900px) {
    .main-shop-layout { grid-template-columns: 1fr; }
    .products-grid-clean { grid-template-columns: 1fr 1fr; }
}