/* ══════════════════════════════════════════
   TEAMTIM — Identité visuelle propre
   Palette : Prune profond · Crème dorée · Rose poudré
══════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Couleurs principales TeamTim */
  --primary:       #7C3151;   /* Prune profond — couleur de marque */
  --primary-hover: #621F40;   /* Prune foncé pour hover */
  --primary-light: #F8EDF3;   /* Rose très pâle — fonds doux */
  --accent:        #C4926A;   /* Or chaud / ambre — accents secondaires */

  /* Neutres chauds (remplace le noir/blanc froid) */
  --white:  #FEFCFA;          /* Blanc chaud légèrement crème */
  --light:  #F5EDE5;          /* Crème dorée — sections alternées */
  --border: #E8D5CB;          /* Bordure rosée chaude */
  --dark:   #231218;          /* Quasi-noir avec teinte bordeaux */
  --gray:   #7A6068;          /* Gris chaud */
  --gray2:  #5C4850;          /* Gris foncé chaud */
  --green:  #3d9e6a;          /* Vert étoiles avis (inchangé) */

  --font-s: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-b: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --max:    1400px;
  --pad:    clamp(16px, 4vw, 48px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img  { display: block; width: 100%; height: 100%; object-fit: cover; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-b); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.header-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 60px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 26px);
}

.nav-left a {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.02em;
  transition: opacity .2s;
  white-space: nowrap;
}
.nav-left a:hover { opacity: .5; }

.brand {
  font-family: var(--font-s);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--dark);
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
}
/* Logo image si disponible */
.brand-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.currency {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.75rem;
  font-weight: 400;
}

.currency select {
  border: none;
  background: transparent;
  font-family: var(--font-b);
  font-size: 0.75rem;
  color: var(--dark);
  cursor: pointer;
  outline: none;
  appearance: none;
}

.chevron { font-size: 0.6rem; color: var(--dark); }

.icon-btn {
  display: flex;
  align-items: center;
  padding: 4px;
  color: var(--dark);
  transition: opacity .2s;
}
.icon-btn:hover { opacity: .5; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  height: calc(100vh - 60px);
  min-height: 500px;
  overflow: hidden;
}

.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.hero-img { overflow: hidden; }
.hero-img img { transition: transform 9s ease; }
.hero:hover .hero-img img { transform: scale(1.04); }

.hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 32px 20px;
}

.hero-caption h2 {
  font-family: var(--font-s);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--dark);
}

.btn-pill {
  display: inline-block;
  border: 1.5px solid var(--primary);
  border-radius: 999px;
  padding: 10px 32px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--white);
  transition: background .2s, color .2s;
}
.btn-pill:hover { background: var(--primary); color: #fff; }

/* ════════════════════════════════════════
   SECTIONS COMMUNES
════════════════════════════════════════ */
.section {
  padding: clamp(40px, 5vw, 72px) 0;
  background: var(--white);
}

.section-alt { background: var(--white); }

.section-title {
  font-family: var(--font-s);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 32px;
  color: var(--dark);
}

.section-header-btn {
  margin-bottom: 28px;
}

/* ════════════════════════════════════════
   BOUTONS
════════════════════════════════════════ */
.btn-black {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  transition: background .2s;
}
.btn-black:hover { background: var(--primary-hover); }

.center-btn {
  text-align: center;
  margin-top: 36px;
}

.btn-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid var(--dark);
  padding-bottom: 2px;
  display: inline-block;
  margin-top: 24px;
  transition: opacity .2s;
}
.btn-link:hover { opacity: .6; }

/* ════════════════════════════════════════
   PRODUCT GRID & CARDS
════════════════════════════════════════ */
.product-grid {
  display: grid;
  gap: 20px;
}
.product-grid.col4 {
  grid-template-columns: repeat(4, 1fr);
}

.product-card { cursor: pointer; }

.product-img {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #F2E5EC;
}

.product-img img {
  transition: transform .5s ease;
}
.product-card:hover .product-img img { transform: scale(1.04); }

.badge-epuise {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 4px 10px;
}

.product-name {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--dark);
  margin-top: 10px;
  line-height: 1.4;
}

.product-price {
  font-size: 0.8rem;
  color: var(--dark);
  margin-top: 4px;
  font-weight: 400;
}

/* ════════════════════════════════════════
   COLLECTION GRID & TILES
════════════════════════════════════════ */
.collection-grid {
  display: grid;
  gap: 12px;
}
.collection-grid.col4 {
  grid-template-columns: repeat(4, 1fr);
}

.collection-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
}

.collection-tile img { transition: transform .5s ease; }
.collection-tile:hover img { transform: scale(1.05); }

.tile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.88);
  text-align: left;
  padding: 10px 14px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
}

/* ════════════════════════════════════════
   CRÉER MA BOX
════════════════════════════════════════ */
.creer-box { padding: 0; }

.creer-box .wrap {
  text-align: center;
  padding-top: clamp(40px, 5vw, 60px);
  padding-bottom: 28px;
}

.creer-title {
  font-family: var(--font-s);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.creer-sub {
  font-size: 0.83rem;
  color: var(--dark);
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.creer-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: clamp(300px, 50vw, 640px);
}

.creer-img { overflow: hidden; }
.creer-img img { transition: transform .7s; }
.creer-img:hover img { transform: scale(1.03); }

/* ════════════════════════════════════════
   HIJAB INSTANTANÉ — SPLIT
════════════════════════════════════════ */
.instant-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(300px, 40vw, 560px);
}

.instant-photo { overflow: hidden; }
.instant-photo img { transition: transform .7s; }
.instant-photo:hover img { transform: scale(1.03); }

.instant-text {
  background: var(--light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(32px, 5vw, 72px);
  gap: 18px;
}

.instant-text h2 {
  font-family: var(--font-s);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--dark);
}

.instant-text p {
  font-size: 0.87rem;
  color: var(--gray2);
  max-width: 340px;
  line-height: 1.75;
  font-weight: 400;
}

/* ════════════════════════════════════════
   TÉMOIGNAGES
════════════════════════════════════════ */
.testimonials-section { background: var(--white); }

.testimonials-title {
  font-family: var(--font-s);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 600;
  text-align: center;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.rating-global {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.stars-green {
  color: var(--green);
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-count {
  font-size: 0.82rem;
  color: var(--gray);
}

.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 32px;
}

.testimonial { text-align: center; }

.testimonial .stars-green {
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: block;
}

.testimonial p {
  font-size: 0.88rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 16px;
}

.author {
  font-size: 0.75rem;
  color: var(--gray);
  display: block;
}

.slider-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.arrow-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 1.4rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  line-height: 1;
}
.arrow-btn:hover { background: var(--dark); color: var(--white); }

/* ════════════════════════════════════════
   TURBANS
════════════════════════════════════════ */
.turbans-section { background: var(--white); }

.turbans-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}

.turbans-left { display: flex; align-items: center; }

.turbans-title {
  font-family: var(--font-s);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.turbans-center {
  width: clamp(200px, 28vw, 380px);
  aspect-ratio: 3/4;
  overflow: hidden;
  flex-shrink: 0;
}
.turbans-center img { transition: transform .6s; }
.turbans-center:hover img { transform: scale(1.04); }

.turbans-right p {
  font-size: 0.87rem;
  color: var(--gray2);
  line-height: 1.75;
}

/* ════════════════════════════════════════
   AVANTAGES
════════════════════════════════════════ */
.advantages-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.advantages-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.advantage {
  padding: clamp(28px, 4vw, 52px) clamp(20px, 3vw, 40px);
  text-align: center;
  border-right: 1px solid var(--border);
}
.advantage:last-child { border-right: none; }

.adv-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--dark);
}

.advantage h3 {
  font-family: var(--font-s);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.advantage p {
  font-size: 0.82rem;
  color: var(--gray2);
  line-height: 1.7;
}

.adv-intl {
  margin: 10px 0;
  font-size: 0.82rem !important;
}

/* ════════════════════════════════════════
   BLOG SPLIT
════════════════════════════════════════ */
.blog-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(300px, 40vw, 540px);
}

.blog-img { overflow: hidden; }
.blog-img img { transition: transform .7s; }
.blog-img:hover img { transform: scale(1.03); }

.blog-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 72px) clamp(28px, 5vw, 72px);
}

.blog-text h2 {
  font-family: var(--font-s);
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.blog-text p {
  font-size: 0.87rem;
  color: var(--gray2);
  line-height: 1.75;
}

/* ════════════════════════════════════════
   NEWSLETTER
════════════════════════════════════════ */
.newsletter-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  background: var(--white);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.newsletter-label {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.04em;
}

.newsletter-form {
  flex: 1;
  max-width: 520px;
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
}

.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-family: var(--font-b);
  font-size: 0.85rem;
  color: var(--dark);
  background: transparent;
}
.newsletter-form input::placeholder { color: #aaa; }

.newsletter-form button {
  padding: 12px 20px;
  background: transparent;
  font-size: 1.1rem;
  color: var(--dark);
  transition: background .2s;
  flex-shrink: 0;
}
.newsletter-form button:hover { background: #f0efed; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: var(--white);
}

.footer-top {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.copyright {
  font-size: 0.78rem;
  color: var(--gray);
}
.copyright a {
  color: var(--gray);
  margin-left: 16px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.copyright a:hover { color: var(--dark); }

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-socials a {
  color: var(--dark);
  opacity: 0.6;
  display: flex;
  transition: opacity .2s;
}
.footer-socials a:hover { opacity: 1; }

.footer-cols {
  padding: clamp(32px, 4vw, 56px) 0 clamp(24px, 3vw, 40px);
}

.footer-cols-inner {
  display: grid;
  grid-template-columns: repeat(3, 180px);
  gap: clamp(32px, 5vw, 80px);
}

.footer-col h4 {
  font-family: var(--font-s);
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--gray);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--dark); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
  .product-grid.col4 { grid-template-columns: repeat(3, 1fr); }
  .collection-grid.col4 { grid-template-columns: repeat(2, 1fr); }
  .turbans-layout { grid-template-columns: 1fr; text-align: center; }
  .turbans-center { width: clamp(180px, 50%, 320px); margin: 0 auto; }
  .turbans-left { justify-content: center; }
}

@media (max-width: 860px) {
  .nav-left { display: none; }
  .header-nav { grid-template-columns: 1fr auto; }

  .hero-images { grid-template-columns: 1fr; }
  .hero .hero-img:last-child { display: none; }

  .product-grid.col4 { grid-template-columns: repeat(2, 1fr); }
  .collection-grid.col4 { grid-template-columns: repeat(2, 1fr); }
  .testimonials-row { grid-template-columns: 1fr; }
  .advantages-row { grid-template-columns: 1fr; }
  .advantage { border-right: none; border-bottom: 1px solid var(--border); }
  .advantage:last-child { border-bottom: none; }
  .instant-split { grid-template-columns: 1fr; }
  .creer-images { grid-template-columns: 1fr; }
  .blog-split { grid-template-columns: 1fr; }
  .footer-cols-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .product-grid.col4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .collection-grid.col4 { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { width: 100%; max-width: 100%; }
  .footer-cols-inner { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   CART BADGE + ADD BUTTON
══════════════════════════════════════════ */
.cart-icon-btn { position: relative; }

.cart-badge {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  pointer-events: none;
}

.product-card { position: relative; }

.btn-add-cart {
  position: absolute;
  bottom: 12px; left: 50%; transform: translateX(-50%);
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: 10px 20px;
  font-size: .72rem;
  font-family: var(--font-b);
  font-weight: 500;
  letter-spacing: .08em;
  cursor: pointer;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s, background .2s;
  z-index: 2;
}
.product-img:hover .btn-add-cart { opacity: 1; }
.btn-add-cart:hover { background: var(--dark); color: #fff; }

/* ══════════════════════════════════════════
   CART DRAWER
══════════════════════════════════════════ */
.cart-drawer {
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none;
}
.cart-drawer.open { pointer-events: all; }

.cart-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  transition: opacity .3s;
}
.cart-drawer.open .cart-backdrop { opacity: 1; }

.cart-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 100vw;
  background: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 40px rgba(0,0,0,.12);
}
.cart-drawer.open .cart-panel { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid #e5e7eb;
}
.cart-title {
  font-family: var(--font-b);
  font-size: 1rem; font-weight: 600; letter-spacing: .02em;
  display: flex; align-items: center; gap: 10px;
}
.cart-count-bubble {
  background: var(--dark);
  color: #fff;
  font-size: .72rem; font-weight: 700;
  min-width: 22px; height: 22px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
}
.cart-close-btn {
  background: none; border: none; cursor: pointer;
  padding: 6px; color: var(--dark);
  display: flex; align-items: center;
}

.cart-items-wrap {
  flex: 1; overflow-y: auto;
  padding: 0;
}

.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px;
  height: 100%; padding: 60px 24px; text-align: center;
  color: #aaa; font-size: .85rem;
}
.cart-continue-btn {
  background: none; border: 1px solid var(--dark);
  padding: 10px 22px; font-size: .78rem; letter-spacing: .08em;
  cursor: pointer; color: var(--dark);
  font-family: var(--font-b);
}

/* Cart items list */
.cart-item {
  display: flex; gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid #f3f4f6;
}
.cart-item-img {
  width: 72px; height: 96px;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid #f0f0f0;
}
.cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cart-item-name { font-size: .85rem; font-weight: 500; }
.cart-item-price { font-size: .82rem; color: var(--gray); }
.cart-item-controls {
  display: flex; align-items: center; gap: 8px; margin-top: auto;
}
.cart-qty-btn {
  width: 28px; height: 28px;
  border: 1px solid #e5e7eb; background: none;
  cursor: pointer; font-size: 1rem; display: flex;
  align-items: center; justify-content: center;
  color: var(--dark);
}
.cart-qty-val { font-size: .85rem; min-width: 20px; text-align: center; }
.cart-item-delete {
  margin-left: auto;
  background: none; border: none; cursor: pointer;
  color: #bbb; padding: 4px;
}
.cart-item-delete:hover { color: #ef4444; }
.cart-item-total { font-size: .85rem; font-weight: 600; white-space: nowrap; }

/* Cart footer */
.cart-footer {
  border-top: 1px solid #e5e7eb;
  padding: 0 0 20px;
}
.cart-collapse-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px;
  cursor: pointer;
  font-size: .82rem;
  border-bottom: 1px solid #f3f4f6;
  user-select: none;
}
.cart-collapse-icon { font-size: 1.2rem; line-height: 1; }
.cart-collapse-body { padding: 12px 24px; border-bottom: 1px solid #f3f4f6; }
.cart-note-input {
  width: 100%; border: 1px solid #e5e7eb;
  padding: 10px; font-size: .82rem;
  font-family: var(--font-b); resize: none; outline: none;
}
.cart-promo-row { display: flex; gap: 8px; }
.cart-promo-input {
  flex: 1; border: 1px solid #e5e7eb;
  padding: 10px 12px; font-size: .82rem;
  font-family: var(--font-b); outline: none;
}
.cart-promo-apply {
  padding: 10px 16px; background: var(--dark); color: #fff;
  border: none; cursor: pointer; font-size: .78rem;
  font-family: var(--font-b); letter-spacing: .06em;
}
.cart-promo-msg { font-size: .75rem; margin-top: 6px; }
.cart-promo-msg.ok  { color: #10b981; }
.cart-promo-msg.err { color: #ef4444; }

.cart-total-wrap { padding: 16px 24px 12px; }
.cart-total-line {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .9rem; font-weight: 600;
}
.cart-total-sub { font-size: .72rem; color: #aaa; margin-top: 4px; }

.btn-cart-pay {
  display: block; margin: 12px 24px 0;
  background: var(--primary); color: #fff;
  text-align: center;
  padding: 16px;
  font-size: .82rem; font-weight: 600; letter-spacing: .12em;
  text-decoration: none;
  transition: background .2s;
}
.btn-cart-pay:hover { background: var(--primary-hover); }

/* ══════════════════════════════════════════
   CATALOG PAGE (Boutique, Collections filtrées)
══════════════════════════════════════════ */
.catalog-hero {
  padding: clamp(28px, 3.5vw, 48px) 0 0;
}
.catalog-title {
  font-family: var(--font-s);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--dark);
  letter-spacing: .01em;
  margin-bottom: 8px;
}
.catalog-desc {
  font-size: .87rem;
  color: var(--gray);
  line-height: 1.65;
  max-width: 520px;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 24px 0;
  flex-wrap: wrap;
}
.filter-bar-left  { display: flex; gap: 8px; flex: 1; flex-wrap: wrap; }
.filter-bar-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.filter-dropdown { position: relative; }
.filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-size: .78rem;
  font-family: var(--font-b);
  color: var(--dark);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .2s;
}
.filter-btn:hover { border-color: var(--gray2); }
.filter-chevron { font-size: .6rem; }

.filter-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 190px;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(0,0,0,.09);
  overflow: hidden;
  list-style: none;
}
.filter-menu li {
  padding: 10px 16px;
  font-size: .82rem;
  cursor: pointer;
  transition: background .15s;
}
.filter-menu li:hover { background: var(--light); }
.filter-menu li.active { color: var(--primary); font-weight: 600; }

.catalog-count { font-size: .78rem; color: var(--gray); white-space: nowrap; }

.sort-wrap { position: relative; }
.sort-wrap::after {
  content: '▾';
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  font-size: .6rem; pointer-events: none; color: var(--gray);
}
.sort-select {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 28px 8px 14px;
  font-size: .78rem;
  font-family: var(--font-b);
  color: var(--dark);
  background: var(--white);
  cursor: pointer;
  outline: none;
  appearance: none;
}

.toggle-btns { display: flex; gap: 4px; }
.toggle-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  color: var(--gray);
  transition: border-color .2s, color .2s;
}
.toggle-btn.toggle-active, .toggle-btn:hover { border-color: var(--dark); color: var(--dark); }

.catalog-grid { display: grid; gap: 20px; grid-template-columns: repeat(4,1fr); }
@media(max-width:1100px){ .catalog-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:740px) { .catalog-grid { grid-template-columns: repeat(2,1fr); gap:12px; } }

.catalog-grid.catalog-list-view { grid-template-columns: 1fr !important; }
.catalog-grid.catalog-list-view .product-img { aspect-ratio: 3/1; max-height: 220px; }

/* Collections page tiles */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  padding: 32px 0 60px;
}
@media(max-width:900px)  { .collections-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px)  { .collections-grid { grid-template-columns: repeat(2,1fr); gap:8px; } }

/* Contact page */
.contact-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(40px,5vw,80px) var(--pad) 80px;
}
.contact-title {
  font-family: var(--font-s);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  text-align: center;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-sub {
  text-align: center;
  font-size: .87rem;
  color: var(--gray);
  margin-bottom: 36px;
}
.contact-info {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 36px;
  margin-bottom: 36px;
  font-size: .87rem;
  color: var(--dark);
  line-height: 1.9;
}
.contact-info p { margin-bottom: 4px; }
.contact-info strong { color: var(--primary); }
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media(max-width:600px){ .contact-form-grid { grid-template-columns: 1fr; } }
.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-field.full { grid-column: 1 / -1; }
.contact-field label { font-size: .72rem; font-weight: 600; color: var(--gray); letter-spacing: .08em; text-transform: uppercase; }
.contact-input, .contact-textarea {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: .88rem;
  font-family: var(--font-b);
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
}
.contact-input:focus, .contact-textarea:focus { border-color: var(--primary); }
.contact-textarea { resize: vertical; min-height: 120px; }
.contact-submit {
  margin-top: 8px;
  padding: 14px 40px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.contact-submit:hover { background: var(--primary-hover); }

/* ══════════════════════════════════════════
   NEW PREMIUM FEATURES — LA TEAM TIM
══════════════════════════════════════════ */

/* ══ ANNOUNCEMENT BAR ══ */
.announcement-bar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 10px 40px;
  font-size: .75rem;
  letter-spacing: .1em;
  position: relative;
  z-index: 500;
}
.announcement-bar span { opacity: .85; }
.announcement-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  opacity: .7;
  line-height: 1;
  padding: 4px 8px;
}
.announcement-close:hover { opacity: 1; }

/* ══ MOBILE MENU ══ */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: all .3s;
}
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}
#mobile-menu.open { pointer-events: all; }
.mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity .3s;
}
#mobile-menu.open .mobile-backdrop { opacity: 1; }
.mobile-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
#mobile-menu.open .mobile-panel { transform: translateX(0); }
.mobile-panel .brand {
  text-align: left;
  margin-bottom: 24px;
  font-size: 1.3rem;
  display: block;
}
.mobile-panel a {
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color .2s;
}
.mobile-panel a:hover { color: var(--primary); }

/* ══ MARQUEE ══ */
.marquee-strip {
  background: var(--primary);
  color: #fff;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-block;
  padding: 0 32px;
  font-size: .72rem;
  letter-spacing: .2em;
  font-weight: 500;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══ WISHLIST HEART ══ */
.btn-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.92);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.product-img:hover .btn-wishlist { opacity: 1; }
.btn-wishlist.wishlisted { opacity: 1; }
.btn-wishlist svg { transition: fill .2s; }
.btn-wishlist.wishlisted svg { fill: #ef4444; stroke: #ef4444; }
.btn-wishlist:hover { transform: scale(1.1); }

/* ══ BADGE NOUVEAU ══ */
.badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--accent);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 10px;
}

/* ══ PRODUCT CARD HOVER ENHANCEMENT ══ */
.product-card {
  transition: box-shadow .3s ease;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(124,49,81,.12);
}
.product-name {
  font-family: var(--font-s);
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .02em;
}
.product-price {
  font-weight: 600;
  font-size: .85rem;
  color: var(--primary);
  margin-top: 5px;
}

/* ══ SCROLL ANIMATIONS ══ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ══ QUICK VIEW MODAL ══ */
#quickview-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
#quickview-modal.open { display: flex; }
.qv-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.qv-box {
  position: relative;
  background: var(--white);
  max-width: 860px;
  width: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 4px;
  overflow: hidden;
  max-height: 90vh;
  z-index: 1;
}
.qv-img {
  overflow: hidden;
  aspect-ratio: 2/3;
}
.qv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.qv-info {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}
.qv-name {
  font-family: var(--font-s);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.25;
}
.qv-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}
.qv-desc {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.7;
}
.qv-add {
  margin-top: auto;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.qv-add:hover { background: var(--primary-hover); }
.qv-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  background: var(--dark);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}
@media(max-width:640px) {
  .qv-box { grid-template-columns: 1fr; }
  .qv-img { aspect-ratio: 3/2; }
}

/* ══ TOAST NOTIFICATION ══ */
#cart-toast {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 99999;
  background: var(--dark);
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: .84rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  transform: translateY(20px);
  opacity: 0;
  transition: all .3s ease;
  pointer-events: none;
  max-width: 320px;
}
#cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}
.toast-check {
  width: 22px;
  height: 22px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .7rem;
}

/* ══ FLOATING WHATSAPP ══ */
.float-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}
.float-whatsapp::before {
  content: 'WhatsApp';
  position: absolute;
  right: calc(100% + 10px);
  background: var(--dark);
  color: #fff;
  font-size: .72rem;
  font-family: var(--font-b);
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.float-whatsapp:hover::before { opacity: 1; }

/* ══ SCROLL TO TOP ══ */
#scroll-top {
  position: fixed;
  bottom: 32px;
  right: 100px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s;
  box-shadow: 0 4px 12px rgba(124,49,81,.3);
}
#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
#scroll-top:hover { background: var(--primary-hover); }

/* ══ SEARCH OVERLAY ══ */
#search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 120px;
}
#search-overlay.open { display: flex; }
.search-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--dark);
  line-height: 1;
  opacity: .6;
  transition: opacity .2s;
}
.search-close:hover { opacity: 1; }
.search-input-wrap {
  width: 100%;
  max-width: 680px;
  border-bottom: 2px solid var(--dark);
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 12px;
  padding: 0 var(--pad) 12px;
}
.search-input-wrap svg { color: var(--gray); flex-shrink: 0; }
#search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-s);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  background: transparent;
  color: var(--dark);
}
#search-input::placeholder { color: #ccc; }
.search-results {
  margin-top: 40px;
  width: 100%;
  max-width: 680px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  padding: 0 var(--pad);
}
.search-result-card {
  cursor: pointer;
  text-align: left;
}
.search-result-card img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 2px;
}
.search-result-name {
  font-size: .8rem;
  margin-top: 8px;
  color: var(--dark);
  font-family: var(--font-s);
  font-size: .95rem;
}
.search-result-price {
  font-size: .78rem;
  color: var(--primary);
  font-weight: 600;
}
.search-no-result {
  width: 100%;
  max-width: 680px;
  text-align: center;
  padding: 40px 0;
  color: var(--gray);
  font-size: .9rem;
}

/* ══ NEWSLETTER REDESIGN ══ */
.newsletter-full {
  background: var(--dark);
  padding: clamp(48px, 6vw, 80px) 0;
  text-align: center;
}
.newsletter-full h2 {
  font-family: var(--font-s);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: .04em;
  margin-bottom: 12px;
  font-style: italic;
}
.newsletter-full p {
  font-size: .87rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 32px;
}
.newsletter-full-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  overflow: hidden;
}
.newsletter-full-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 24px;
  font-family: var(--font-b);
  font-size: .88rem;
  color: #fff;
}
.newsletter-full-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-full-form button {
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
  font-family: var(--font-b);
}
.newsletter-full-form button:hover { background: #b07e58; }
.newsletter-full-thanks {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  padding: 14px;
  font-family: var(--font-s);
  font-style: italic;
  font-size: 1.1rem;
}

/* ══ STATS STRIP ══ */
.stats-strip {
  background: var(--primary-light);
  padding: clamp(28px, 3vw, 44px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-s);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: .72rem;
  color: var(--gray);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ══ HERO REDESIGN ══ */
.hero-overlay-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 80px;
  background: linear-gradient(to top, rgba(35,18,24,.7) 0%, rgba(35,18,24,.15) 45%, transparent 100%);
  z-index: 2;
}
.hero-overlay-inner {
  text-align: center;
  color: #fff;
  max-width: 620px;
  padding: 0 20px;
}
.hero-overlay-inner h1 {
  font-family: var(--font-s);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: .04em;
  line-height: 1.2;
  margin-bottom: 24px;
  font-style: italic;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.7);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  z-index: 3;
  animation: bounce-scroll 2s infinite;
  pointer-events: none;
}
@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ══ HEADER MOBILE ADJUSTMENTS ══ */
@media(max-width:860px) {
  .hamburger-btn { display: flex; }
  .nav-left { display: none !important; }
  .header-nav { grid-template-columns: auto 1fr auto; }
}

/* ══ MOBILE RESPONSIVE NEW ELEMENTS ══ */
@media(max-width:480px) {
  .float-whatsapp { bottom: 20px; right: 20px; width: 48px; height: 48px; }
  #scroll-top { bottom: 20px; right: 80px; }
  #cart-toast { left: 16px; right: 16px; max-width: none; bottom: 16px; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

/* ══ LIEN ADMIN DISCRET ══ */
.footer-admin-link { display:inline; margin-left:12px; }
.footer-admin-link a { color:var(--dark); font-size:11px; opacity:.15; text-decoration:none; transition:opacity .2s; }
.footer-admin-link a:hover { opacity:.8; }

/* ══════════════════════════════════════════
   COLOR SWATCHES
══════════════════════════════════════════ */
.product-colors {
  display: flex;
  gap: 5px;
  margin-top: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.10);
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  flex-shrink: 0;
  display: inline-block;
}
.color-dot:hover {
  transform: scale(1.3);
  border-color: rgba(0,0,0,.3);
}
.color-dot.active {
  transform: scale(1.15);
  border-color: var(--dark);
  box-shadow: 0 0 0 1.5px var(--dark);
}
/* white dot needs a visible ring */
.color-dot[style*="#F5"],
.color-dot[style*="#f5"],
.color-dot[style*="#FFF"],
.color-dot[style*="#fff"] {
  border-color: rgba(0,0,0,.2);
}

/* ── Filter chips ──────────────────────────────────────── */
.catalog-filters { display:flex; gap:16px; flex-wrap:wrap; align-items:center; margin-bottom:24px; padding-bottom:20px; border-bottom:1px solid var(--light); }
.filter-group { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.filter-label { font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; color:#9ca3af; white-space:nowrap; }
.filter-chips { display:flex; gap:6px; flex-wrap:wrap; }
.chip { padding:5px 14px; border:1px solid #e5e7eb; background:#fff; border-radius:20px; font-size:.8rem; cursor:pointer; transition:all .2s; color:var(--dark); }
.chip:hover { border-color:var(--dark); }
.chip.chip-active { background:var(--dark); color:#fff; border-color:var(--dark); }
.filter-count { font-size:.8rem; color:#9ca3af; }
.btn-wishlist-share { padding:6px 14px; border:1px solid var(--accent); background:transparent; color:var(--accent); border-radius:20px; font-size:.8rem; cursor:pointer; transition:all .2s; }
.btn-wishlist-share:hover { background:var(--accent); color:#fff; }

/* ── Stock alert badge ─────────────────────────────────── */
.badge-stock-low { position:absolute; top:8px; right:8px; background:#ff6b35; color:#fff; font-size:.6rem; padding:2px 7px; border-radius:10px; text-transform:uppercase; letter-spacing:.05em; font-weight:600; }

/* ── Newsletter popup ──────────────────────────────────── */
#nl-popup { position:fixed; inset:0; z-index:9999; display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .4s; pointer-events:none; }
#nl-popup.nl-show { opacity:1; pointer-events:all; }
.nl-overlay { position:absolute; inset:0; background:rgba(0,0,0,.5); }
.nl-box { position:relative; z-index:1; background:#fff; max-width:420px; width:90%; padding:48px 40px; text-align:center; transform:translateY(20px); transition:transform .4s; }
#nl-popup.nl-show .nl-box { transform:translateY(0); }
.nl-close { position:absolute; top:16px; right:16px; background:none; border:none; font-size:1.1rem; cursor:pointer; color:#9ca3af; }
.nl-eyebrow { font-size:.7rem; text-transform:uppercase; letter-spacing:.15em; color:var(--accent); margin-bottom:8px; }
.nl-title { font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-weight:600; margin-bottom:12px; }
.nl-sub { font-size:.88rem; color:#6b7280; margin-bottom:24px; line-height:1.6; }
.nl-form { display:flex; flex-direction:column; gap:10px; }
.nl-form input { padding:12px 16px; border:1px solid #e5e7eb; font-size:.88rem; outline:none; }
.nl-form input:focus { border-color:var(--dark); }
.nl-form button { padding:12px; background:var(--dark); color:#fff; border:none; cursor:pointer; font-size:.88rem; text-transform:uppercase; letter-spacing:.08em; transition:opacity .2s; }
.nl-form button:hover { opacity:.85; }
.nl-skip { background:none; border:none; color:#9ca3af; font-size:.8rem; cursor:pointer; margin-top:12px; text-decoration:underline; }
