/* ── COMPOSANTS RÉUTILISABLES L0CKEY0U ───────────────────────────────────── */

/* ── STEPS ───────────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}

.step {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 1.75rem 1.4rem;
  transition: border-color .3s, transform .3s;
}

.step:hover { border-color: rgba(245,166,35,.4); transform: translateY(-3px); }
.snum { font-family: Georgia, serif; font-size: 2.8rem; font-weight: 700; color: rgba(245,166,35,.15); line-height: 1; margin-bottom: .8rem; }
.step h3 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.step p { font-size: .83rem; color: var(--muted); line-height: 1.65; }

/* ── BEN CARDS ───────────────────────────────────────────────────────────── */
.ben-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}

.ben-card {
  background: rgba(7,38,56,.7);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 1.75rem;
  transition: border-color .3s;
}

.ben-card:hover { border-color: rgba(245,166,35,.35); }
.ben-ico { width: 48px; height: 48px; background: rgba(245,166,35,.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1rem; }
.ben-card h3 { font-size: .95rem; font-weight: 700; color: var(--amber); margin-bottom: .7rem; }
.ben-card ul { list-style: none; }
.ben-card li { font-size: .83rem; color: var(--muted); padding: .3rem 0; border-bottom: 1px solid rgba(255,255,255,.05); display: flex; gap: .5rem; line-height: 1.5; }
.ben-card li::before { content: '→'; color: var(--amber); flex-shrink: 0; }

/* ── FEAT CARDS ──────────────────────────────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.feat {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: 1.3rem;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  transition: border-color .2s;
}

.feat:hover { border-color: rgba(245,166,35,.25); }
.feat-ico { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.feat h4 { font-size: .88rem; font-weight: 700; margin-bottom: .3rem; }
.feat p { font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* ── ACC CARDS ───────────────────────────────────────────────────────────── */
.acc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  justify-content: center;
}

.acc-grid .acc-card { flex: 1 1 200px; max-width: 260px; }

.acc-card {
  text-align: center;
  padding: 1.75rem 1rem;
  background: rgba(7,38,56,.6);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  transition: border-color .3s, background .3s;
}

.acc-card:hover { border-color: var(--amber); background: rgba(245,166,35,.05); }
.acc-ico { margin-bottom: .8rem; display: flex; align-items: center; justify-content: center; }
.acc-card h4 { font-size: .88rem; font-weight: 700; margin-bottom: .35rem; }
.acc-card p { font-size: .78rem; color: var(--muted); line-height: 1.5; }

/* ── TEST CARDS ──────────────────────────────────────────────────────────── */
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}

.test-card {
  background: rgba(7,38,56,.7);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: border-color .3s;
}

.test-card:hover { border-color: rgba(245,166,35,.3); }
.stars { color: var(--amber); font-size: .85rem; letter-spacing: 2px; }
.test-text { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.85); font-style: italic; flex: 1; }
.test-author { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.avatar { width: 38px; height: 38px; border-radius: 50%; border: 2px solid rgba(245,166,35,.3); display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; overflow: hidden; background: rgba(245,166,35,.15); color: var(--amber); font-weight: 700; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-size: .82rem; font-weight: 700; }
.author-role { font-size: .73rem; color: var(--muted); }

/* ── PRICE CARDS ─────────────────────────────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}

.price-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  transition: border-color .3s, transform .3s;
  display: flex;
  flex-direction: column;
}

.btn-price-p, .btn-price-o { margin-top: auto; }

.price-card:hover { transform: translateY(-3px); }
.price-card.featured { border: 2px solid var(--amber); background: rgba(245,166,35,.06); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--amber); color: var(--navy); font-size: .72rem; font-weight: 700; padding: .3rem .9rem; border-radius: 50px; white-space: nowrap; }
.price-name { font-family: Georgia, serif; font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; }
.price-amount { font-family: Georgia, serif; font-size: 2.4rem; font-weight: 700; color: var(--amber); line-height: 1; margin-bottom: .2rem; }
.price-amount span { font-size: .95rem; font-weight: 400; color: var(--muted); }
.price-desc { font-size: .82rem; color: var(--muted); margin-bottom: 1.2rem; line-height: 1.5; }
.price-features { list-style: none; margin-bottom: 1.5rem; }
.price-features li { font-size: .82rem; color: var(--muted); padding: .35rem 0; border-bottom: 1px solid rgba(255,255,255,.05); display: flex; gap: .5rem; align-items: flex-start; line-height: 1.5; }
.price-features li::before { content: '✓'; color: var(--amber); flex-shrink: 0; font-weight: 700; }
.price-features li.no { color: rgba(160,180,192,.4); }
.price-features li.no::before { content: '×'; color: rgba(160,180,192,.3); }
.btn-price-p { display: block; text-align: center; background: var(--amber); color: var(--navy); padding: .75rem; border-radius: 50px; font-weight: 700; font-size: .88rem; transition: background .2s; text-decoration: none; }
.btn-price-p:hover { background: var(--amber-light); }
.btn-price-o { display: block; text-align: center; background: transparent; color: var(--white); padding: .75rem; border-radius: 50px; font-weight: 500; font-size: .88rem; border: 1px solid rgba(255,255,255,.2); transition: border-color .2s; text-decoration: none; }
.btn-price-o:hover { border-color: var(--white); }

/* ── FAQ ACCORDION ───────────────────────────────────────────────────────── */
.faq-grid, .faq-wrap {
  max-width: 780px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.faq-item {
  background: rgba(7,38,56,.6);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  padding: 1.2rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-q svg { flex-shrink: 0; transition: transform .25s; color: var(--amber); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  padding: 0 1.5rem;
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item.open .faq-a { max-height: 400px; padding: .2rem 1.5rem 1.2rem; }
.faq-a a { color: var(--amber); }

/* ── PROFIL CARDS ────────────────────────────────────────────────────────── */
.profils-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.profil-card {
  background: rgba(7,38,56,.6);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.profil-card:hover { border-color: rgba(245,166,35,.4); transform: translateY(-4px); }

.profil-illus {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.profil-illus-icon { opacity: .12; position: absolute; }
.profil-illus-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.profil-mock { background: rgba(13,58,82,.85); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: .9rem 1.2rem; width: 200px; }
.profil-mock-row { height: 7px; border-radius: 4px; background: rgba(255,255,255,.08); margin-bottom: .5rem; }
.profil-mock-row.amber { background: rgba(245,166,35,.3); width: 60%; }
.profil-mock-row.short { width: 75%; }
.profil-mock-stat { display: flex; justify-content: space-between; margin-top: .6rem; }
.profil-mock-stat span { font-size: .55rem; color: var(--amber); font-weight: 700; }
.profil-pill { background: rgba(245,166,35,.15); border: 1px solid rgba(245,166,35,.25); border-radius: 50px; padding: .3rem .9rem; font-size: .65rem; font-weight: 700; color: var(--amber); }
.profil-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .6rem; }
.profil-label { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; color: var(--amber); }
.profil-body h3 { font-family: Georgia, serif; font-size: 1.1rem; font-weight: 700; }
.profil-body p { font-size: .82rem; color: var(--muted); line-height: 1.65; }
.profil-list { list-style: none; display: flex; flex-direction: column; gap: .35rem; margin-top: .3rem; }
.profil-list li { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: var(--light); }
.profil-list li svg { color: var(--amber); flex-shrink: 0; }
.profil-cta { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 700; color: var(--amber); margin-top: auto; padding-top: .8rem; }

/* ── CART DRAWER ─────────────────────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

/* ── CART DRAWER ─────────────────────────────────────────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 400px;
  max-width: 95vw;
  background: var(--navy-mid);
  border-left: 1px solid rgba(255,255,255,.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { transform: translateX(0); }

/* Header */
.cart-drawer-header { padding: 1.2rem 1.4rem; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.cart-drawer-title { font-family: Georgia, serif; font-size: 1.05rem; font-weight: 700; display: flex; align-items: center; gap: .55rem; color: var(--white); }
.cart-drawer-title .cart-count { background: var(--amber); color: var(--navy); font-size: .6rem; font-weight: 800; min-width: 20px; height: 20px; border-radius: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 5px; }
.cart-close { background: none; border: none; cursor: pointer; color: var(--muted); padding: .35rem; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: color .2s; }
.cart-close:hover { color: var(--white); }

/* Items list */
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.4rem; display: flex; flex-direction: column; gap: .75rem; }

/* Empty state */
.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: var(--muted); padding: 2rem; text-align: center; }
.cart-empty svg { opacity: .25; }
.cart-empty p { font-size: .85rem; }

/* Cart item */
.cart-item { background: rgba(7,38,56,.6); border: 1px solid rgba(255,255,255,.07); border-radius: 14px; padding: .9rem; display: flex; gap: .85rem; align-items: flex-start; }

/* Thumbnail */
.cart-item-thumb { width: 60px; height: 60px; border-radius: 10px; overflow: hidden; flex-shrink: 0; display: block; background: linear-gradient(135deg, var(--navy-mid), var(--navy-light)); }
.cart-item-thumb img, .cart-item-thumb .cart-item-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-thumb-ph { width: 60px; height: 60px; border-radius: 10px; background: rgba(245,166,35,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--amber); }

/* Item info */
.cart-item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .25rem; }
.cart-item-name { font-size: .85rem; font-weight: 700; color: var(--white); text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; }
.cart-item-name:hover { color: var(--amber); }
.cart-item-price { font-size: .8rem; color: var(--amber); font-weight: 700; }
.cart-item-price .woocommerce-Price-amount { font-size: .8rem; color: var(--amber); font-weight: 700; }

/* Qty controls */
.cart-item-qty { display: flex; align-items: center; gap: .35rem; margin-top: .3rem; }
.qty-btn { width: 26px; height: 26px; border-radius: 6px; background: rgba(255,255,255,.08); border: none; cursor: pointer; color: var(--white); display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; flex-shrink: 0; }
.qty-btn:hover { background: rgba(245,166,35,.2); color: var(--amber); }
.qty-val { font-size: .85rem; font-weight: 700; min-width: 22px; text-align: center; }

/* Remove button */
.cart-item-remove { background: none; border: none; cursor: pointer; color: rgba(255,255,255,.2); display: flex; align-items: flex-start; padding: .1rem; transition: color .2s; flex-shrink: 0; margin-top: .1rem; }
.cart-item-remove:hover { color: #ff6b6b; }

/* Footer */
.cart-drawer-footer { padding: 1.2rem 1.4rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column; gap: .75rem; flex-shrink: 0; }

/* Subtotal */
.cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; }
.cart-subtotal span:first-child { font-size: .82rem; color: var(--muted); }
.cart-total-amount { font-family: Georgia, serif; font-size: 1.35rem; font-weight: 700; color: var(--amber); }
.cart-total-amount .woocommerce-Price-amount { font-family: Georgia, serif; font-size: 1.35rem; font-weight: 700; color: var(--amber); }

/* Shipping note */
.cart-shipping-note { font-size: .72rem; color: var(--muted); text-align: center; margin-top: -.25rem; }

/* Buttons */
.btn-checkout { width: 100%; background: var(--amber); color: var(--navy); border: none; border-radius: 50px; padding: .9rem 1rem; font-size: .92rem; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; display: flex; align-items: center; justify-content: center; gap: .55rem; transition: all .2s; text-decoration: none; }
.btn-checkout:hover { background: var(--amber-light); transform: translateY(-1px); }
.btn-checkout:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* Reassurance strip */
.cart-reassurance { display: flex; justify-content: center; gap: 1.2rem; padding-top: .2rem; flex-wrap: wrap; }
.cart-reassurance span { display: flex; align-items: center; gap: .35rem; font-size: .72rem; color: var(--muted); }
.cart-reassurance svg { color: var(--amber); flex-shrink: 0; }

/* Light mode */
[data-theme="light"] .cart-drawer { background: #ffffff !important; border-left-color: rgba(7,38,56,.1) !important; }
[data-theme="light"] .cart-drawer-header { border-bottom-color: rgba(7,38,56,.08) !important; }
[data-theme="light"] .cart-drawer-footer { border-top-color: rgba(7,38,56,.08) !important; }
[data-theme="light"] .cart-item { background: #f8fbfe !important; border-color: rgba(7,38,56,.08) !important; }
[data-theme="light"] .cart-item-thumb { background: linear-gradient(135deg,#e8f0f8,#dde8f0) !important; }
[data-theme="light"] .cart-item-thumb-ph { background: rgba(245,166,35,.08) !important; }
[data-theme="light"] .cart-item-name { color: var(--text) !important; }
[data-theme="light"] .qty-btn { background: rgba(7,38,56,.08) !important; color: var(--text) !important; }
[data-theme="light"] .cart-reassurance span { color: var(--text-muted) !important; }

/* Cart button */
.cart-btn { position: relative; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 50px; padding: .45rem .9rem; display: flex; align-items: center; gap: .5rem; cursor: pointer; font-size: .82rem; font-weight: 700; color: var(--light); transition: all .2s; font-family: 'DM Sans', sans-serif; }
.cart-btn:hover { border-color: var(--amber); color: var(--amber); }
.cart-badge { position: absolute; top: -7px; right: -7px; background: var(--amber); color: var(--navy); font-size: .6rem; font-weight: 800; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0); transition: all .25s; }
.cart-badge.visible { opacity: 1; transform: scale(1); }

/* ── PRODUCT MODAL ───────────────────────────────────────────────────────── */
.prod-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 500; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(4px); }
.prod-modal-overlay.open { opacity: 1; pointer-events: all; }
.prod-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-48%); width: min(860px,95vw); max-height: 90vh; background: var(--navy-mid); border: 1px solid rgba(255,255,255,.1); border-radius: 24px; z-index: 501; overflow: hidden; display: flex; flex-direction: column; transition: opacity .3s, transform .3s; opacity: 0; }
.prod-modal-overlay.open .prod-modal { opacity: 1; transform: translate(-50%,-50%); }
.prod-modal-header { padding: 1.2rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.prod-modal-header h3 { font-family: Georgia, serif; font-size: 1.1rem; font-weight: 700; }
.modal-close { background: none; border: none; cursor: pointer; color: var(--muted); padding: .3rem; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: color .2s; }
.modal-close:hover { color: var(--white); }
.prod-modal-content { overflow-y: auto; padding: 1.5rem; display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; flex: 1; }
.modal-visual { aspect-ratio: 1; background: linear-gradient(135deg,var(--navy-mid),var(--navy-light)); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.modal-visual svg { opacity: .15; }
.modal-info { display: flex; flex-direction: column; gap: .9rem; }
.modal-cat { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--amber); }
.modal-title { font-family: Georgia, serif; font-size: 1.4rem; font-weight: 700; line-height: 1.2; }
.modal-desc { font-size: .83rem; color: var(--muted); line-height: 1.75; }
.modal-specs { display: flex; flex-direction: column; gap: .35rem; }
.modal-spec { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: var(--light); }
.modal-spec svg { color: var(--amber); flex-shrink: 0; }
.prod-modal-footer { padding: 1.2rem 1.5rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }
.modal-price { font-family: Georgia, serif; font-size: 1.6rem; font-weight: 700; color: var(--amber); }
.modal-price small { font-size: .72rem; color: var(--muted); font-family: 'DM Sans', sans-serif; font-weight: 400; display: block; }
.modal-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.btn-modal-add { background: var(--amber); color: var(--navy); border: none; border-radius: 50px; padding: .7rem 1.4rem; font-size: .85rem; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; display: flex; align-items: center; gap: .5rem; transition: all .2s; }
.btn-modal-add:hover { background: var(--amber-light); }
.btn-modal-detail { display: inline-flex; align-items: center; gap: .5rem; background: transparent; border: 2px solid rgba(255,255,255,.15); color: var(--light); border-radius: 50px; padding: .65rem 1.2rem; font-size: .82rem; font-weight: 700; text-decoration: none; transition: all .2s; }
.btn-modal-detail:hover { border-color: var(--amber); color: var(--amber); }

/* ── TOAST ───────────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: rgba(13,58,82,.95);
  border: 1px solid rgba(245,166,35,.3);
  border-radius: 12px;
  padding: .7rem 1.2rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: .6rem;
  backdrop-filter: blur(12px);
  transition: transform .3s, opacity .3s;
  opacity: 0;
  white-space: nowrap;
}

.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast svg { color: var(--amber); flex-shrink: 0; }

/* ── PROD BADGES ─────────────────────────────────────────────────────────── */
.prod-badge { position: absolute; top: .8rem; left: .8rem; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: .25rem .7rem; border-radius: 50px; z-index: 1; }
.badge-new { background: rgba(111,207,151,.15); color: #6fcf97; border: 1px solid rgba(111,207,151,.3); }
.badge-bundle { background: var(--amber); color: var(--navy); }
.badge-popular { background: rgba(206,147,216,.15); color: #ce93d8; border: 1px solid rgba(206,147,216,.3); }

/* ── FILTER BUTTONS ──────────────────────────────────────────────────────── */
.filters { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn { padding: .45rem 1rem; border-radius: 50px; font-size: .8rem; font-weight: 700; cursor: pointer; border: 2px solid rgba(255,255,255,.12); background: transparent; color: var(--muted); transition: all .2s; font-family: 'DM Sans', sans-serif; }
.filter-btn.active { background: var(--amber); color: var(--navy); border-color: var(--amber); }
.filter-btn:hover:not(.active) { border-color: var(--amber); color: var(--white); }

/* ── TABS ────────────────────────────────────────────────────────────────── */
.tabs { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.tab { padding: .6rem 1.4rem; border-radius: 50px; font-size: .85rem; font-weight: 700; cursor: pointer; border: 2px solid rgba(255,255,255,.12); background: transparent; color: var(--muted); transition: all .2s; font-family: 'DM Sans', sans-serif; }
.tab.active { background: var(--amber); color: var(--navy); border-color: var(--amber); }
.tab:hover:not(.active) { border-color: var(--amber); color: var(--white); }

/* ── FORM CARD ───────────────────────────────────────────────────────────── */
.form-card { background: rgba(13,58,82,.45); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 2.5rem; max-width: 680px; margin: 0 auto; }
.form-card h2 { font-family: Georgia, serif; font-size: 1.3rem; margin-bottom: .4rem; }
.form-card .form-desc { font-size: .85rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row.single { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .78rem; font-weight: 700; color: var(--light); letter-spacing: .05em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  background: rgba(7,38,56,.7);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .9rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  transition: border-color .2s;
  outline: none;
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--amber); background: rgba(7,38,56,.9); }
.field textarea { resize: vertical; min-height: 110px; }

/* ── LIGHT MODE COMPONENTS ───────────────────────────────────────────────── */
[data-theme="light"] .step,
[data-theme="light"] .ben-card,
[data-theme="light"] .feat,
[data-theme="light"] .acc-card,
[data-theme="light"] .test-card,
[data-theme="light"] .price-card,
[data-theme="light"] .faq-item,
[data-theme="light"] .profil-card {
  background: #ffffff !important;
  border-color: rgba(7,38,56,.1) !important;
  box-shadow: 0 2px 12px rgba(7,38,56,.06);
}

[data-theme="light"] .price-card.featured {
  border-color: var(--amber) !important;
  background: rgba(245,166,35,.04) !important;
}

[data-theme="light"] .step:hover,
[data-theme="light"] .feat:hover,
[data-theme="light"] .acc-card:hover,
[data-theme="light"] .test-card:hover,
[data-theme="light"] .profil-card:hover { border-color: var(--amber) !important; }

[data-theme="light"] .step p,
[data-theme="light"] .feat p,
[data-theme="light"] .acc-card p,
[data-theme="light"] .test-text,
[data-theme="light"] .price-desc,
[data-theme="light"] .faq-a { color: var(--text-muted) !important; }

[data-theme="light"] .faq-q { color: var(--text) !important; }
[data-theme="light"] .form-card { background: #ffffff !important; border-color: rgba(7,38,56,.1) !important; }
[data-theme="light"] .field label { color: var(--text) !important; }
[data-theme="light"] .field input,
[data-theme="light"] .field select,
[data-theme="light"] .field textarea {
  background: #ffffff !important;
  border-color: rgba(7,38,56,.15) !important;
  color: var(--text) !important;
}
[data-theme="light"] .field input:focus,
[data-theme="light"] .field select:focus,
[data-theme="light"] .field textarea:focus { border-color: var(--amber) !important; }

/* ── Bouton panier nav (global — header toutes pages) ────────────────────── */
.nav-cart { position:relative; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); border-radius:50px; padding:.45rem .9rem; display:flex; align-items:center; gap:.5rem; cursor:pointer; font-size:.82rem; font-weight:700; color:var(--light); transition:all .2s; font-family:'DM Sans',sans-serif; }
.nav-cart:hover { border-color:var(--amber); color:var(--amber); }
.nav-cart-badge { position:absolute; top:-7px; right:-7px; background:var(--amber); color:var(--navy); font-size:.6rem; font-weight:800; width:18px; height:18px; border-radius:50%; display:flex; align-items:center; justify-content:center; opacity:0; transform:scale(0); transition:all .25s; }
.nav-cart-badge.visible { opacity:1; transform:scale(1); }
[data-theme="light"] .nav-cart { background:rgba(7,38,56,.06) !important; border-color:rgba(7,38,56,.12) !important; color:var(--text-muted) !important; }

/* ── VIDEO MODAL ─────────────────────────────────────────────────────────── */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  backdrop-filter: blur(6px);
}
.video-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.video-modal-inner {
  position: relative;
  width: min(900px, 92vw);
}

.video-modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s;
  padding: .25rem .5rem;
}
.video-modal-close:hover { opacity: 1; }

.video-modal-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── TOAST ───────────────────────────────────────────────────────────────── */
.lky-toast { position:fixed; bottom:1.5rem; left:50%; transform:translateX(-50%) translateY(80px); background:rgba(13,58,82,.95); border:1px solid rgba(245,166,35,.3); border-radius:12px; padding:.7rem 1.2rem; font-size:.82rem; font-weight:600; color:var(--white); z-index:10000; display:flex; align-items:center; gap:.6rem; backdrop-filter:blur(12px); transition:transform .3s,opacity .3s; opacity:0; white-space:nowrap; pointer-events:none; }
.lky-toast.show,.lky-toast.visible { transform:translateX(-50%) translateY(0); opacity:1; }
.lky-toast svg { color:var(--amber); flex-shrink:0; }

/* ── RESPONSIVE COMPOSANTS ───────────────────────────────────────────────── */
@media (max-width: 860px) {
  .profils-grid { grid-template-columns: 1fr; }
  .prod-modal-content { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

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