/* =============================================
   ALUNA — Bijoux d'Intention
   Style principal — www.alunajonc.fr
   ============================================= */

:root {
  --bg: #080f5c;
  --bg-dark: #050a3e;
  --bg-card: rgba(255,255,255,0.06);
  --bg-card-hover: rgba(255,255,255,0.1);
  --text: #fdfbf7;
  --text-muted: rgba(253,251,247,0.7);
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a07830;
  --argent: #c0c8d8;
  --or-rose: #d4956a;
  --border: rgba(201,168,76,0.3);
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --radius: 12px;
  --nav-h: 70px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* =============================================
   ÉTOILES ANIMÉES
   ============================================= */
#stars {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: twinkle var(--d, 3s) var(--dl, 0s) infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 0.8; transform: scale(1); }
}

/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(8, 15, 92, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  transition: box-shadow 0.3s;
}

#navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.cart-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-btn:hover {
  background: var(--gold);
  color: var(--bg);
}

.cart-count {
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8, 15, 92, 0.98);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
  z-index: 1;
}

.hero-content {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.promo-banner {
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--gold);
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

.hero-badge {
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.hero-logo-wrap {
  width: 130px;
  height: 130px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 0 30px rgba(201,168,76,0.3);
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--text);
  line-height: 1;
}

.hero-sub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* =============================================
   BOUTONS
   ============================================= */
.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(253,251,247,0.4);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-wrap {
  position: absolute;
  bottom: 2rem;
  left: 0; right: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}

.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.marquee span {
  padding: 0 1rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   SECTIONS COMMUNES
   ============================================= */
section {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* =============================================
   ESSENCE
   ============================================= */
.essence {
  background: rgba(0,0,0,0.2);
}

.essence-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.essence-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.essence-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.essence-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.essence-card h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.essence-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =============================================
   BOUTIQUE / PRODUITS
   ============================================= */
.promo-banner-shop {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
  color: var(--gold-light);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.filter-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-argent {
  background: rgba(192,200,216,0.9);
  color: #1a1a2e;
}

.badge-or-rose {
  background: rgba(212,149,106,0.9);
  color: #1a1a2e;
}

.badge-or {
  background: rgba(201,168,76,0.9);
  color: #1a1a2e;
}

.product-info {
  padding: 1rem;
}

.product-type {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
}

.btn-add {
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-add:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

/* =============================================
   COMMENT ÇA MARCHE
   ============================================= */
.how-it-works {
  background: rgba(0,0,0,0.15);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  text-align: center;
}

.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =============================================
   PACKS
   ============================================= */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.pack-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
}

.pack-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pack-featured {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.pack-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-dark);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.pack-icon {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.pack-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.pack-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.pack-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.pack-shipping {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.pack-selects {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.pack-selects label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.pack-selects select {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  padding: 0.5rem 0.8rem;
  font-size: 0.85rem;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  outline: none;
  width: 100%;
}

.pack-selects select:focus {
  border-color: var(--gold);
}

.btn-pack {
  width: 100%;
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  padding: 0.9rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-pack:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.pack-quote {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pack-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.pack-quote cite {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
}

/* =============================================
   À PROPOS
   ============================================= */
.about {
  background: rgba(0,0,0,0.2);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-text strong {
  color: var(--text);
}

.about-sign {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 1.5rem !important;
}

.about-logo-img {
  width: 180px;
  height: 180px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 30px rgba(201,168,76,0.2);
}

/* =============================================
   TÉMOIGNAGES
   ============================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.1em;
}

.review-card p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--border);
  padding-top: 0.8rem;
}

.reviewer-icon {
  font-size: 1.5rem;
}

.reviewer strong {
  display: block;
  font-size: 0.9rem;
}

.reviewer-product {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* =============================================
   CONTACT
   ============================================= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-family: 'Lato', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(253,251,247,0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-direct {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-direct a {
  color: var(--gold-light);
  text-decoration: none;
}

.contact-direct a:hover {
  text-decoration: underline;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--gold);
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
}

.footer-tagline {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

/* =============================================
   PANIER SIDEBAR
   ============================================= */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
}

.cart-overlay.open {
  display: block;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: #0d1560;
  border-left: 1px solid var(--border);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.cart-close {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.3rem;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 0;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--gold-light);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.2rem;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: #e74c3c;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.cart-total {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: right;
}

/* =============================================
   TOAST NOTIFICATION
   ============================================= */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .cart-btn span:not(.cart-count) {
    display: none;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-logo {
    display: none;
  }

  .packs-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  section {
    padding: 3.5rem 1.2rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-outline {
    width: 100%;
    max-width: 280px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}


/* =============================================
   PERSONNALISATION
   ============================================= */
.perso {
  background: rgba(0,0,0,0.15);
}

.perso-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.perso-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.perso-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.perso-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.perso-options {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.perso-option {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
  min-width: 100px;
}

.perso-option:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.perso-option.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
}

.perso-input-wrap {
  position: relative;
}

.perso-input-wrap textarea {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-family: 'Lato', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.perso-input-wrap textarea:focus {
  border-color: var(--gold);
}

.perso-input-wrap textarea::placeholder {
  color: rgba(253,251,247,0.4);
}

.perso-counter {
  position: absolute;
  bottom: 0.5rem;
  right: 0.8rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(0,0,0,0.5);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.perso-info {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.perso-info-item {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.perso-info-item strong {
  color: var(--gold-light);
}

.perso-preview {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.perso-preview h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.perso-preview-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.perso-preview-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.preview-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.preview-color {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.preview-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-muted);
  padding: 1.5rem;
  border: 1px dashed var(--border);
  border-radius: 8px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-delay {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 700;
}

@media (max-width: 768px) {
  .perso-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
