/* ════════════════════════════════════════════
   SON OF JAH BAZO — main.css
   ════════════════════════════════════════════ */

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

/* ── Variables ─────────────────────────────── */
:root {
  --bg:      #0f0f0f;
  --bg2:     #181818;
  --card:    #141414;
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.13);
  --text:    #ededed;
  --text2:   #888;
  --text3:   #555;
  --gold:    #e8d5b0;
  --gap:     clamp(1.2rem, 4vw, 3rem);
}

/* ── Base ──────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(232,213,176,0.25); }


/* ════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem var(--gap);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  border-bottom-color: var(--border);
}
.nav-logo-img {
  height: 72px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.nav-logo:hover .nav-logo-img { opacity: 1; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--text2);
  transition: color 0.3s;
}
.nav-link:hover { color: var(--gold); }

#cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1.3rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  transition: background 0.3s, color 0.3s;
}
#cart-btn:hover { background: var(--gold); color: #111; }

#cart-count {
  position: absolute;
  top: -7px; right: -7px;
  background: var(--gold);
  color: #111;
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s, transform 0.3s;
}
#cart-count.visible { opacity: 1; transform: scale(1); }


/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem var(--gap) 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(232,213,176,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-logo-wrap {
  animation: fadeUp 0.9s ease both;
  margin-bottom: 1.2rem;
}
.hero-logo {
  width: clamp(240px, 38vw, 420px);
  height: auto;
}
.hero-tagline {
  font-size: clamp(0.72rem, 1.4vw, 0.88rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text2);
  animation: fadeUp 0.9s 0.25s ease both;
}
.hero-cta {
  margin-top: 2.5rem;
  animation: fadeUp 0.9s 0.45s ease both;
}
.btn-primary {
  display: inline-block;
  padding: 1rem 3.5rem;
  background: transparent;
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.3em;
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.btn-primary:hover { color: #111; }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }


/* ════════════════════════════════════════════
   SECTION HEADER
   ════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: clamp(2rem, 5vw, 4rem); }
.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: var(--text);
  line-height: 1;
}
.section-line {
  width: 40px; height: 1px;
  background: rgba(232,213,176,0.3);
  margin: 1rem auto 0;
}


/* ════════════════════════════════════════════
   PRODUCTS
   ════════════════════════════════════════════ */
#products {
  padding: clamp(4rem, 8vw, 8rem) var(--gap);
  max-width: 1280px;
  margin: 0 auto;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.8rem);
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.35s, transform 0.35s, border-color 0.35s;
}
.product-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transform: translateY(-3px);
  border-color: rgba(232,213,176,0.2);
}

/* ── Image container ──────────────────────── */
.product-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg2);
  line-height: 0;
}
.product-img-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

/* ── Carousel ─────────────────────────────── */
.product-img-wrap.has-carousel {
  aspect-ratio: 1 / 1;
}
.carousel { position: absolute; inset: 0; }
.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.carousel-slide.active { opacity: 1; pointer-events: auto; }
.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(232,213,176,0.3);
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 3;
  color: var(--gold);
}
.product-img-wrap:hover .carousel-btn { opacity: 1; }
.carousel-btn.prev { left: 0.4rem; }
.carousel-btn.next { right: 0.4rem; }
.carousel-dots {
  position: absolute;
  bottom: 0.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.3rem;
  z-index: 3;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(232,213,176,0.3);
  border: none; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: var(--gold); transform: scale(1.3); }

.product-badge {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: #111;
  padding: 0.45rem 1.1rem;
  z-index: 2;
  white-space: nowrap;
  line-height: 1.4;
}

/* ── Product info ─────────────────────────── */
.product-info { padding: 1.2rem 1.3rem 1.5rem; }
.product-name {
  font-size: 1.5rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.product-desc {
  font-size: 0.72rem;
  color: var(--text2);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.product-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.stock-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.18rem 0.55rem;
  margin-bottom: 0.7rem;
}
.stock-out { background: rgba(192,57,43,0.15); color: #ff8080; border: 1px solid rgba(192,57,43,0.3); }
.stock-low { background: rgba(241,196,15,0.1); color: #f0c040; border: 1px solid rgba(241,196,15,0.25); }

/* ── Product actions ──────────────────────── */
.product-actions { display: flex; height: 40px; }
.qty-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--border2);
  flex-shrink: 0;
}
.qty-btn {
  background: none; border: none;
  color: var(--text2);
  width: 32px;
  font-size: 1rem;
  transition: color 0.2s, background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { color: var(--gold); background: rgba(232,213,176,0.08); }
.qty-btn:disabled, .btn-add-cart:disabled { opacity: 0.3; cursor: not-allowed; }
.qty-input {
  width: 32px;
  background: none; border: none;
  color: var(--text);
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  outline: none;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.btn-add-cart {
  flex: 1;
  background: transparent;
  border: 1px solid var(--border2);
  border-left: none;
  color: var(--text2);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-add-cart:hover { background: var(--gold); color: #111; border-color: var(--gold); }
.btn-add-cart.added { background: rgba(232,213,176,0.15); color: var(--gold); border-color: rgba(232,213,176,0.3); }


/* ════════════════════════════════════════════
   CART DRAWER
   ════════════════════════════════════════════ */
#cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 990;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(4px);
}
#cart-overlay.open { opacity: 1; pointer-events: all; }

#cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(400px, 100vw);
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 995;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
#cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 1.7rem; color: var(--gold); }
.cart-close {
  background: none; border: none;
  color: var(--text2);
  font-size: 1.8rem;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.3s;
}
.cart-close:hover { color: var(--gold); }

#cart-items { flex: 1; overflow-y: auto; padding: 0.5rem 1.2rem; }

.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 100%;
  gap: 1rem; color: var(--text3);
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.cart-item {
  display: flex; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.3s ease;
}
.cart-item-img {
  width: 64px; height: 64px;
  object-fit: cover; flex-shrink: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
}
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  color: var(--text); margin-bottom: 0.15rem;
}
.cart-item-price { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.cart-item-controls { display: flex; align-items: center; gap: 0.4rem; }
.cart-qty-btn {
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--text2); width: 24px; height: 24px;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.cart-qty-btn:hover { background: var(--gold); color: #111; border-color: var(--gold); }
.cart-item-qty { font-size: 0.85rem; color: var(--text); min-width: 22px; text-align: center; }
.cart-item-remove {
  background: none; border: none; color: var(--text3);
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.3s; margin-left: auto;
  font-family: 'Inter', sans-serif;
}
.cart-item-remove:hover { color: #ff6060; }

.cart-footer { padding: 1.3rem 1.5rem; border-top: 1px solid var(--border); }
.cart-subtotal {
  display: flex; justify-content: space-between;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text2); margin-bottom: 0.5rem;
}
.cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 1.3rem;
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  color: var(--text);
}
.cart-total span:last-child { color: var(--gold); }
.btn-checkout {
  width: 100%; padding: 0.95rem;
  background: var(--gold); color: #111; border: none;
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.3em;
  transition: opacity 0.3s;
}
.btn-checkout:hover { opacity: 0.88; }
.btn-checkout:disabled { opacity: 0.25; cursor: not-allowed; }


/* ════════════════════════════════════════════
   CHECKOUT MODAL
   ════════════════════════════════════════════ */
#checkout-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(6px);
}
#checkout-overlay.open { opacity: 1; pointer-events: all; }

#checkout-modal {
  background: var(--bg);
  border: 1px solid var(--border);
  width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
#checkout-overlay.open #checkout-modal { transform: translateY(0); }

.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 1.6rem;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--bg); z-index: 1;
}
.modal-header h3 { font-size: 1.7rem; color: var(--gold); }
.modal-close {
  background: none; border: none; color: var(--text2);
  font-size: 1.2rem; transition: color 0.3s;
}
.modal-close:hover { color: var(--gold); }

.modal-body { padding: 1.6rem; }

.order-summary-mini {
  background: var(--bg2); border: 1px solid var(--border);
  padding: 1.1rem 1.2rem; margin-bottom: 1.8rem;
}
.order-summary-mini h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--text2); margin-bottom: 0.8rem;
}
.summary-item {
  display: flex; justify-content: space-between;
  font-size: 0.82rem; color: var(--text2); margin-bottom: 0.4rem;
}
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 0.8rem; padding-top: 0.8rem;
  border-top: 1px solid var(--border);
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
  color: var(--text);
}
.summary-total span:last-child { color: var(--gold); }

.form-group { margin-bottom: 1.3rem; }
.form-label {
  display: block;
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text2); margin-bottom: 0.45rem;
}
.form-input {
  width: 100%;
  background: var(--bg2); border: 1px solid var(--border2);
  color: var(--text); padding: 0.82rem 1rem;
  font-family: 'Inter', sans-serif; font-size: 0.88rem;
  outline: none; border-radius: 0;
  transition: border-color 0.3s;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--text3); }
textarea.form-input { resize: vertical; min-height: 76px; }

.phone-wrap {
  display: flex; border: 1px solid var(--border2);
  transition: border-color 0.3s;
}
.phone-wrap:focus-within { border-color: var(--gold); }
.phone-code {
  flex-shrink: 0; background: var(--bg2);
  border: none; border-right: 1px solid var(--border2);
  color: var(--text); padding: 0.82rem 0.7rem;
  font-family: 'Inter', sans-serif; font-size: 0.85rem;
  outline: none; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.6rem center;
  padding-right: 1.8rem; min-width: 105px;
}
.phone-code option { background: #1a1a1a; color: var(--text); }
.phone-wrap .form-input.phone-number { border: none; flex: 1; min-width: 0; }
.phone-wrap .form-input.phone-number:focus { border: none; }
.phone-error {
  display: block; font-size: 0.7rem; color: #ff7070;
  margin-top: 0.35rem; min-height: 1em;
}

.warning-box {
  background: rgba(232,213,176,0.04);
  border: 1px solid rgba(232,213,176,0.12);
  border-left: 3px solid var(--gold);
  padding: 1.1rem 1.2rem; margin-bottom: 1.4rem;
}
.warning-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.45rem;
}
.warning-text { font-size: 0.8rem; color: var(--text2); line-height: 1.65; }
.warning-text strong { color: var(--text); }
.reassure-text { margin-top: 0.7rem; font-size: 0.74rem; color: var(--text3); font-style: italic; }

.btn-confirm {
  width: 100%; padding: 1rem;
  background: #25D366; color: #fff; border: none;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem; letter-spacing: 0.25em;
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  transition: background 0.3s;
}
.btn-confirm:hover { background: #1da855; }


/* ════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════ */
#about {
  padding: clamp(4rem, 8vw, 8rem) var(--gap);
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.about-text { font-size: clamp(1rem, 1.7vw, 1.2rem); color: var(--text2); line-height: 1.9; }
.about-origin {
  margin-top: 2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem; letter-spacing: 0.4em; color: var(--gold);
}


/* ════════════════════════════════════════════
   SOCIAL
   ════════════════════════════════════════════ */
#social {
  padding: clamp(3rem, 6vw, 6rem) var(--gap);
  text-align: center; max-width: 560px; margin: 0 auto;
}
.social-links {
  display: flex; justify-content: center; gap: 1rem;
  margin-top: 2rem; flex-wrap: wrap;
}
.social-link {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 2rem;
  border: 1px solid var(--border2);
  font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 0.2em;
  color: var(--text2);
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s;
}
.social-link:hover { border-color: var(--gold); color: #111; background: var(--gold); transform: translateY(-2px); }


/* ════════════════════════════════════════════
   TÉMOIGNAGES
   ════════════════════════════════════════════ */
#temoignages {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.temo-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) var(--gap);
}

/* ── SLIDESHOW ─────────────────────────────── */
.temo-slideshow {
  position: relative;
  margin-bottom: 2rem;
}
.temo-slides-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  min-height: 550px;
}
.temo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.temo-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: absolute;
}

/* Card styling */
.temo-card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.temo-card:hover {
  border-color: rgba(232,213,176,0.22);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

/* Image */
.temo-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--bg);
  line-height: 0;
  flex-shrink: 0;
}
.temo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.temo-card:hover .temo-img-wrap img { transform: scale(1.05); }
.temo-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.3em;
  color: rgba(232,213,176,0.1);
}

/* Body content */
.temo-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.temo-quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3rem;
  line-height: 0.8;
  color: rgba(232,213,176,0.25);
  margin-bottom: 0.8rem;
  display: block;
}
.temo-message {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  flex: 1;
}
.temo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
  gap: 1rem;
}
.temo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.temo-stars {
  display: flex;
  gap: 2px;
}
.star-on  { color: var(--gold); font-size: 0.85rem; }
.star-off { color: rgba(255,255,255,0.1); font-size: 0.85rem; }

/* ── NAVIGATION ───────────────────────────── */
.temo-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.temo-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}
.temo-btn:hover {
  background: var(--gold);
  color: #111;
}
.temo-btn:active {
  transform: scale(0.95);
}

/* Dots */
.temo-dots {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.temo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(232,213,176,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.temo-dot:hover {
  background: rgba(232,213,176,0.5);
}
.temo-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* Empty state */
.temo-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text3);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}
.btn-temo-link {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  transition: opacity 0.3s;
}
.btn-temo-link:hover { opacity: 0.7; }

/* CTA */
.temo-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* ── MOBILE ───────────────────────────────── */
@media (max-width: 768px) {
  .temo-inner {
    padding: clamp(2.5rem, 6vw, 4rem) var(--gap);
  }
  .temo-slides-container {
    min-height: 480px;
  }
  .temo-img-wrap {
    height: 240px;
  }
  .temo-body {
    padding: 1.2rem;
  }
  .temo-message {
    font-size: 0.88rem;
    line-height: 1.8;
  }
  .temo-quote-mark {
    font-size: 2.5rem;
  }
  .temo-name {
    font-size: 1rem;
  }
  .temo-nav {
    gap: 1rem;
  }
  .temo-btn {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .temo-slides-container {
    min-height: 420px;
  }
  .temo-img-wrap {
    height: 200px;
  }
  .temo-body {
    padding: 1rem;
  }
  .temo-message {
    font-size: 0.82rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  .temo-quote-mark {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }
  .temo-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .temo-name {
    font-size: 0.95rem;
  }
  .temo-nav {
    gap: 0.8rem;
  }
  .temo-btn {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
  .temo-dots {
    gap: 0.4rem;
  }
}


/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
footer {
  padding: 2.5rem var(--gap);
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.7rem; text-align: center;
}
.footer-logo { height: 80px; width: auto; opacity: 0.35; }
.footer-tagline { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text3); }
.footer-copy { font-size: 0.66rem; color: var(--text3); }


/* ════════════════════════════════════════════
   SKELETON LOADING
   ════════════════════════════════════════════ */
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  pointer-events: none;
}
.skel-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(90deg, #1c1c1c 25%, #262626 50%, #1c1c1c 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
.skel-body { padding: 1.2rem 1.3rem 1.5rem; }
.skel-line {
  height: 12px;
  border-radius: 4px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #1c1c1c 25%, #262626 50%, #1c1c1c 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
.skel-short  { width: 55%; }
.skel-price  { width: 40%; height: 18px; margin-top: 14px; }
.skel-btn    { height: 40px; border-radius: 0; margin-top: 16px;
  background: linear-gradient(90deg, #1c1c1c 25%, #262626 50%, #1c1c1c 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}


/* ════════════════════════════════════════════
   RETOUR EN HAUT
   ════════════════════════════════════════════ */
#back-to-top {
  position: fixed;
  bottom: 1.8rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--gold);
  color: #111;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.35s, transform 0.35s;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#back-to-top:hover { opacity: 0.85; }


/* ════════════════════════════════════════════
   TOAST
   ════════════════════════════════════════════ */
#toast {
  position: fixed;
  bottom: 1.8rem; left: 50%;
  transform: translateX(-50%) translateY(80px);
  opacity: 0;
  background: var(--gold); color: #111;
  padding: 0.75rem 1.8rem;
  font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; letter-spacing: 0.2em;
  z-index: 9999; white-space: nowrap; pointer-events: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
}
#toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }


/* ════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .nav-link { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .product-info {
    padding: 0.9rem 0.9rem 1.1rem;
    display: flex; flex-direction: column; align-items: center; text-align: center;
  }
  .product-name { font-size: 1.15rem; }
  .product-desc { display: none; }
  .product-price { font-size: 1.05rem; margin-bottom: 0.8rem; }
  .product-actions { flex-direction: column; height: auto; gap: 0.5rem; align-items: center; width: 100%; }
  .qty-wrap { justify-content: center; }
  .qty-btn { height: 36px; }
  .btn-add-cart { width: 100%; border-left: 1px solid var(--border2); padding: 0.65rem; font-size: 0.82rem; }
  .hero-logo { width: clamp(200px, 78vw, 300px); }
}

@media (max-width: 340px) {
  .product-grid { gap: 0.4rem; }
  .product-info { padding: 0.7rem; }
  .btn-add-cart { font-size: 0.75rem; }
}

/* ── Lightbox ───────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.96);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: lbFadeIn 0.2s ease;
}
@keyframes lbFadeIn { from { opacity: 0 } to { opacity: 1 } }
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  transition: transform 0.15s ease;
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 1.4rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1101;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1101;
  transition: background 0.2s;
}
.lightbox-btn:hover { background: rgba(255,255,255,.22); }
.lightbox-btn.prev { left: 14px; }
.lightbox-btn.next { right: 14px; }
.lightbox-dots {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.lightbox-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.lightbox-dot.active { background: #e8d5b0; transform: scale(1.35); }
/* Curseur zoom sur les images produit */
.product-img-wrap img,
.product-img-wrap .carousel-slide { cursor: zoom-in; }

