/* ======================================================
   MFumu — Custom CSS
   Polices, effets verticaux, animations premium
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Root Variables ── */
:root {
  --wine-deep:    #4A0812;
  --royal-gold:   #D4AF37;
  --pure-black:   #0A0A0A;
  --ivory-light:  #F4F4F4;
  --navy-royal:   #1A237E;
  --gold-light:   #F5E27D;
  --gold-dark:    #B8960C;
  --transition:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Base Reset ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--pure-black);
  color: var(--ivory-light);
  overflow-x: hidden;
  cursor: default;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--pure-black); }
::-webkit-scrollbar-thumb {
  background: var(--royal-gold);
  border-radius: 3px;
}

/* ── Selection ── */
::selection {
  background: var(--royal-gold);
  color: var(--pure-black);
}

/* ══════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════ */
.font-cinzel     { font-family: 'Cinzel', serif; }
.font-playfair   { font-family: 'Playfair Display', serif; }
.font-inter      { font-family: 'Inter', sans-serif; }

.text-gold       { color: var(--royal-gold); }
.text-wine       { color: var(--wine-deep); }
.text-navy       { color: var(--navy-royal); }

/* ══════════════════════════════════════
   GOLD GRADIENT TEXT
   ══════════════════════════════════════ */
.gold-gradient-text {
  background: linear-gradient(135deg, #D4AF37 0%, #F5E27D 40%, #B8960C 70%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, #4A0812 0%, #2A0408 40%, #0A0A0A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(74, 8, 18, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--pure-black), transparent);
}

/* Noise texture overlay */
.noise-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

/* Crown Logo */
.crown-logo {
  position: relative;
  display: inline-block;
}

.crown-svg {
  width: 80px;
  height: 60px;
  filter: drop-shadow(0 0 20px rgba(212,175,55,0.5));
}

/* Hero Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes goldPulse {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(212,175,55,0.4)); }
  50%       { filter: drop-shadow(0 0 30px rgba(212,175,55,0.8)); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero-logo-wrap {
  animation: fadeInUp 1.2s var(--transition) both;
  animation-delay: 0.2s;
}

.hero-tagline {
  animation: fadeInUp 1.2s var(--transition) both;
  animation-delay: 0.6s;
}

.hero-subtitle {
  animation: fadeInUp 1.2s var(--transition) both;
  animation-delay: 0.9s;
}

.hero-cta {
  animation: fadeInUp 1.2s var(--transition) both;
  animation-delay: 1.1s;
}

.hero-scroll-indicator {
  animation: fadeIn 2s ease both;
  animation-delay: 2s;
}

.crown-animate {
  animation: goldPulse 3s ease-in-out infinite;
}

/* Shimmer effect on monogram */
.shimmer-text {
  background: linear-gradient(90deg, #D4AF37 0%, #F5E27D 25%, #D4AF37 50%, #B8960C 75%, #D4AF37 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

.nav-scrolled {
  background: rgba(10, 10, 10, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-link {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 244, 244, 0.7);
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--royal-gold);
  transition: width 0.3s ease;
}

.nav-link:hover { color: var(--royal-gold); }
.nav-link:hover::after { width: 100%; }

/* ══════════════════════════════════════
   PRODUCT CARDS
   ══════════════════════════════════════ */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: #111;
  cursor: pointer;
  transition: transform 0.5s var(--transition), box-shadow 0.5s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,175,55,0.2);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #0d0d0d;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition);
}

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

/* Vertical "ROYAL" text on hover */
.product-royal-badge {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) translateX(40px);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--royal-gold);
  opacity: 0;
  transition: all 0.5s var(--transition);
  pointer-events: none;
  text-shadow: 0 0 20px rgba(212,175,55,0.5);
}

.product-card:hover .product-royal-badge {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Product overlay gradient */
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay { opacity: 1; }

/* Quick add button */
.btn-quick-add {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: all 0.4s var(--transition);
  white-space: nowrap;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  padding: 10px 24px;
  background: var(--royal-gold);
  color: var(--pure-black);
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.product-card:hover .btn-quick-add {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Product info */
.product-info {
  padding: 20px 16px;
  border-top: 1px solid rgba(212,175,55,0.1);
}

.product-category-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--royal-gold);
  opacity: 0.7;
}

.product-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory-light);
  margin: 4px 0;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--royal-gold);
}

/* Badge */
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--royal-gold);
  color: var(--pure-black);
  z-index: 2;
}

/* ══════════════════════════════════════
   MATIÈRE & FINITIONS SECTION
   ══════════════════════════════════════ */
.section-feature {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a0608 100%);
  position: relative;
  overflow: hidden;
}

.section-feature::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(212,175,55,0.08);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(244,244,244,0.8);
  transition: all 0.3s ease;
}

.feature-list li:hover {
  color: var(--ivory-light);
  padding-left: 6px;
}

.feature-icon {
  width: 20px;
  height: 20px;
  color: var(--royal-gold);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   SECTION TITLES
   ══════════════════════════════════════ */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--royal-gold);
  opacity: 0.8;
}

.section-title {
  font-family: 'Cinzel', serif;
  color: var(--ivory-light);
  line-height: 1.15;
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
  margin: 20px auto;
}

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: linear-gradient(135deg, #D4AF37, #B8960C);
  color: var(--pure-black);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #F5E27D, #D4AF37);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { box-shadow: 0 8px 30px rgba(212,175,55,0.4); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 38px;
  background: transparent;
  color: var(--royal-gold);
  border: 1px solid var(--royal-gold);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(212,175,55,0.1);
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
}

/* ══════════════════════════════════════
   CART SIDEBAR
   ══════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: #0f0f0f;
  border-left: 1px solid rgba(212,175,55,0.15);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: right 0.5s var(--transition);
  overflow: hidden;
}

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

.cart-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(212,175,55,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.cart-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ivory-light);
}

.cart-close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,175,55,0.2);
  cursor: pointer;
  color: var(--royal-gold);
  transition: all 0.3s ease;
  background: transparent;
}

.cart-close:hover {
  background: var(--royal-gold);
  color: var(--pure-black);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  text-align: center;
}

.cart-empty-icon {
  width: 60px;
  height: 60px;
  color: rgba(212,175,55,0.3);
}

.cart-empty-text {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: rgba(244,244,244,0.3);
  letter-spacing: 0.1em;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  animation: fadeInUp 0.3s ease;
}

.cart-item-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-name {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--ivory-light);
  margin-bottom: 4px;
}

.cart-item-size {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(244,244,244,0.4);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.cart-item-price {
  font-family: 'Playfair Display', serif;
  color: var(--royal-gold);
  font-size: 1rem;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,175,55,0.3);
  cursor: pointer;
  background: transparent;
  color: var(--royal-gold);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: var(--royal-gold);
  color: var(--pure-black);
}

.qty-value {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--ivory-light);
  min-width: 20px;
  text-align: center;
}

.cart-remove {
  margin-left: auto;
  cursor: pointer;
  color: rgba(244,244,244,0.2);
  transition: color 0.2s ease;
  background: transparent;
  border: none;
  padding: 4px;
}

.cart-remove:hover { color: #ff4444; }

.cart-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(212,175,55,0.1);
  flex-shrink: 0;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.cart-subtotal-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244,244,244,0.5);
}

.cart-subtotal-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--royal-gold);
}

.cart-shipping-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(244,244,244,0.3);
  text-align: center;
  margin-bottom: 16px;
}

/* Size selector in modal */
.size-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-btn {
  padding: 8px 14px;
  border: 1px solid rgba(212,175,55,0.25);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  background: transparent;
  color: rgba(244,244,244,0.6);
  transition: all 0.2s ease;
}

.size-btn:hover, .size-btn.selected {
  border-color: var(--royal-gold);
  color: var(--royal-gold);
  background: rgba(212,175,55,0.08);
}

/* ══════════════════════════════════════
   PRODUCT MODAL
   ══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 9990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: #111;
  border: 1px solid rgba(212,175,55,0.15);
  max-width: 900px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s var(--transition);
  max-height: 90vh;
  overflow: hidden;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-img-section {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.modal-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-img-nav {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.modal-img-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(244,244,244,0.3);
  cursor: pointer;
  transition: background 0.2s ease;
  border: none;
}

.modal-img-dot.active { background: var(--royal-gold); }

.modal-body {
  padding: 40px 36px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(244,244,244,0.1);
  cursor: pointer;
  color: var(--ivory-light);
  z-index: 10;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--royal-gold);
  color: var(--pure-black);
  border-color: var(--royal-gold);
}

/* ══════════════════════════════════════
   CHECKOUT FORM
   ══════════════════════════════════════ */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  z-index: 9995;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
}

.checkout-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.checkout-container {
  background: #0f0f0f;
  border: 1px solid rgba(212,175,55,0.15);
  max-width: 760px;
  width: 100%;
  padding: 50px 50px;
  position: relative;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244,244,244,0.5);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.15);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--ivory-light);
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--royal-gold);
  background: rgba(212,175,55,0.03);
}

.form-input::placeholder { color: rgba(244,244,244,0.2); }
.form-select option { background: #111; }

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(212,175,55,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option:has(input:checked),
.payment-option.selected {
  border-color: var(--royal-gold);
  background: rgba(212,175,55,0.05);
}

.payment-option input[type="radio"] { accent-color: var(--royal-gold); }

.payment-option-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--ivory-light);
}

/* order-step visibility is controlled by Tailwind's 'hidden' class in JS */

.step-indicator {
  display: flex;
  gap: 0;
}

.step-dot {
  flex: 1;
  height: 2px;
  background: rgba(212,175,55,0.2);
  transition: background 0.4s ease;
}

.step-dot.completed { background: var(--royal-gold); }
.step-dot.active { background: rgba(212,175,55,0.6); }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer-section {
  background: #050505;
  border-top: 1px solid rgba(212,175,55,0.1);
  padding: 60px 0 30px;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(244,244,244,0.4);
  font-size: 0.85rem;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(244,244,244,0.4);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 5px 0;
}

.footer-link:hover { color: var(--royal-gold); }

.social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,175,55,0.2);
  color: rgba(244,244,244,0.5);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  border-color: var(--royal-gold);
  color: var(--royal-gold);
  background: rgba(212,175,55,0.08);
}

/* ══════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s var(--transition);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════
   TOAST NOTIFICATION
   ══════════════════════════════════════ */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #111;
  border: 1px solid rgba(212,175,55,0.3);
  border-left: 3px solid var(--royal-gold);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  transform: translateX(120%);
  animation: slideInToast 0.4s var(--transition) forwards, slideOutToast 0.4s ease 3s forwards;
}

@keyframes slideInToast {
  to { transform: translateX(0); }
}

@keyframes slideOutToast {
  to { transform: translateX(120%); opacity: 0; }
}

.toast-icon { color: var(--royal-gold); flex-shrink: 0; }

.toast-msg {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--ivory-light);
}

/* ══════════════════════════════════════
   CART BADGE
   ══════════════════════════════════════ */
.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  background: var(--royal-gold);
  color: var(--pure-black);
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s var(--transition);
}

.cart-count-badge.visible { transform: scale(1); }

/* ══════════════════════════════════════
   LOADING SCREEN
   ══════════════════════════════════════ */
.loader-screen {
  position: fixed;
  inset: 0;
  background: var(--pure-black);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.8s ease;
}

.loader-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(212,175,55,0.15);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
  animation: loaderSlide 1.2s ease infinite;
}

@keyframes loaderSlide {
  to { left: 200%; }
}

/* ══════════════════════════════════════
   SUCCESS SCREEN
   ══════════════════════════════════════ */
.success-animation {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--royal-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successPop 0.6s var(--transition) both;
}

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  .modal-content {
    grid-template-columns: 1fr;
    max-height: 95vh;
    overflow-y: auto;
  }

  .modal-img-section {
    aspect-ratio: 4/3;
  }

  .modal-body {
    padding: 24px 20px;
  }

  .checkout-container {
    padding: 30px 20px;
  }

  .cart-sidebar {
    max-width: 100%;
  }

  .hero-section {
    padding: 80px 20px;
  }

  .product-royal-badge {
    font-size: 0.5rem;
  }

  .toast-container {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }

  .toast { min-width: unset; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.8rem !important; }
}

/* Horizontal gold line */
.gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.4) 30%, rgba(212,175,55,0.4) 70%, transparent 100%);
}

/* Number counter animation */
.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 700;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* ══════════════════════════════════════
   TESTIMONIALS / RETOUR CLIENT
   ══════════════════════════════════════ */

/* Gallery grid — masonry-like with CSS columns */
.testi-gallery {
  columns: 4 260px;
  column-gap: 16px;
}

.testi-card {
  break-inside: avoid;
  margin-bottom: 16px;
  background: #111;
  border: 1px solid rgba(212,175,55,0.08);
  overflow: hidden;
  transition: transform 0.4s var(--transition), box-shadow 0.4s ease, border-color 0.4s ease;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.2);
  border-color: rgba(212,175,55,0.25);
}

.testi-img-wrap {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.testi-img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--transition);
}

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

.testi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testi-card:hover .testi-overlay {
  opacity: 1;
}

.testi-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.testi-name {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--royal-gold);
}

.testi-city {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: rgba(244,244,244,0.5);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.testi-caption {
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(244,244,244,0.6);
  line-height: 1.5;
  border-top: 1px solid rgba(212,175,55,0.06);
}

/* Lightbox */
.testi-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.testi-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.testi-lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--ivory-light);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.testi-lb-close:hover {
  background: var(--royal-gold);
  color: var(--pure-black);
  border-color: var(--royal-gold);
}

.testi-lb-content {
  max-width: 800px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.4s var(--transition);
}

.testi-lightbox.active .testi-lb-content {
  transform: translateY(0);
}

.testi-lb-img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border: 1px solid rgba(212,175,55,0.15);
}

.testi-lb-info {
  padding: 20px 0;
  text-align: center;
}

/* Upload form dropzone */
.testi-dropzone {
  border: 2px dashed rgba(212,175,55,0.2);
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testi-dropzone:hover {
  border-color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.03);
}

.testi-preview-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testi-preview-img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.testi-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,0.1);
  padding: 40px;
}

/* Responsive testimonials */
@media (max-width: 768px) {
  .testi-gallery {
    columns: 2 160px;
    column-gap: 10px;
  }

  .testi-card {
    margin-bottom: 10px;
  }

  .testi-form {
    padding: 24px 16px;
  }

  .testi-lb-content {
    max-width: 95vw;
  }

  .testi-lb-img {
    max-height: 55vh;
  }
}

@media (max-width: 480px) {
  .testi-gallery {
    columns: 1;
  }
}
