/* =============================================
   MAGUI TOUCH – CSS – ÉDITION STRICTE 3 COULEURS
   ============================================= */

:root {
  /* COULEURS */
  --brown: #6B3A1F;
  --brown-dark: #4A2410;
  --yellow: #F5C842;
  --white: #ffffff;
  --cream: #ffffff; /* Pour forcer le blanc partout */
  
  /* POLICE DE L'IMAGE */
  --font-title: 'Fraunces', serif; 
  --font-body: 'Inter', sans-serif;

  --text: #2C1A0E;
  --text-light: #6B3A1F;
  --shadow: rgba(107,58,31,0.15);
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background:#ffffff;
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--yellow);
  transition: box-shadow 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 14px 24px;
}
.logo {
  font-family: var(--font-title); font-size: 1.6rem; font-weight: 900;
  color: var(--brown); text-decoration: none; letter-spacing: -1px;
}
.logo span { color: var(--yellow); }
.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* Espace entre le logo et le nom */
}

.logo-img {
  height: 40px; /* Ajuste la hauteur à ta guise */
  width: auto;
  border-radius: 50%; /* Pour qu'il soit bien rond */
  object-fit: cover;
}
.nav-links { display: flex; list-style: none; gap: 6px; margin-left: auto; }
.nav-links a {
  padding: 7px 16px; border-radius: 50px; font-size: 0.9rem; font-weight: 500;
  color: var(--brown); text-decoration: none; transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--yellow); color: var(--brown-dark);
}
.admin-link { font-size: 0.8rem !important; opacity: 0.6; }
.nav-cart {
  background: var(--brown); color: var(--white);
  padding: 8px 16px; border-radius: 50px; cursor: pointer;
  font-size: 0.9rem; font-weight: 600; white-space: nowrap;
  transition: background 0.2s;
}
.nav-cart:hover { background: var(--brown-dark); }
.hamburger {
  display: none; background: none; border: none; font-size: 1.5rem;
  cursor: pointer; color: var(--brown); margin-left: auto;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5c842' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2; text-align: center; padding: 0 24px;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  color: var(--yellow); font-size: 0.9rem; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 16px; font-weight: 500;
}
.hero h1 {
  font-family: var(--font-title); font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900; color: var(--white); line-height: 0.9;
  margin-bottom: 24px; letter-spacing: -3px;
}
.hero h1 span { color: var(--yellow); }
.hero-desc {
  color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 36px; line-height: 1.7;
}
.hero-deco {
  position: absolute; right: 8%; bottom: 10%; font-size: 8rem; opacity: 0.15;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-10deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block; background: var(--yellow); color: var(--brown-dark);
  padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem;
  text-decoration: none; border: none; cursor: pointer; transition: all 0.2s;
  font-family: var(--font-body);
}
.btn-primary:hover { background: var(--white); color: var(--brown); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,200,66,0.4); }
.btn-secondary {
  display: inline-block; background: transparent; color: var(--brown);
  padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--brown); cursor: pointer; transition: all 0.2s;
  font-family: var(--font-body); text-decoration: none;
}
.btn-secondary:hover { background: var(--brown); color: var(--white); }
.btn-danger {
  background: var(--brown-dark); color: white; border: none;
  padding: 12px 24px; border-radius: 50px; cursor: pointer; font-weight: 600;
  font-family: var(--font-body); transition: all 0.2s;
}
.btn-danger:hover { background: var(--brown); }
.btn-whatsapp {
  display: inline-block; background: var(--yellow); color: var(--brown-dark);
  padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem;
  text-decoration: none; transition: all 0.2s; margin: 12px 8px;
}
.btn-whatsapp:hover { background: var(--white); transform: translateY(-2px); }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-family: var(--font-title); font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900; color: var(--brown); margin-bottom: 8px;
}
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* ===== ARTICLES ===== */
.articles-section { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }

/* Grille : 2 articles par ligne */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* Carte d'article style épuré */
.article-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  border: none;
}

.article-img {
  width: 100%;
  height: 350px;
  background: #f9f9f9;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-info {
  padding: 20px;
}

.article-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  display: block;
  margin-bottom: 5px;
}

.article-name {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.article-short-desc {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* Alignement Prix et Bouton sur la même ligne */
.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-price {
  color: var(--yellow);
  font-weight: 800;
  font-size: 1.2rem;
  font-family: var(--font-title);
}

.btn-add-small {
  background: var(--yellow);
  color: var(--brown-dark);
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}

.product-modal-img {
  text-align: center;
  margin-bottom: 20px;
}

/* ===== MODAL ===== */
.modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(44, 26, 14, 0.8); padding: 16px;
}
.modal.hidden { display: none; }
.modal-box {
  background: var(--white); border-radius: 24px;
  padding: 36px; max-width: 520px; width: 100%;
  position: relative; max-height: 90vh; overflow-y: auto;
  animation: popIn 0.3s ease; border: 2px solid var(--yellow);
}
@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--white); border: 1px solid var(--yellow); width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; font-size: 1rem; color: var(--brown);
}
.modal-box h2 { font-family: var(--font-title); font-size: 1.8rem; color: var(--brown); margin-bottom: 16px; }
.modal-box .product-modal-img { font-size: 6rem; text-align: center; padding: 20px 0; }
.modal-box .size-select { margin: 16px 0; }
.modal-box .size-select label { font-weight: 600; color: var(--brown); display: block; margin-bottom: 8px; }
.size-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn {
  padding: 8px 18px; border: 2px solid var(--brown); background: transparent;
  border-radius: 50px; cursor: pointer; font-weight: 600; color: var(--brown);
  transition: all 0.2s; font-family: var(--font-body);
}
.size-btn.active, .size-btn:hover { background: var(--brown); color: white; }
.modal-price { font-size: 1.5rem; font-weight: 800; color: var(--yellow); margin: 16px 0; }
.modal-price span { color: var(--text-light); font-size: 0.85rem; font-weight: 400; }

/* ===== PANIER ===== */
.cart-sidebar {
  position: fixed; right: 0; top: 0; height: 100%; width: 360px;
  background: var(--white); z-index: 1500; box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  display: flex; flex-direction: column; transition: transform 0.3s; border-left: 2px solid var(--yellow);
}
.cart-sidebar.hidden { display: none; }
.cart-overlay {
  position: fixed; inset: 0; z-index: 1400; background: rgba(44, 26, 14, 0.5);
}
.cart-overlay.hidden { display: none; }
.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px; border-bottom: 2px solid var(--yellow);
}
.cart-header h3 { font-family: var(--font-title); font-size: 1.4rem; color: var(--brown); }
.cart-header button { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--brown); }
#cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border-bottom: 1px solid #eee;
}
.cart-item-emoji { font-size: 2rem; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; color: var(--brown); }
.cart-item-size { font-size: 0.8rem; color: var(--text-light); }
.cart-item-price { font-weight: 700; color: var(--yellow); }
.cart-item-remove { background: none; border: none; cursor: pointer; color: var(--brown-dark); font-size: 1rem; }
/* Pour un panier propre et moderne */
.cart-footer {
  padding: 20px;
  background: #fff;
}

#cart-total {
  font-family: var(--font-title);
  font-weight: 900;
  color: var(--yellow);
  font-size: 1.4rem;
}

.cart-footer .btn-primary {
  width: 100%;
  background: var(--yellow);
  color: var(--brown-dark);
  padding: 15px;
  border-radius: 12px;
  font-weight: 800;
  text-transform: none;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}
/* ===== PAIEMENT ===== */
.payment-box { text-align: center; }
.payment-box p { color: var(--text-light); margin-bottom: 24px; }
.payment-methods { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.pay-btn {
  display: flex; align-items: center; gap: 12px; padding: 16px 24px;
  border-radius: 16px; border: 2px solid var(--brown); cursor: pointer; font-size: 1.1rem;
  font-weight: 700; font-family: var(--font-body); transition: all 0.2s;
  justify-content: center; color: var(--brown); background: white;
}
.pay-btn span { font-size: 1.5rem; }
.pay-btn:hover { background: var(--yellow); border-color: var(--yellow); }

.mpesa, .airtel, .card { border-color: var(--brown); background: white; color: var(--brown); }

#payment-form { margin-top: 16px; }
#payment-form input {
  width: 100%; padding: 12px 16px; margin-bottom: 12px;
  border: 2px solid var(--yellow); border-radius: 10px; font-size: 1rem;
  font-family: var(--font-body); background: var(--white);
}
#payment-form input:focus { outline: none; border-color: var(--brown); }
#selected-method-label { color: var(--text-light); font-size: 0.9rem; margin-bottom: 12px; }

/* ===== CONFIRM ===== */
.confirm-box { text-align: center; }
.confirm-icon { font-size: 4rem; margin-bottom: 16px; color: var(--yellow); }
.confirm-box h2 { font-family: var(--font-title); font-size: 2rem; color: var(--brown); margin-bottom: 12px; }
.confirm-box p { color: var(--text-light); margin-bottom: 24px; line-height: 1.7; }
.confirm-box .btn-secondary { margin: 8px; }

/* ===== RÉSEAUX SOCIAUX ===== */
.social-section { padding: 60px 24px; background: var(--brown); }
.social-section .section-header h2, .social-section .section-header p { color: var(--white); }
.social-section .section-header p { color: rgba(255,255,255,0.7); }
.social-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px; max-width: 800px; margin: 0 auto;
}
.social-card {
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
  text-decoration: none; color: white; transition: all 0.3s; backdrop-filter: blur(4px);
}
.social-card:hover { background: var(--yellow); color: var(--brown-dark); border-color: var(--yellow); transform: translateY(-4px); }
.social-icon { font-size: 2.5rem; display: block; margin-bottom: 8px; }
.social-card span { font-weight: 700; font-size: 1.05rem; display: block; }
.social-card small { opacity: 0.8; font-size: 0.8rem; }

/* ===== FOOTER ===== */
footer { background: var(--brown-dark); color: white; padding: 48px 24px; text-align: center; }
.footer-logo { font-family: var(--font-title); font-size: 2rem; font-weight: 900; margin-bottom: 8px; }
.footer-logo span { color: var(--yellow); }
footer p { color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 16px; }
.footer-links a { color: var(--yellow); text-decoration: none; font-weight: 500; }
.footer-copy { font-size: 0.8rem; opacity: 0.5; }

/* ===== FAQ ===== */
.page-hero {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  padding: 120px 24px 60px; text-align: center; color: white;
}
.page-hero h1 { font-family: var(--font-title); font-size: 3rem; font-weight: 900; margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }
.faq-section { max-width: 800px; margin: 0 auto; padding: 60px 24px; display: grid; gap: 40px; }
.faq-ask-box {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: 0 4px 20px var(--shadow); border: 2px solid var(--yellow);
}
.faq-ask-box h3 { font-family: var(--font-title); font-size: 1.4rem; color: var(--brown); margin-bottom: 20px; }
.faq-ask-box input, .faq-ask-box textarea {
  width: 100%; padding: 12px 16px; margin-bottom: 12px;
  border: 2px solid var(--yellow); border-radius: 10px; font-size: 1rem;
  font-family: var(--font-body); background: var(--white);
}
.faq-ask-box input:focus, .faq-ask-box textarea:focus { outline: none; border-color: var(--brown); }
.faq-list h3 { font-family: var(--font-title); font-size: 1.4rem; color: var(--brown); margin-bottom: 20px; }
.faq-item { border-bottom: 1px solid var(--yellow); }
.faq-q {
  padding: 18px 0; font-weight: 600; cursor: pointer; color: var(--brown);
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--yellow); }
.faq-a { padding: 0 0 18px; color: var(--text-light); line-height: 1.7; display: none; }
.faq-a.open { display: block; }

/* ===== ADMIN ===== */
.admin-body { background: white; }
.admin-login-screen {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
}
.login-box {
  background: white; border-radius: 24px; padding: 48px; max-width: 400px; width: 100%;
  text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.3); border: 2px solid var(--yellow);
}
.login-box h2 { font-family: var(--font-title); font-size: 2rem; color: var(--brown); margin-bottom: 8px; }
.login-box p { color: var(--text-light); margin-bottom: 24px; }
.login-box input {
  width: 100%; padding: 14px 16px; border: 2px solid var(--yellow);
  border-radius: 12px; font-size: 1rem; margin-bottom: 16px;
  font-family: var(--font-body);
}
.admin-section { max-width: 1100px; margin: 0 auto; padding: 40px 24px; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: white; border-radius: 16px; padding: 28px; text-align: center;
  box-shadow: 0 4px 16px var(--shadow); border: 2px solid var(--yellow); border-top: 8px solid var(--yellow);
}
.stat-card span { display: block; font-size: 2.2rem; font-weight: 900; color: var(--brown); margin-bottom: 4px; }
.stat-card label { color: var(--text-light); font-size: 0.9rem; }
.admin-controls { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.admin-controls input {
  flex: 1; padding: 12px 16px; border: 2px solid var(--yellow);
  border-radius: 10px; font-size: 1rem; font-family: var(--font-body); min-width: 200px;
}
.orders-table-wrap { background: white; border-radius: 16px; overflow: auto; box-shadow: 0 4px 16px var(--shadow); border: 1px solid #eee; }
.orders-table { width: 100%; border-collapse: collapse; }
.orders-table th {
  background: var(--brown); color: white; padding: 14px 16px;
  text-align: left; font-family: var(--font-body); font-weight: 600;
}
.orders-table td { padding: 14px 16px; border-bottom: 1px solid #eee; }
.orders-table tr:hover { background: #fffcf0; }
.no-orders { text-align: center; padding: 40px; color: var(--text-light); }

/* ===== UTILS ===== */
.hidden { display: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 16px; border-bottom: 2px solid var(--yellow); gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .cart-sidebar { width: 100%; }
  .hero h1 { font-size: 4rem; }
  .hero-deco { display: none; }
  .admin-controls { flex-direction: column; }

  /* 1 article par ligne sur mobile */
  .articles-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ===== HERO HOME – IMAGE FLOUE + TEXTE LISIBLE ===== */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
  }
 
  /* Fond de couleur de base */
  .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
  }
 
  /* Image floue + assombrie */
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(img/jkjjkkjkkjkk.jpeg);
    background-size: cover;
    background-position: center;
    filter: blur(4px) brightness(0.35);
    transform: scale(1.06); /* évite les bords blancs du blur */
  }
 
  /* Couche sombre supplémentaire pour lisibilité */
  .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(74, 36, 16, 0.75) 0%,
      rgba(107, 58, 31, 0.55) 100%
    );
    z-index: 1;
  }
 
  .hero-content {
    text-align: left;
    position: relative;
    z-index: 2;
    padding: 60px 60px 60px 80px;
    animation: fadeUp 1s ease both;
  }
 
  /* Ombre portée sur tous les textes pour lisibilité maximale */
  .hero-content * {
    text-shadow: 0 2px 16px rgba(0,0,0,0.7);
  }
 
  .hero-sub {
    color: var(--yellow);
    font-size: 0.82rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
  }
 
  .hero h1 {
    font-family: var(--font-title);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -3px;
  }
 
  .hero h1 span { color: var(--yellow); }
 
  .hero-tagline {
    font-family: var(--font-title);
    font-style: italic;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-weight: 400;
  }
 
  .hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 420px;
  }
 
  .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
 
  .hero-btns .btn-secondary {
    color: white;
    border-color: rgba(255,255,255,0.5);
    text-shadow: none;
  }
 
  .hero-btns .btn-secondary:hover {
    background: white;
    color: var(--brown);
    border-color: white;
  }
 
  @keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
 
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* =============================================
   À COLLER À LA FIN DE VOTRE style/style.css
   ============================================= */

/* ===== PASTILLES COULEURS ===== */
.color-swatches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
  position: relative;
}

.color-swatch:hover {
  transform: scale(1.18);
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

.color-swatch.active {
  transform: scale(1.2);
  box-shadow: 0 0 0 3px var(--yellow), 0 0 0 5px var(--brown);
}

/* ===== HERO ACCUEIL – IMAGE CLAIRE AVEC OMBRES HAUT/BAS ===== */
/* Remplacez le bloc .hero-bg::after et .hero-bg::before dans index.html */

/* Copier-coller ces règles dans le <style> de index.html
   en REMPLACEMENT de .hero-bg::after et .hero-bg::before */

/*
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(img/jkjjkkjkkjkk.jpeg);
  background-size: cover;
  background-position: center;
  filter: brightness(0.72);
  transform: scale(1.02);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(44, 26, 14, 0.65) 0%,
      rgba(44, 26, 14, 0.0) 30%,
      rgba(44, 26, 14, 0.0) 70%,
      rgba(44, 26, 14, 0.65) 100%
    );
}
*/

/* ===== À COLLER À LA FIN DE style/style.css ===== */

/* Pastilles couleurs */
.color-swatches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
}

.color-swatch:hover {
  transform: scale(1.18);
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

.color-swatch.active {
  transform: scale(1.2);
  box-shadow: 0 0 0 3px var(--yellow), 0 0 0 5px var(--brown);
}

/* Bouton multicolore (emoji 🎨) */
.multi-swatch {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.multi-swatch.active {
  box-shadow: 0 0 0 3px var(--yellow), 0 0 0 5px var(--brown);
  transform: scale(1.2);
}
 
.zozo {
    color: var(--yellow);
    font-weight: 700;
    font-family: var(--font-title); 
    font-weight: 900;
  }