/* ════════════════════════════════════════════════════════════════
   DR HANIN — MASTERPIECE LAYER  ·  v2
   The final cascade layer. Editorial typography, layered light,
   gold hairlines, glass, and choreographed motion.
   Loaded after style.css → site-redesign.css → luxury-ui.css
════════════════════════════════════════════════════════════════ */

:root {
  --mp-ink: #1C0F0A;
  --mp-espresso: #2C1810;
  --mp-mocha: #5C3A31;
  --mp-champagne: #FAF6F1;
  --mp-porcelain: #FFFCF9;
  --mp-gold: #C9A96E;
  --mp-gold-deep: #A98548;
  --mp-gold-light: #E8D5A3;
  --mp-rose: #D4839A;
  --mp-blush: #F2C4CE;
  --mp-hairline: rgba(201, 169, 110, 0.32);
  --mp-hairline-soft: rgba(201, 169, 110, 0.16);
  --mp-shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.05), 0 8px 24px rgba(44, 24, 16, 0.06);
  --mp-shadow-md: 0 4px 16px rgba(44, 24, 16, 0.06), 0 20px 48px rgba(44, 24, 16, 0.10);
  --mp-shadow-lg: 0 8px 24px rgba(44, 24, 16, 0.08), 0 32px 80px rgba(44, 24, 16, 0.14);
  --mp-shadow-gold: 0 8px 32px rgba(201, 169, 110, 0.28);
  --mp-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mp-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --mp-serif: 'Cormorant Garamond', 'El Messiri', serif;
  --mp-sans: 'Outfit', 'Tajawal', sans-serif;
  --mp-radius: 26px;
  --mp-radius-sm: 16px;
}

/* ── GLOBAL CANVAS ── */
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }
body { overflow-x: clip; }
body {
  background: var(--mp-champagne);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection {
  background: rgba(201, 169, 110, 0.35);
  color: var(--mp-ink);
}
:focus-visible {
  outline: 2px solid var(--mp-gold);
  outline-offset: 3px;
  border-radius: 4px;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--mp-champagne); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--mp-gold), var(--mp-mocha));
  border-radius: 8px;
  border: 2px solid var(--mp-champagne);
}

/* Scroll progress (injected by premium.js) */
.mp-progress {
  position: fixed;
  top: 0;
  inset-inline: 0;
  height: 2px;
  z-index: 12000;
  pointer-events: none;
}
.mp-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--mp-gold-deep), var(--mp-gold-light), var(--mp-gold));
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.6);
  transition: width 0.08s linear;
}

/* ── LOADER — CINEMATIC ENTRANCE ── */
#loader {
  background:
    radial-gradient(ellipse 70% 60% at 50% 38%, rgba(201, 169, 110, 0.10), transparent 65%),
    linear-gradient(160deg, #140A06 0%, #241208 55%, #2C1810 100%);
}
#loader .loader-logo {
  font-family: var(--mp-serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  letter-spacing: 0.5em;
  text-indent: 0.5em;
}
#loader .loader-subtitle {
  letter-spacing: 0.4em;
  font-size: 0.6rem;
  text-transform: uppercase;
  color: rgba(232, 213, 163, 0.55);
}
#loader .loader-line {
  background: linear-gradient(90deg, transparent, var(--mp-gold), transparent);
}

/* ── NAVIGATION — JEWELLERY-BOX GLASS ── */
#site-header {
  position: relative;
  z-index: 1100;
}
#navbar {
  position: fixed;
  top: var(--sale-banner-h, 0px);
  inset-inline: 0;
  z-index: 1000;
  padding-block: 1.05rem;
  transition: background 0.55s var(--mp-ease), box-shadow 0.55s var(--mp-ease),
              padding 0.55s var(--mp-ease), border-color 0.55s var(--mp-ease);
}
#navbar.scrolled {
  padding-block: 0.6rem;
  background: rgba(253, 249, 245, 0.86) !important;
  backdrop-filter: blur(26px) saturate(1.5);
  -webkit-backdrop-filter: blur(26px) saturate(1.5);
  border-bottom: 1px solid var(--mp-hairline-soft);
  box-shadow: 0 12px 48px rgba(44, 24, 16, 0.09);
}
.nav-brand { gap: 0.1rem; }
.nav-logo-text {
  font-family: var(--mp-serif);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.nav-star {
  display: inline-block;
  color: var(--mp-gold);
  -webkit-text-fill-color: var(--mp-gold);
  animation: mpStarTwinkle 3.5s ease-in-out infinite;
}
@keyframes mpStarTwinkle {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.45; transform: scale(0.8) rotate(20deg); }
}
.nav-links a {
  position: relative;
  padding-block: 0.35rem;
  transition: color 0.35s var(--mp-ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mp-gold), transparent);
  transform: scaleX(0);
  transition: transform 0.45s var(--mp-ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--mp-gold-deep); }
.lang-switch {
  border: 1px solid var(--mp-hairline-soft);
  border-radius: 999px;
  padding: 2px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}
.lang-btn {
  border-radius: 999px;
  transition: all 0.35s var(--mp-ease);
}
.lang-btn.active {
  background: linear-gradient(135deg, var(--mp-mocha), var(--mp-espresso));
  color: var(--mp-gold-light);
  box-shadow: 0 2px 10px rgba(44, 24, 16, 0.25);
}
.nav-cart-btn {
  transition: transform 0.35s var(--mp-ease), color 0.35s;
}
.nav-cart-btn:hover { transform: translateY(-2px); color: var(--mp-gold-deep); }
.nav-cart-count[data-count]:not([data-count="0"])::after {
  box-shadow: 0 0 0 2px var(--mp-champagne), 0 2px 8px rgba(212, 131, 154, 0.5);
}

/* ── HERO — EDITORIAL COUTURE ── */
.hero-v3 { isolation: isolate; }
.hero-v3-h1 {
  font-size: clamp(3rem, 6.2vw, 5rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
}
html[lang="ar"] .hero-v3-h1,
html[dir="rtl"] .hero-v3-h1 {
  line-height: 1.35;
  letter-spacing: 0;
}
.hero-v3-h1 em,
.lux-heading em {
  background: linear-gradient(120deg, var(--mp-gold-deep) 0%, var(--mp-rose) 55%, var(--mp-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-v3-badge {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 28px rgba(201, 169, 110, 0.18);
}
.hero-v3-sub { font-size: 1.05rem; }
.hero-v3-stat-val {
  font-size: 2.2rem;
  font-weight: 500;
  background: linear-gradient(160deg, var(--mp-espresso), var(--mp-mocha));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── HERO COMPOSITION — fixed LTR, never mirrors ──
   The portrait, rings, and float cards live inside .hero-v3-figure,
   one positioned box: every layer is anchored to the figure itself,
   so the composition cannot drift at any viewport or language. */
.hero-v3 { direction: ltr; }
html[dir="rtl"] .hero-v3-overlay {
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(251, 245, 243, 0.95) 0%, transparent 70%),
    linear-gradient(105deg, rgba(251, 245, 243, 0.92) 0%, rgba(251, 245, 243, 0.55) 45%, transparent 68%);
}
html[dir="rtl"] .hero-v3-content {
  direction: ltr;
  text-align: left;
  margin-inline-start: 0;
}
html[dir="rtl"] .hero-v3-h1,
html[dir="rtl"] .hero-v3-sub {
  direction: rtl;
  unicode-bidi: isolate;
  text-align: left;
}
html[dir="rtl"] .hero-v3-actions { flex-direction: row; }
html[dir="rtl"] .hero-v3-badge { direction: rtl; }

.hero-v3-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 0;
}
.hero-v3-figure {
  position: relative;
  direction: ltr;
  width: min(420px, 86%);
}
.hero-v3-figure .hero-v3-ring {
  left: 50%;
  translate: -50% 0;
  bottom: auto;
}
.hero-v3-figure .hero-v3-ring--1 { width: 116%; max-width: none; bottom: -4%; }
.hero-v3-figure .hero-v3-ring--2 { width: 98%; max-width: none; bottom: 1.5%; }
.hero-v3-figure .hero-v3-portrait-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-v3-figure .hero-v3-portrait {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
}
.hero-v3-figure .hero-v3-float-card--cert {
  top: 16%;
  left: -9%;
  right: auto;
  inset-inline: auto;
  inset-inline-start: -9%;
}
.hero-v3-figure .hero-v3-float-card--rating {
  bottom: 24%;
  right: -8%;
  left: auto;
  inset-inline: auto;
  inset-inline-end: -8%;
  top: auto;
}

/* Portrait — signature arch frame */
.hero-v3-portrait-wrap {
  padding: 14px;
  border: 1px solid var(--mp-hairline);
  border-radius: 999px 999px 28px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.12));
  backdrop-filter: blur(6px);
  box-shadow: var(--mp-shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.hero-v3-portrait-wrap::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(201, 169, 110, 0.35);
  border-radius: inherit;
  pointer-events: none;
}
.hero-v3-portrait {
  border-radius: 999px 999px 20px 20px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% 20%, rgba(242, 196, 206, 0.5), transparent 70%),
    linear-gradient(180deg, #F6E8E2, #EDD5C8);
  object-fit: cover;
  filter: none;
}
.hero-v3-float-card {
  border-radius: 18px;
  box-shadow: var(--mp-shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* Scroll hint */
.mp-scroll-hint {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mp-mocha);
  opacity: 0.65;
}
.mp-scroll-hint::after {
  content: '';
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, var(--mp-gold), transparent);
  animation: mpScrollPulse 2.2s var(--mp-ease) infinite;
}
@keyframes mpScrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── BUTTONS — UNIFIED COUTURE SYSTEM ── */
.btn-lux,
.nav-book-btn,
.form-submit,
.btn-brown,
.btn-enroll,
.tube-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-lux::after,
.form-submit::after,
.btn-brown::after,
.btn-enroll::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.22) 50%, transparent 65%);
  transform: translateX(-130%) skewX(-12deg);
  transition: transform 0.75s var(--mp-ease);
}
.btn-lux:hover::after,
.form-submit:hover::after,
.btn-brown:hover::after,
.btn-enroll:hover::after { transform: translateX(130%) skewX(-12deg); }
.btn-lux { padding: 1.05rem 2.2rem; }
.btn-lux--primary {
  background: linear-gradient(140deg, #4A2C1E 0%, var(--mp-espresso) 55%, #1C0F0A 100%);
  border: 1px solid rgba(232, 213, 163, 0.25);
}
.btn-lux--gold {
  background: linear-gradient(135deg, var(--mp-gold-deep) 0%, var(--mp-gold-light) 50%, var(--mp-gold) 100%);
  background-size: 200% 200%;
  animation: mpGoldShift 6s ease infinite;
}
@keyframes mpGoldShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── MARQUEE & TRUST ── */
.marquee-strip {
  background: linear-gradient(90deg, #1C0F0A, #2E1A10 50%, #1C0F0A);
  position: relative;
}
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(90deg, #1C0F0A, transparent); }
.marquee-strip::after { right: 0; background: linear-gradient(270deg, #1C0F0A, transparent); }
.marquee-item { color: rgba(232, 213, 163, 0.8); }

.trust-bar {
  background:
    linear-gradient(90deg, rgba(250, 246, 241, 0.6), rgba(245, 230, 228, 0.75), rgba(250, 246, 241, 0.6));
  border-block: 1px solid var(--mp-hairline-soft);
}
.trust-item { transition: transform 0.4s var(--mp-ease); }
.trust-item:hover { transform: translateY(-3px); }
.trust-icon {
  border: 1px solid var(--mp-hairline);
  color: var(--mp-gold-deep);
}

/* ── SECTION SYSTEM — EDITORIAL RHYTHM ── */
.lux-section { padding-block: 6.5rem; }
.lux-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  color: var(--mp-gold-deep);
}
.lux-eyebrow::before,
.lux-eyebrow::after { width: 52px; }
.lux-heading {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  max-width: 760px;
  margin-inline: auto;
}
html[lang="ar"] .lux-heading,
html[dir="rtl"] .lux-heading { letter-spacing: 0; }
.lux-desc { font-size: 0.95rem; }

/* Ornamental divider between major sections */
.mp-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding-block: 0.25rem;
  color: var(--mp-gold);
  font-size: 0.85rem;
}
.mp-ornament::before,
.mp-ornament::after {
  content: '';
  width: min(180px, 28vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mp-hairline));
}
.mp-ornament::after { background: linear-gradient(90deg, var(--mp-hairline), transparent); }

/* ── SERVICE CARDS — GALLERY PIECES ── */
.services-scroll { padding-block: 1rem 1.5rem; }
.service-card-lux {
  flex-basis: min(290px, 80vw);
  border-radius: var(--mp-radius);
  border: 1px solid rgba(232, 213, 196, 0.6);
  box-shadow: var(--mp-shadow-sm);
}
.service-card-lux:hover {
  transform: translateY(-10px);
  border-color: var(--mp-hairline);
  box-shadow: var(--mp-shadow-lg);
}
.service-card-lux-img { height: 220px; }
.service-card-lux-img::after {
  background: linear-gradient(180deg, transparent 40%, rgba(28, 15, 10, 0.45));
}
.service-card-lux-num {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.5);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
.service-card-lux-body h3 { font-size: 1.35rem; }
.service-card-lux-body { padding: 1.5rem 1.4rem 1.5rem; }

/* Dynamic services page cards */
.service-card-v2 {
  background: var(--mp-porcelain);
  border: 1px solid rgba(232, 213, 196, 0.55);
  border-radius: var(--mp-radius);
  padding: 2.4rem 1.8rem 2rem;
  text-align: center;
  transition: all 0.5s var(--mp-ease);
  position: relative;
  overflow: hidden;
  flex: 0 1 300px;
  box-shadow: var(--mp-shadow-sm);
}
.service-card-v2::before {
  content: '';
  position: absolute;
  top: -60px;
  inset-inline-end: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.14), transparent 70%);
  transition: transform 0.6s var(--mp-ease);
}
.service-card-v2:hover::before { transform: scale(1.8); }
.service-card-v2:hover {
  transform: translateY(-8px);
  border-color: var(--mp-hairline);
  box-shadow: var(--mp-shadow-lg);
}
.service-card-v2-img {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--mp-gold-deep);
  background: linear-gradient(135deg, rgba(242, 196, 206, 0.3), rgba(201, 169, 110, 0.18));
  border: 1px solid var(--mp-hairline);
  box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.6), 0 8px 24px rgba(201, 169, 110, 0.15);
  overflow: hidden;
  transition: transform 0.5s var(--mp-ease);
}
.service-card-v2:hover .service-card-v2-img { transform: scale(1.06) rotate(2deg); }
.service-card-v2 h3 {
  font-family: var(--mp-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--mp-espresso);
  margin-bottom: 0.55rem;
}
html[dir="rtl"] .service-card-v2 h3 { font-family: var(--font-ar-display); }
.service-card-v2 p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
html[dir="rtl"] .service-card-v2 p { font-family: var(--font-ar); }
.service-card-v2-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--mp-hairline);
  color: var(--mp-gold-deep);
  transition: all 0.4s var(--mp-ease);
}
.service-card-v2-link:hover {
  background: var(--mp-espresso);
  color: var(--mp-gold-light);
  border-color: var(--mp-espresso);
  transform: translateY(-2px);
}
html[dir="rtl"] .service-card-v2-link svg { transform: scaleX(-1); }

/* ── WHY CARDS ── */
.why-card-lux {
  border-radius: var(--mp-radius);
  background: var(--mp-porcelain);
  box-shadow: var(--mp-shadow-sm);
}
.why-card-lux-icon {
  border-radius: 50%;
  width: 58px;
  height: 58px;
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.7), 0 6px 18px rgba(201, 169, 110, 0.18);
  transition: transform 0.5s var(--mp-ease);
}
.why-card-lux:hover .why-card-lux-icon { transform: scale(1.1) rotate(-4deg); }
.why-card-lux h3 { font-size: 1.3rem; }

/* ── BEFORE / AFTER ── */
.ba-card-lux { border-radius: var(--mp-radius); }
.ba-card-lux-visual { height: 300px; }
.ba-card-lux-label {
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(44, 24, 16, 0.15);
}
.ba-card-lux-info {
  position: relative;
  padding: 1.4rem 1.6rem;
}
.ba-card-lux-info::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 1.6rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mp-hairline), transparent);
}
.ba-card-lux-info h4 { font-size: 1.25rem; }

/* ── TESTIMONIALS WALL — HERO-ALIGNED MASONRY ── */
.testimonials-wall {
  position: relative;
  isolation: isolate;
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  overflow: hidden;
}
.testimonials-wall-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/hero-bg.png') center / cover no-repeat;
  background-color: var(--mp-champagne);
  transform: scale(1.03);
  will-change: transform;
}
.testimonials-wall-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 55% at 18% 22%, rgba(251, 245, 243, 0.94) 0%, transparent 62%),
    radial-gradient(ellipse 65% 50% at 82% 78%, rgba(242, 196, 206, 0.32) 0%, transparent 58%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(201, 169, 110, 0.12) 0%, transparent 65%),
    linear-gradient(180deg, rgba(253, 249, 245, 0.9) 0%, rgba(247, 240, 235, 0.72) 48%, rgba(253, 249, 245, 0.92) 100%);
}
html[dir="rtl"] .testimonials-wall-overlay {
  background:
    radial-gradient(ellipse 75% 55% at 82% 22%, rgba(251, 245, 243, 0.94) 0%, transparent 62%),
    radial-gradient(ellipse 65% 50% at 18% 78%, rgba(242, 196, 206, 0.32) 0%, transparent 58%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(201, 169, 110, 0.12) 0%, transparent 65%),
    linear-gradient(180deg, rgba(253, 249, 245, 0.9) 0%, rgba(247, 240, 235, 0.72) 48%, rgba(253, 249, 245, 0.92) 100%);
}
.testimonials-wall-grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.testimonials-wall-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  opacity: 0.55;
}
.testimonials-wall-glow--rose {
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  top: 8%;
  inset-inline-start: -8%;
  background: radial-gradient(circle, rgba(242, 196, 206, 0.55), transparent 68%);
}
.testimonials-wall-glow--gold {
  width: min(420px, 48vw);
  height: min(420px, 48vw);
  bottom: 6%;
  inset-inline-end: -6%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.28), transparent 70%);
}
.testimonials-wall-header {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(0.85rem, 2vw, 1.25rem);
  text-align: center;
}
.testimonials-wall-lead {
  max-width: 36rem;
  margin: 0.75rem auto 0;
  font-size: 1.02rem;
  color: var(--mp-mocha);
  opacity: 0.88;
}
/* ── TESTIMONIALS RIBBON — condensed wave loop ── */
.testimonials-ribbon-wrap {
  position: relative;
  z-index: 2;
  padding: 0.5rem 0 1rem;
}
.testimonials-ribbon-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2rem, 8vw, 5rem);
  z-index: 3;
  pointer-events: none;
}
.testimonials-ribbon-edge--start {
  inset-inline-start: 0;
  background: linear-gradient(90deg, rgba(253, 249, 245, 0.98), transparent);
}
.testimonials-ribbon-edge--end {
  inset-inline-end: 0;
  background: linear-gradient(270deg, rgba(253, 249, 245, 0.98), transparent);
}
.testimonials-ribbon-track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.testimonials-ribbon-inner {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: clamp(168px, 20vw, 200px);
  will-change: transform;
  animation: tRibbonScroll var(--t-ribbon-duration, 42s) linear infinite;
}
.testimonials-ribbon-inner:hover {
  animation-play-state: paused;
}
.testimonials-ribbon-group {
  display: flex;
  align-items: center;
  gap: var(--t-ribbon-gap, 0.55rem);
  padding-inline-end: var(--t-ribbon-gap, 0.55rem);
  min-height: clamp(148px, 18vw, 180px);
}
.t-ribbon-item {
  flex-shrink: 0;
  width: auto;
  position: relative;
  transition: transform 0.45s var(--mp-ease), z-index 0s;
}
.t-ribbon-item--wide {
  width: auto;
}
.t-ribbon-item--up {
  transform: translateY(-16px) rotate(-3deg);
}
.t-ribbon-item--down {
  transform: translateY(16px) rotate(2.6deg);
}
.t-ribbon-item:hover {
  transform: translateY(-4px) rotate(0deg) scale(1.04);
  z-index: 4;
}
.t-ribbon-glass {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  max-width: min(360px, 48vw);
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.45s var(--mp-ease);
}
.t-ribbon-item:hover .t-ribbon-glass {
  box-shadow: none;
}
.t-ribbon-img,
.t-ribbon-media img {
  display: block;
  width: auto;
  height: clamp(92px, 12.5vw, 124px);
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 1rem;
  box-shadow: var(--mp-shadow-md);
  transition: box-shadow 0.45s var(--mp-ease), transform 0.45s var(--mp-ease);
}
.t-ribbon-item:hover .t-ribbon-img,
.t-ribbon-item:hover .t-ribbon-media img {
  box-shadow: var(--mp-shadow-lg), 0 0 24px rgba(201, 169, 110, 0.14);
}
.t-ribbon-img--wide,
.t-ribbon-media--wide img {
  height: clamp(118px, 15vw, 156px);
  border-radius: 1.1rem;
}
.t-ribbon-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  width: 100%;
  margin-top: 0.35rem;
  padding-top: 0;
  border-top: none;
}
.t-ribbon-name {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--mp-espresso);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.t-ribbon-stars {
  flex-shrink: 0;
  color: var(--mp-gold);
  font-size: 0.5rem;
  letter-spacing: 0.04em;
}
html[lang="ar"] .t-ribbon-name,
html[dir="rtl"] .t-ribbon-name {
  font-family: 'Tajawal', sans-serif;
}

@keyframes tRibbonScroll {
  to { transform: translate3d(calc(var(--t-ribbon-offset, 0px) * -1), 0, 0); }
}
html[dir="rtl"] .testimonials-ribbon-inner {
  animation-direction: reverse;
}

@media (max-width: 640px) {
  .testimonials-ribbon-inner {
    min-height: 148px;
  }
  .testimonials-ribbon-group {
    min-height: 132px;
    gap: 0.45rem;
  }
  .t-ribbon-item--up { transform: translateY(-10px) rotate(-2.5deg); }
  .t-ribbon-item--down { transform: translateY(10px) rotate(2.2deg); }
  .t-ribbon-img,
  .t-ribbon-media img {
    height: clamp(76px, 20vw, 100px);
    border-radius: 0.85rem;
  }
  .t-ribbon-img--wide,
  .t-ribbon-media--wide img {
    height: clamp(96px, 24vw, 124px);
    border-radius: 0.95rem;
  }
  .t-ribbon-glass {
    max-width: min(280px, 72vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-ribbon-inner {
    animation: none;
    overflow-x: auto;
    max-width: 100%;
    padding-inline: 1rem;
    scroll-snap-type: x mandatory;
  }
  .testimonials-ribbon-track {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .t-ribbon-item {
    scroll-snap-align: center;
  }
  .t-ribbon-item--up,
  .t-ribbon-item--down {
    transform: none;
  }
}

/* ── COURSE CARDS ── */
.course-card {
  background: var(--mp-porcelain);
  border-radius: var(--mp-radius);
  overflow: hidden;
  border: 1px solid rgba(232, 213, 196, 0.55);
  box-shadow: var(--mp-shadow-sm);
  transition: all 0.5s var(--mp-ease);
  flex: 0 1 320px;
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-8px);
  border-color: var(--mp-hairline);
  box-shadow: var(--mp-shadow-lg);
}
.course-card-thumb {
  height: 190px;
  background: linear-gradient(135deg, #F6E8E2, #EDD5C8);
  position: relative;
  overflow: hidden;
}
.course-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(28, 15, 10, 0.28));
}
.course-card-body {
  padding: 1.5rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.course-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mp-gold-deep);
  margin-bottom: 0.7rem;
}
html[dir="rtl"] .course-card-meta { font-family: var(--font-ar); letter-spacing: 0; text-transform: none; }
.course-card-body h3 {
  font-family: var(--mp-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--mp-espresso);
  margin-bottom: 0.3rem;
}
html[dir="rtl"] .course-card-body h3 { font-family: var(--font-ar-display); }
.course-card-instructor {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--text-mid);
  margin-bottom: 0.6rem;
}
.course-card-body > p:not(.course-card-instructor) {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}
html[dir="rtl"] .course-card-body p { font-family: var(--font-ar); }
.course-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--mp-hairline-soft);
}
.course-price {
  font-family: var(--mp-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--mp-espresso);
}
.btn-enroll {
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(140deg, #4A2C1E, var(--mp-espresso));
  color: var(--mp-gold-light);
  transition: all 0.4s var(--mp-ease);
  box-shadow: 0 6px 20px rgba(44, 24, 16, 0.2);
}
html[dir="rtl"] .btn-enroll { font-family: var(--font-ar); font-size: 0.8rem; letter-spacing: 0; text-transform: none; }
.btn-enroll:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(44, 24, 16, 0.3); }
.btn-enroll:disabled { opacity: 0.45; cursor: not-allowed; }

/* ── PRODUCT TUBES ── */
.tube-card {
  border-radius: var(--mp-radius);
  border: 1px solid rgba(232, 213, 196, 0.55);
  background: var(--mp-porcelain);
  box-shadow: var(--mp-shadow-sm);
}
.tube-card:hover { box-shadow: var(--mp-shadow-lg); }
.tube-card--featured {
  border-color: var(--mp-hairline);
  box-shadow: var(--mp-shadow-md), 0 0 0 4px rgba(201, 169, 110, 0.08);
}
.tube-price {
  font-family: var(--mp-serif);
  font-weight: 600;
  font-size: 1.3rem;
}
.tube-btn {
  border-radius: 999px;
  transition: all 0.4s var(--mp-ease);
}
.tube-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(44, 24, 16, 0.25); }
.tube-btn.added {
  background: linear-gradient(135deg, #7FA877, #5C8A55);
  color: #fff;
}
.tube-link {
  display: block;
  position: relative;
  text-decoration: none;
}
.tube-gallery-badge {
  position: absolute;
  bottom: 0.7rem;
  inset-inline-end: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(28, 15, 10, 0.55);
  backdrop-filter: blur(6px);
  color: var(--mp-gold-light);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
}
a.tube-shade-name {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}
a.tube-shade-name:hover { color: var(--mp-gold-deep); }

/* ── INSTAGRAM GRID ── */
.ig-cell-lux { border-radius: var(--mp-radius-sm); }
.ig-cell-lux::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.0);
  border-radius: 10px;
  transition: border-color 0.4s var(--mp-ease);
  pointer-events: none;
  z-index: 2;
}
.ig-cell-lux:hover::after { border-color: rgba(255, 255, 255, 0.45); }
.ig-handle-lux {
  position: relative;
  font-size: 1.8rem;
}
.ig-handle-lux::after {
  content: '';
  position: absolute;
  bottom: -4px;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mp-rose), transparent);
  transform: scaleX(0);
  transition: transform 0.45s var(--mp-ease);
}
.ig-handle-lux:hover::after { transform: scaleX(1); }

/* ── CTA — MIDNIGHT GOLD ── */
.cta-lux {
  padding-block: 6.5rem;
  background:
    radial-gradient(ellipse 70% 90% at 25% 40%, rgba(201, 169, 110, 0.10), transparent 60%),
    linear-gradient(140deg, #1C0F0A 0%, #2C1810 45%, #3D2418 100%);
}
.cta-lux::after {
  content: '';
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: 20px;
  pointer-events: none;
}
.cta-lux h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }

/* ── PAGE HERO (INNER PAGES) — GALLERY ENTRANCE ── */
.page-hero-lux {
  padding-bottom: 5rem;
  background:
    radial-gradient(ellipse 65% 80% at 50% -10%, rgba(242, 196, 206, 0.35), transparent 60%),
    linear-gradient(160deg, #FBF4F0 0%, #F3E2DC 55%, #F8EFEA 100%);
}
.page-hero-lux::before {
  content: '✦';
  position: relative;
  display: block;
  text-align: center;
  color: var(--mp-gold);
  font-size: 0.8rem;
  margin-bottom: 1.1rem;
  letter-spacing: 0;
  animation: mpStarTwinkle 3.5s ease-in-out infinite;
}
.page-hero-lux h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.015em;
}
html[dir="rtl"] .page-hero-lux h1 { letter-spacing: 0; }
.page-hero-lux p { font-size: 1rem; }

/* ── ABOUT PAGE ── */
.about-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding-block: 2rem;
}
.about-page-visual,
.about-page-grid .hero-v3-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 0;
  direction: ltr;
}
.about-hero-figure {
  width: min(100%, 380px);
  margin-inline: auto;
}
.about-page-grid .hero-v3-visual.reveal {
  opacity: 0;
  transform: translateY(42px);
}
.about-page-grid .hero-v3-visual.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.about-page-text h2 {
  font-family: var(--mp-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--mp-espresso);
  margin-bottom: 1.2rem;
}
html[dir="rtl"] .about-page-text h2 { font-family: var(--font-ar-display); font-weight: 700; }
.about-page-text p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 1rem;
  font-weight: 300;
}
html[dir="rtl"] .about-page-text p { font-family: var(--font-ar); }
.cert-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--mp-hairline);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  font-size: 0.72rem;
  color: var(--mp-mocha);
  box-shadow: var(--mp-shadow-sm);
  transition: all 0.35s var(--mp-ease);
}
.cert-pill:hover {
  transform: translateY(-2px);
  border-color: var(--mp-gold);
  box-shadow: var(--mp-shadow-gold);
}
.cert-strip { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* ── CONTACT PAGE — CONCIERGE DESK ── */
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  gap: 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
  align-items: start;
  padding-block: 1.5rem;
}
.contact-info-block {
  position: sticky;
  top: 110px;
  background: linear-gradient(160deg, #2C1810, #1C0F0A);
  border-radius: var(--mp-radius);
  padding: 2.4rem 2.1rem;
  color: var(--mp-gold-light);
  box-shadow: var(--mp-shadow-lg);
  border: 1px solid rgba(201, 169, 110, 0.2);
  overflow: hidden;
  position: relative;
}
.contact-info-block::before {
  content: '';
  position: absolute;
  top: -80px;
  inset-inline-end: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.16), transparent 70%);
}
.contact-info-block h3 {
  font-family: var(--mp-serif);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
  color: var(--mp-gold-light);
}
html[dir="rtl"] .contact-info-block h3 { font-family: var(--font-ar-display); }
.contact-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding-block: 0.95rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.14);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.3);
  background: rgba(201, 169, 110, 0.08);
  font-size: 1rem;
}
.contact-info-block .contact-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 213, 163, 0.6);
  margin-bottom: 0.2rem;
}
html[dir="rtl"] .contact-info-block .contact-label { font-family: var(--font-ar); letter-spacing: 0; text-transform: none; }
.contact-info-block .contact-text { font-size: 0.88rem; color: #F4E8D8; }
.contact-info-block .contact-text--sub {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: rgba(232, 213, 163, 0.72);
}
html[dir="rtl"] .contact-info-block .contact-text { font-family: var(--font-ar); }
.contact-map-wrap {
  margin-top: 1.4rem;
}
.contact-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mp-gold);
  text-decoration: none;
  transition: color 0.3s var(--mp-ease), opacity 0.3s;
}
.contact-maps-link:hover {
  color: var(--mp-gold-light);
  opacity: 0.9;
}
html[dir="rtl"] .contact-maps-link {
  font-family: var(--font-ar);
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.78rem;
}
.contact-info-block .contact-map {
  margin-top: 0;
  padding: 0;
  height: 220px;
  text-align: initial;
  background: rgba(12, 8, 6, 0.35);
  border-radius: var(--mp-radius-sm);
  border: 1px solid rgba(201, 169, 110, 0.28);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.contact-info-block .contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(12%) contrast(1.02) saturate(0.92);
}

/* Booking form — refined inputs */
.booking-form {
  background: var(--mp-porcelain);
  border: 1px solid rgba(232, 213, 196, 0.6);
  border-radius: var(--mp-radius);
  padding: 2.6rem 2.4rem;
  box-shadow: var(--mp-shadow-md);
}
.booking-form .form-group label,
.cart-form label,
.auth-panel label {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mp-mocha);
}
.cart-form label .i18n-label,
.auth-panel label .i18n-label {
  display: block;
  margin-bottom: 0.35rem;
}
html[dir="rtl"] .booking-form .form-group label,
html[dir="rtl"] .cart-form label,
html[dir="rtl"] .auth-panel label {
  font-family: var(--font-ar);
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.8rem;
}
.booking-form input,
.booking-form select,
.booking-form textarea,
.cart-form input,
.cart-form textarea,
.auth-panel input {
  background: #fff;
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  transition: border-color 0.35s var(--mp-ease), box-shadow 0.35s var(--mp-ease);
  color: var(--mp-espresso);
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.cart-form input:focus,
.cart-form textarea:focus,
.auth-panel input:focus {
  outline: none;
  border-color: var(--mp-gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.14);
}
.form-submit {
  border-radius: 999px;
  padding: 1.05rem 2rem;
  letter-spacing: 0.14em;
  background: linear-gradient(140deg, #4A2C1E 0%, var(--mp-espresso) 60%, #1C0F0A 100%);
  color: var(--mp-gold-light);
  box-shadow: 0 10px 32px rgba(44, 24, 16, 0.25);
  transition: all 0.45s var(--mp-ease);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(44, 24, 16, 0.32); }

/* ── 404 PAGE ── */
.not-found-hero { padding-bottom: 3rem; }
.not-found-code {
  font-family: var(--mp-serif);
  font-size: clamp(6.5rem, 24vw, 11rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: rgba(201, 169, 110, 0.42);
  margin-bottom: 0.75rem;
}
.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ── CART PAGE ── */
.cart-hero { padding-bottom: 2.5rem; }
.cart-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  min-height: 50vh;
}
.cart-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.cart-checkout-btn {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}
.cart-guest-hint {
  font-size: 0.72rem;
  margin-top: 0.75rem;
}
.cart-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 380px);
  gap: 2rem;
  align-items: start;
}
.cart-items { display: flex; flex-direction: column; gap: 1rem; }
.cart-summary {
  position: sticky;
  top: 110px;
  background: var(--mp-porcelain);
  border: 1px solid rgba(232, 213, 196, 0.6);
  border-radius: var(--mp-radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--mp-shadow-md);
}
.cart-summary h2 {
  font-family: var(--mp-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--mp-espresso);
  margin-bottom: 1.2rem;
}
html[dir="rtl"] .cart-summary h2 { font-family: var(--font-ar-display); }
.cart-cod-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--mp-hairline-soft);
  font-size: 0.75rem;
  color: var(--mp-mocha);
  margin-bottom: 1.2rem;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-block: 1rem;
  border-top: 1px solid var(--mp-hairline-soft);
  border-bottom: 1px solid var(--mp-hairline-soft);
  margin-bottom: 1.2rem;
}
.cart-total-row--sub,
.cart-total-row--discount {
  padding-block: 0.45rem;
  border-bottom: none;
  margin-bottom: 0;
  font-size: 0.88rem;
  color: var(--mp-mocha);
}
.cart-total-row--discount span:last-child {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d7a4f;
}
.cart-promo {
  margin-bottom: 1rem;
}
.cart-promo-label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mp-mocha);
  margin-bottom: 0.45rem;
}
html[dir="rtl"] .cart-promo-label {
  font-family: var(--font-ar);
  letter-spacing: 0;
  text-transform: none;
}
.cart-promo-row {
  display: flex;
  gap: 0.5rem;
}
.cart-promo-input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--mp-hairline);
  border-radius: 10px;
  background: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cart-promo-btn {
  flex-shrink: 0;
  padding: 0.55rem 0.9rem;
  font-size: 0.72rem;
}
.cart-promo-msg {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
}
.cart-promo-msg.success { color: #2d7a4f; }
.cart-promo-msg.error { color: #b42318; }
.cart-total-row span:last-child {
  font-family: var(--mp-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--mp-espresso);
}
.cart-empty {
  text-align: center;
  padding: 4rem 1rem;
}
.cart-empty p {
  font-family: var(--mp-serif);
  font-size: 1.5rem;
  color: var(--mp-mocha);
  margin-bottom: 1.5rem;
}
html[dir="rtl"] .cart-empty p { font-family: var(--font-ar-display); }

/* ── AUTH MODAL — VELVET BOX ── */
.auth-modal {
  border-radius: var(--mp-radius);
  border: 1px solid var(--mp-hairline);
  box-shadow: 0 40px 120px rgba(28, 15, 10, 0.35);
}
.auth-backdrop {
  backdrop-filter: blur(8px);
  background: rgba(28, 15, 10, 0.45);
}
.auth-title {
  font-family: var(--mp-serif);
  font-weight: 500;
}
.auth-tabs { gap: 0.4rem; }
.auth-tab {
  border-radius: 999px;
  transition: all 0.35s var(--mp-ease);
}
.auth-tab.active {
  background: linear-gradient(140deg, #4A2C1E, var(--mp-espresso));
  color: var(--mp-gold-light);
  box-shadow: 0 4px 14px rgba(44, 24, 16, 0.25);
}

/* ── FOOTER — MIDNIGHT ATELIER ── */
footer {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 169, 110, 0.07), transparent 60%),
    linear-gradient(180deg, #160B07 0%, #0F0705 100%);
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mp-gold), transparent);
  opacity: 0.5;
}
.footer-brand .logo {
  font-family: var(--mp-serif);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}
.footer-brand .tagline {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.58rem;
  color: rgba(232, 213, 163, 0.5);
}
html[dir="rtl"] .footer-brand .tagline { letter-spacing: 0.1em; }
.footer-col h4 {
  position: relative;
  padding-bottom: 0.7rem;
  letter-spacing: 0.22em;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 28px;
  height: 1px;
  background: var(--mp-gold);
  opacity: 0.6;
}
.footer-col a {
  transition: color 0.3s, padding 0.3s var(--mp-ease);
}
.footer-col a:hover { padding-inline-start: 6px; }
.social-btn {
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 50%;
}
.footer-bottom { border-top: 1px solid rgba(201, 169, 110, 0.12); }

html[lang="ar"] footer,
html[dir="rtl"] footer {
  font-family: var(--font-ar);
}
html[lang="ar"] .footer-brand .logo,
html[dir="rtl"] .footer-brand .logo {
  font-family: var(--font-ar-display) !important;
  font-weight: 600;
  letter-spacing: 0;
}
html[lang="ar"] .footer-brand .tagline,
html[dir="rtl"] .footer-brand .tagline {
  font-family: var(--font-ar);
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: 0.72rem;
  line-height: 1.6;
}
html[lang="ar"] .footer-brand p,
html[dir="rtl"] .footer-brand p {
  font-family: var(--font-ar);
  font-size: 0.82rem;
  line-height: 1.85;
}
html[lang="ar"] .footer-col h4,
html[dir="rtl"] .footer-col h4 {
  font-family: var(--font-ar-display) !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}
html[lang="ar"] .footer-col a,
html[dir="rtl"] .footer-col a {
  font-family: var(--font-ar);
  font-size: 0.8rem;
  letter-spacing: 0;
}
html[lang="ar"] .footer-copy,
html[dir="rtl"] .footer-copy,
html[lang="ar"] .loc-tag,
html[dir="rtl"] .loc-tag {
  font-family: var(--font-ar);
  letter-spacing: 0;
  font-size: 0.72rem;
}

/* ── SIGNATURE TREATMENTS — EDITORIAL MOSAIC ── */
.sig-section {
  position: relative;
  overflow: hidden;
}
.sig-ghost {
  position: absolute;
  top: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mp-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(5.5rem, 16vw, 14rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.22);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.sig-section .lux-eyebrow,
.sig-section .lux-heading,
.sig-section .lux-desc,
.sig-section .section-cta-row {
  position: relative;
  z-index: 1;
}
.sig-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 252px;
  gap: 1.1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.sig-card {
  position: relative;
  grid-column: span 2;
  display: block;
  border-radius: var(--mp-radius);
  overflow: hidden;
  text-decoration: none;
  background: var(--mp-espresso);
  box-shadow: var(--mp-shadow-sm);
  transition: transform 0.55s var(--mp-ease), box-shadow 0.55s var(--mp-ease);
  isolation: isolate;
}
.sig-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--mp-shadow-lg);
}
.sig-card::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(232, 213, 163, 0);
  border-radius: calc(var(--mp-radius) - 8px);
  transition: border-color 0.5s var(--mp-ease);
  pointer-events: none;
  z-index: 4;
}
.sig-card:hover::after { border-color: rgba(232, 213, 163, 0.45); }
.sig-card--feature {
  grid-row: span 2;
  border-radius: 230px 230px var(--mp-radius) var(--mp-radius);
}
.sig-card--feature::after { border-radius: 222px 222px calc(var(--mp-radius) - 8px) calc(var(--mp-radius) - 8px); }
.sig-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.sig-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: saturate(1.04);
  transition: transform 0.8s var(--mp-ease);
}
.sig-card:hover .sig-media img { transform: scale(1.07); }
.sig-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(28, 15, 10, 0.18) 0%, transparent 30%, transparent 42%, rgba(28, 15, 10, 0.88) 100%);
  transition: background 0.5s var(--mp-ease), opacity 0.5s var(--mp-ease);
}
.sig-card:hover .sig-veil {
  background:
    linear-gradient(180deg, rgba(28, 15, 10, 0.28) 0%, rgba(28, 15, 10, 0.12) 30%, rgba(44, 24, 16, 0.35) 60%, rgba(28, 15, 10, 0.94) 100%);
}
.sig-num {
  position: absolute;
  top: 0.9rem;
  inset-inline-end: 1.2rem;
  z-index: 3;
  font-family: var(--mp-serif);
  font-style: italic;
  font-size: 3.4rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.55);
  text-shadow: 0 2px 18px rgba(28, 15, 10, 0.45);
}
.sig-card--feature .sig-num { top: auto; bottom: calc(100% - 230px + 1rem); inset-inline-end: 1.4rem; }
.sig-info {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 3;
  padding: 1.4rem 1.5rem 1.45rem;
}
.sig-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.9rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 213, 163, 0.45);
  background: rgba(28, 15, 10, 0.4);
  backdrop-filter: blur(8px);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mp-gold-light);
}
html[dir="rtl"] .sig-chip { font-family: var(--font-ar); letter-spacing: 0; text-transform: none; font-size: 0.72rem; }
.sig-info h3 {
  font-family: var(--mp-serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: #FFF9F2;
  margin-bottom: 0.35rem;
  line-height: 1.15;
}
html[dir="rtl"] .sig-info h3 { font-family: var(--font-ar-display); font-weight: 700; }
.sig-card--feature .sig-info h3 { font-size: 2rem; }
.sig-info p {
  font-size: 0.76rem;
  font-weight: 300;
  color: rgba(255, 249, 242, 0.82);
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 34ch;
}
html[dir="rtl"] .sig-info p { font-family: var(--font-ar); font-size: 0.84rem; }
.sig-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mp-gold-light);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--mp-ease), transform 0.45s var(--mp-ease), gap 0.3s var(--mp-ease);
}
html[dir="rtl"] .sig-cta { font-family: var(--font-ar); letter-spacing: 0; text-transform: none; font-size: 0.78rem; }
html[dir="rtl"] .sig-cta svg { transform: scaleX(-1); }
.sig-card:hover .sig-cta { opacity: 1; transform: translateY(0); }
.sig-cta::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--mp-gold);
}
@media (hover: none) {
  .sig-cta { opacity: 1; transform: none; }
}

/* Wide finale card — split menu panel.
   Fixed RTL-style composition in every language: image on the left,
   espresso text panel on the right, fade blending right-to-left. */
.sig-card--wide {
  grid-column: 1 / -1;
  display: grid;
  direction: ltr; /* grid tracks never flip — image stays left in AR too */
  grid-template-columns: minmax(300px, 1fr) 1.2fr;
  background: linear-gradient(140deg, #1C0F0A 0%, #2C1810 55%, #3D2418 100%);
}
html[dir="rtl"] .sig-card--wide .sig-info { direction: rtl; }
.sig-card--wide .sig-media {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  min-height: 100%;
}
.sig-card--wide .sig-media::before,
html[dir="rtl"] .sig-card--wide .sig-media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(270deg, #21120B 0%, transparent 45%);
}
.sig-card--wide .sig-veil { display: none; }
.sig-card--wide .sig-info {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  padding: 2.2rem 2.6rem;
}
.sig-card--wide .sig-info h3 { font-size: 1.9rem; }
.sig-card--wide .sig-info p { max-width: 44ch; }
.sig-card--wide .sig-num {
  color: rgba(232, 213, 163, 0.28);
  inset-inline: auto;
  right: 1.4rem;
  left: auto;
}

/* ── SIGNATURE MENU — EDITORIAL LIST (services page) ── */
.sig-list-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FAF6F1 0%, #F6ECE7 55%, #FAF6F1 100%);
}
.sig-list {
  position: relative;
  z-index: 1;
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.sig-row {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: 2.6rem;
  border-bottom: 1px solid var(--mp-hairline-soft);
}
.sig-row:last-child { border-bottom: none; }
.sig-row--flip { grid-template-columns: 1fr minmax(260px, 340px); }
.sig-row--flip .sig-row-media { grid-column: 2; grid-row: 1; }
.sig-row--flip .sig-row-body { grid-column: 1; grid-row: 1; }
.sig-row-media {
  position: relative;
  padding: 10px;
  border: 1px solid var(--mp-hairline);
  border-radius: 999px 999px 22px 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.2));
  box-shadow: var(--mp-shadow-md);
  transition: transform 0.55s var(--mp-ease), box-shadow 0.55s var(--mp-ease);
}
.sig-row:hover .sig-row-media {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: var(--mp-shadow-lg);
}
.sig-row--flip:hover .sig-row-media { transform: translateY(-6px) rotate(1deg); }
.sig-row-media::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px dashed rgba(201, 169, 110, 0.32);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}
.sig-row-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 999px 999px 16px 16px;
  filter: saturate(1.04);
}
.sig-row-body { position: relative; }
.sig-row-num {
  position: absolute;
  top: -2.6rem;
  inset-inline-start: -0.6rem;
  font-family: var(--mp-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 5.5rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.45);
  pointer-events: none;
}
.sig-row-body h3 {
  position: relative;
  font-family: var(--mp-serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 500;
  color: var(--mp-espresso);
  margin-bottom: 0.6rem;
}
html[dir="rtl"] .sig-row-body h3 { font-family: var(--font-ar-display); font-weight: 700; }
.sig-row-body p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 48ch;
  margin-bottom: 1.4rem;
}
html[dir="rtl"] .sig-row-body p { font-family: var(--font-ar); }
.sig-row-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 1px solid rgba(44, 24, 16, 0.2);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mp-espresso);
  text-decoration: none;
  transition: all 0.45s var(--mp-ease);
}
html[dir="rtl"] .sig-row-btn { font-family: var(--font-ar); font-size: 0.82rem; letter-spacing: 0; text-transform: none; }
html[dir="rtl"] .sig-row-btn svg { transform: scaleX(-1); }
.sig-row-btn:hover {
  background: var(--mp-espresso);
  color: var(--mp-gold-light);
  border-color: var(--mp-espresso);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(44, 24, 16, 0.22);
}

@media (max-width: 800px) {
  .sig-row,
  .sig-row--flip {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.6rem;
    padding-block: 2.2rem;
  }
  .sig-row--flip .sig-row-media { grid-column: 1; grid-row: 1; }
  .sig-row--flip .sig-row-body { grid-column: 1; grid-row: 2; }
  .sig-row-media { max-width: 300px; margin-inline: auto; }
  .sig-row-num {
    position: static;
    display: block;
    font-size: 3.4rem;
    margin-bottom: 0.3rem;
  }
  .sig-row-body p { margin-inline: auto; }
}

/* ── PRODUCT ART FRAME (hero-style portrait holder) ── */
.product-art-frame {
  position: relative;
  direction: ltr;
  width: min(100%, 420px);
  margin-inline: auto;
}
.product-art-frame--card {
  width: 100%;
  max-width: 260px;
}
.product-art-frame--detail {
  width: min(100%, 460px);
}
.product-art-frame .product-art-ring {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  bottom: auto;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.35);
  pointer-events: none;
}
.product-art-frame .product-art-ring--1 {
  width: 116%;
  max-width: none;
  aspect-ratio: 1;
  bottom: -4%;
  animation: luxRingSpin 30s linear infinite;
}
.product-art-frame .product-art-ring--2 {
  width: 98%;
  max-width: none;
  aspect-ratio: 1;
  bottom: 1.5%;
  border-color: rgba(201, 169, 110, 0.18);
  animation: luxRingSpin 25s linear infinite reverse;
}
.product-art-portrait-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--mp-hairline);
  border-radius: 999px 999px 28px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.12));
  backdrop-filter: blur(6px);
  box-shadow: var(--mp-shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.product-art-portrait-wrap::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(201, 169, 110, 0.35);
  border-radius: inherit;
  pointer-events: none;
}
.product-art-portrait {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 999px 999px 20px 20px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% 20%, rgba(242, 196, 206, 0.5), transparent 70%),
    linear-gradient(180deg, #F6E8E2, #EDD5C8);
}
.product-art-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 20px 20px;
  font-size: 2.4rem;
  color: rgba(201, 169, 110, 0.45);
  background:
    radial-gradient(ellipse 90% 70% at 50% 20%, rgba(242, 196, 206, 0.5), transparent 70%),
    linear-gradient(180deg, #F6E8E2, #EDD5C8);
}

.home-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 1100px;
  margin: 2.5rem auto 0;
}
.product-card-lux {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-card-lux-link {
  display: block;
  width: 100%;
  text-decoration: none;
  transition: transform 0.55s var(--mp-ease);
}
.product-card-lux-link:hover { transform: translateY(-6px); }
.product-card-lux-body {
  width: 100%;
  padding-top: 1.2rem;
}
.product-card-lux-brand {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mp-gold-deep);
  margin-bottom: 0.35rem;
}
html[dir="rtl"] .product-card-lux-brand { font-family: var(--font-ar); letter-spacing: 0.04em; }
.product-card-lux h3 {
  font-family: var(--mp-serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.45rem;
  line-height: 1.25;
}
html[dir="rtl"] .product-card-lux h3 { font-family: var(--font-ar-display); font-weight: 700; }
.product-card-lux h3 a {
  color: var(--mp-espresso);
  text-decoration: none;
  transition: color 0.3s;
}
.product-card-lux h3 a:hover { color: var(--mp-gold-deep); }
.product-card-lux-desc {
  font-size: 0.82rem;
  color: var(--mp-mocha);
  line-height: 1.55;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
html[dir="rtl"] .product-card-lux-desc { font-family: var(--font-ar); }
.product-card-lux-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.product-card-lux-price {
  font-family: var(--mp-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--mp-espresso);
}
.product-card-add.added {
  border-color: #7FA877;
  color: #5C8A55;
}
.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.62rem;
}

.product-gallery-stage {
  display: flex;
  justify-content: center;
}

/* ── PRODUCT DETAIL PAGE ── */
.product-page-wrap {
  padding-top: calc(var(--sale-banner-h, 0px) + 6.25rem);
  min-height: 70vh;
}
.product-page-top {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.35rem clamp(1rem, 3vw, 2rem) 0.85rem;
}
.product-page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem) 5rem;
  min-height: auto;
}
.product-loading {
  text-align: center;
  padding: 4rem 1rem;
}
.product-crumb { margin-bottom: 0; }
.product-crumb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mp-mocha);
  text-decoration: none;
  transition: color 0.3s, gap 0.3s var(--mp-ease);
}
html[dir="rtl"] .product-crumb-link { font-family: var(--font-ar); letter-spacing: 0; text-transform: none; font-size: 0.82rem; }
html[dir="rtl"] .product-crumb-link svg { transform: scaleX(-1); }
.product-crumb-link:hover { color: var(--mp-gold-deep); gap: 0.7rem; }

.product-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.product-gallery { position: sticky; top: 110px; }
.product-gallery-main {
  position: relative;
  border-radius: var(--mp-radius);
  overflow: hidden;
  border: 1px solid var(--mp-hairline);
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(242, 196, 206, 0.35), transparent 70%),
    linear-gradient(180deg, #FBF4F0, #F3E2DC);
  box-shadow: var(--mp-shadow-md);
  aspect-ratio: 4 / 5;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s var(--mp-ease);
}
.product-hero-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 4rem;
  color: rgba(201, 169, 110, 0.4);
}
.product-gallery-thumbs {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.9rem;
  flex-wrap: wrap;
}
.product-thumb {
  width: 74px;
  height: 74px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--mp-hairline-soft);
  background: #fff;
  padding: 0;
  cursor: pointer;
  opacity: 0.65;
  transition: all 0.35s var(--mp-ease);
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-thumb:hover { opacity: 1; transform: translateY(-2px); }
.product-thumb.active {
  opacity: 1;
  border-color: var(--mp-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.18), var(--mp-shadow-sm);
}

.product-info { padding-top: 0.5rem; }
.product-info-brand {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mp-gold-deep);
  margin-bottom: 0.7rem;
}
html[dir="rtl"] .product-info-brand { font-family: var(--font-ar); letter-spacing: 0.05em; }
.product-info-title {
  font-family: var(--mp-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--mp-espresso);
  line-height: 1.15;
  margin-bottom: 0.9rem;
}
html[dir="rtl"] .product-info-title { font-family: var(--font-ar-display); font-weight: 700; }
.product-info-price {
  font-family: var(--mp-serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--mp-espresso);
  margin-bottom: 0.8rem;
}
.product-stock {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.4rem;
}
html[dir="rtl"] .product-stock { font-family: var(--font-ar); letter-spacing: 0; font-size: 0.78rem; }
.product-stock--in {
  background: rgba(127, 168, 119, 0.14);
  color: #4E7A46;
  border: 1px solid rgba(127, 168, 119, 0.35);
}
.product-stock--in::before { content: '●'; font-size: 0.55rem; }
.product-stock--out {
  background: rgba(180, 80, 80, 0.1);
  color: #A04848;
  border: 1px solid rgba(180, 80, 80, 0.3);
}
.product-info-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.95;
  margin-bottom: 1.8rem;
  max-width: 52ch;
}
html[dir="rtl"] .product-info-desc { font-family: var(--font-ar); }

.product-buy-row {
  display: flex;
  align-items: stretch;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.product-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--mp-hairline);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.3rem;
}
.product-qty button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  color: var(--mp-espresso);
  cursor: pointer;
  transition: background 0.3s;
}
.product-qty button:hover { background: rgba(201, 169, 110, 0.15); }
.product-qty span {
  min-width: 32px;
  text-align: center;
  font-family: var(--mp-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--mp-espresso);
}
.product-add-btn { flex: 1; justify-content: center; min-width: 200px; }
.product-add-btn.added {
  background: linear-gradient(135deg, #7FA877, #5C8A55);
  color: #fff;
}
.product-add-btn:disabled { opacity: 0.45; cursor: not-allowed; }

.product-meta-strip {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--mp-hairline-soft);
}
.product-meta-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--mp-mocha);
}
html[dir="rtl"] .product-meta-strip span { font-family: var(--font-ar); }
.product-meta-strip svg { color: var(--mp-gold-deep); flex-shrink: 0; }

.product-related { margin-top: 5rem; }
.product-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(1.4rem, 3vw, 2rem);
  margin-top: 1.8rem;
}
.related-card {
  text-decoration: none;
  text-align: center;
  border-radius: var(--mp-radius-sm);
  background: var(--mp-porcelain);
  border: 1px solid rgba(232, 213, 196, 0.55);
  padding: 1rem 1rem 1.2rem;
  transition: all 0.45s var(--mp-ease);
  box-shadow: var(--mp-shadow-sm);
}
.related-card:hover {
  transform: translateY(-6px);
  border-color: var(--mp-hairline);
  box-shadow: var(--mp-shadow-md);
}
.related-card-img {
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.85rem;
  background: linear-gradient(180deg, #FBF4F0, #F3E2DC);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: rgba(201, 169, 110, 0.4);
}
.related-card-img img { width: 100%; height: 100%; object-fit: cover; }
.related-card-name {
  font-family: var(--mp-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--mp-espresso);
}
html[dir="rtl"] .related-card-name { font-family: var(--font-ar-display); }
.related-card-price {
  font-size: 0.8rem;
  color: var(--mp-gold-deep);
  margin-top: 0.25rem;
}

@media (max-width: 900px) {
  .product-page-wrap { padding-top: calc(var(--sale-banner-h, 0px) + 5.5rem); }
  .product-page-top { padding-inline: 1.25rem; }
  .product-page { padding-inline: 1.25rem; padding-top: 0; }
  .product-layout { grid-template-columns: 1fr; gap: 1.8rem; }
  .product-gallery { position: relative; top: 0; }
  .product-buy-row { flex-direction: column; }
  .product-add-btn { min-width: 0; width: 100%; }
}

/* ── REVEAL CHOREOGRAPHY ── */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.9s var(--mp-ease-out),
    transform 0.9s var(--mp-ease-out);
  transition-delay: var(--mp-stagger, 0s);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { --mp-stagger: 0.12s; }
.reveal-delay-2 { --mp-stagger: 0.24s; }
.reveal-delay-3 { --mp-stagger: 0.36s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-info-block { position: relative; top: 0; }
  .about-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-hero-figure { max-width: 340px; }
}
@media (max-width: 1024px) {
  .sig-grid { grid-auto-rows: 220px; gap: 0.9rem; }
  .sig-info { padding: 1.1rem 1.2rem 1.2rem; }
  .sig-info h3 { font-size: 1.3rem; }
  .sig-card--feature .sig-info h3 { font-size: 1.6rem; }
}
@media (max-width: 900px) {
  .sig-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 215px; }
  .sig-card { grid-column: span 1; }
  .sig-card--feature {
    grid-column: 1 / -1;
    grid-row: span 2;
    border-radius: 150px 150px var(--mp-radius) var(--mp-radius);
  }
  .sig-card--feature::after { border-radius: 142px 142px calc(var(--mp-radius) - 8px) calc(var(--mp-radius) - 8px); }
  .sig-card--feature .sig-num { top: 1rem; bottom: auto; }
  .sig-card--wide {
    grid-column: 1 / -1;
    grid-row: span 2;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }
  .sig-card--wide .sig-media { grid-column: 1; grid-row: 1; }
  .sig-card--wide .sig-media::before {
    background: linear-gradient(0deg, #21120B 0%, transparent 45%) !important;
  }
  .sig-card--wide .sig-info { grid-column: 1; grid-row: 2; padding: 1.3rem 1.4rem 1.5rem; }
  .sig-card--wide .sig-num { inset-inline-start: auto; inset-inline-end: 1.2rem; }
  .sig-info p { font-size: 0.72rem; max-width: none; }
  .sig-ghost { top: 4.2rem; }
  .lux-section { padding-block: 4.5rem; }
  .lux-eyebrow {
    font-size: 0.54rem;
    letter-spacing: 0.24em;
    padding-inline: 0.75rem;
    text-align: center;
  }
  .lux-eyebrow::before,
  .lux-eyebrow::after { width: 22px; flex-shrink: 0; }
  .lux-heading { padding-inline: 0.25rem; }
  .cta-lux { padding-block: 5rem; }
  .cta-lux::after { inset: 0.8rem; }
  .hero-v3-portrait-wrap { padding: 10px; }
  .cart-grid { grid-template-columns: 1fr; }
  .cart-summary { position: relative; top: 0; }
  .cart-page { padding-inline: 1.25rem; }
  .booking-form { padding: 1.8rem 1.4rem; }
  .mp-scroll-hint { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonial-lux { width: 310px; padding: 1.8rem; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE REFINEMENT LAYER — fluid type, premium mobile nav,
   touch-friendly controls. Appended last to win the cascade.
════════════════════════════════════════════════════════════════ */

html { font-size: clamp(15px, 0.35vw + 14px, 16.5px); }

/* Balanced wrapping for all display text */
h1, h2, h3, .lux-heading, .hero-v3-h1, .page-hero-lux h1 { text-wrap: balance; }
@supports (text-wrap: pretty) {
  p, .lux-desc, .hero-v3-sub { text-wrap: pretty; }
}

/* Touch targets */
@media (pointer: coarse) {
  button, .btn-lux, .btn-enroll, .tube-btn, .sig-row-btn, .nav-cart-btn,
  .lang-btn, .form-submit, .product-qty button {
    min-height: 44px;
  }
  .nav-toggle { min-width: 44px; min-height: 44px; }
}

@media (min-width: 901px) {
  .nav-links {
    display: flex !important;
    position: static !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    inset: auto !important;
    z-index: auto !important;
    padding: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
  }
  .nav-links li {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 900px) {
  /* ── Compact top bar — no overflow on small screens ── */
  #navbar {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: unset !important;
    padding: 0.6rem max(0.85rem, env(safe-area-inset-right)) 0.6rem max(0.85rem, env(safe-area-inset-left));
    padding-top: max(0.6rem, env(safe-area-inset-top));
    gap: 0.4rem;
  }
  .nav-brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 10rem);
  }
  .nav-logo-text {
    font-size: clamp(0.9rem, 4vw, 1.05rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-tagline { display: none; }
  .nav-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
    margin: 0 !important;
  }
  .lang-switch { flex-shrink: 0; padding: 1px; }
  .lang-btn {
    padding: 0.35rem 0.42rem !important;
    min-width: 1.75rem !important;
    font-size: 0.5rem !important;
    min-height: 36px;
  }
  .nav-book-btn {
    padding: 0.45rem !important;
    min-width: 40px;
    min-height: 40px;
    justify-content: center;
  }
  .nav-book-btn span { display: none; }
  .nav-cart-btn {
    min-width: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem;
  }
  .nav-account { display: none; }
  .nav-toggle {
    display: flex !important;
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
    min-width: 44px;
    min-height: 44px;
  }

  body.nav-open { overflow: hidden; touch-action: none; }

  /* ── Premium full-screen mobile menu ── */
  .nav-links {
    position: fixed !important;
    top: 0;
    inset-inline: 0;
    bottom: 0;
    z-index: -1;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0 !important;
    margin: 0 !important;
    padding: calc(4.5rem + env(safe-area-inset-top)) 1.25rem calc(2rem + env(safe-area-inset-bottom)) !important;
    border: none !important;
    grid-column: unset !important;
    order: unset !important;
    background:
      radial-gradient(ellipse 80% 50% at 50% 0%, rgba(242, 196, 206, 0.25), transparent 60%),
      linear-gradient(rgba(251, 245, 243, 0.97), rgba(251, 245, 243, 0.97)) !important;
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    border-radius: 0 !important;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.45s var(--mp-ease), transform 0.45s var(--mp-ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open {
    z-index: 999;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links li {
    width: 100%;
    max-width: 420px;
    text-align: center;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s var(--mp-ease), transform 0.5s var(--mp-ease);
  }
  .nav-links.open li { opacity: 1; transform: translateY(0); }
  .nav-links.open li:nth-child(1) { transition-delay: 0.05s; }
  .nav-links.open li:nth-child(2) { transition-delay: 0.1s; }
  .nav-links.open li:nth-child(3) { transition-delay: 0.15s; }
  .nav-links.open li:nth-child(4) { transition-delay: 0.2s; }
  .nav-links.open li:nth-child(5) { transition-delay: 0.25s; }
  .nav-links.open li:nth-child(6) { transition-delay: 0.3s; }
  .nav-links.open li:nth-child(7) { transition-delay: 0.35s; }
  .nav-links a {
    display: block !important;
    padding: 0.75rem 0 !important;
    font-family: var(--mp-serif) !important;
    font-size: clamp(1.25rem, 5.5vw, 1.6rem) !important;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--mp-espresso);
    border-bottom: 1px solid var(--mp-hairline-soft);
  }
  html[dir="rtl"] .nav-links a { font-family: var(--font-ar-display) !important; }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links a.active { color: var(--mp-gold-deep); }
  .nav-links a::after { display: none !important; }

  /* Toggle stays above the overlay */
  /* No backdrop-filter on the bar itself: it would become the containing
     block for the fixed full-screen menu and collapse it to the bar height. */
  #navbar,
  #navbar.scrolled {
    background: rgba(252, 248, 244, 0.97) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* ── Layout rhythm on mobile ── */
  .hero-v3-figure { width: min(280px, 76vw); }
  .hero-v3-figure .hero-v3-float-card--cert { inset-inline-start: -3%; top: 12%; }
  .hero-v3-figure .hero-v3-float-card--rating { inset-inline-end: -3%; bottom: 20%; }
  .page-hero-lux h1 { font-size: clamp(2rem, 8.5vw, 2.7rem); }
  .lux-heading { font-size: clamp(1.7rem, 7vw, 2.3rem); }
  .hero-v3-h1 { letter-spacing: 0; }
  .hero-v3-badge { font-size: 0.52rem; padding: 0.4rem 0.85rem; }
  html[dir="rtl"] .hero-v3-badge { font-size: 0.68rem; }
  .hero-v3-stats { gap: 1.2rem; }
  .hero-v3-stat-val { font-size: 1.7rem; }
  .btn-lux { width: 100%; justify-content: center; }
  .section-cta-row { display: flex; justify-content: center; padding-inline: 1.25rem; }
  .section-cta-row .btn-lux { max-width: 420px; }

  /* Forms single-column + comfortable */
  .form-row { grid-template-columns: 1fr !important; display: grid; gap: 0; }
  .booking-form input,
  .booking-form select,
  .booking-form textarea,
  .cart-form input,
  .cart-form textarea,
  .auth-panel input { font-size: 16px; /* prevents iOS zoom */ }

  /* Cart items stack neatly */
  .cart-item {
    display: grid !important;
    grid-template-columns: 1fr auto;
    gap: 0.5rem 1rem;
    align-items: center;
  }
  .cart-item-price { grid-column: 2; text-align: end; }

  /* Footer centered & airy */
  .footer-top { text-align: start; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.6rem; text-align: center; }
}

@media (max-width: 480px) {
  .nav-book-btn { display: none; }
  .nav-actions { gap: 0.25rem; }
  .nav-brand { max-width: calc(100% - 8.5rem); }
  .lang-btn { padding: 0.3rem 0.38rem !important; min-width: 1.6rem !important; }
}

@media (max-width: 600px) {
  .lux-section { padding-inline: 1.1rem; }
  .trust-bar { grid-template-columns: 1fr 1fr !important; gap: 1rem 0.75rem; padding: 1.5rem 1.1rem; }
  .marquee-item { font-size: 0.7rem; }
  .product-gallery-main { aspect-ratio: 1; }
  .product-related-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .related-card-img { height: 130px; }
  .sig-grid { gap: 0.7rem; }
  .sig-info h3 { font-size: 1.15rem; }
  .sig-card--feature .sig-info h3 { font-size: 1.45rem; }
  .testimonial-lux { width: 280px; }
  .testimonials-wall { padding-block: 2.5rem 3rem; }
  .cta-lux-actions .btn-lux { width: 100%; }
}

/* ── COOKIE CONSENT & LEGAL AGREEMENTS ── */
.cookie-consent {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 9999;
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
  background: linear-gradient(0deg, rgba(44, 24, 16, 0.96), rgba(44, 24, 16, 0.88));
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 169, 110, 0.35);
  box-shadow: 0 -12px 40px rgba(44, 24, 16, 0.25);
}
.cookie-consent[hidden] { display: none !important; }
.cookie-consent-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}
.cookie-consent p {
  flex: 1 1 280px;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 252, 250, 0.88);
}
.cookie-consent a { color: var(--mp-gold-light, #E8D5B0); text-decoration: underline; }
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-consent-actions .btn-lux {
  min-height: 44px;
  padding: 0.65rem 1.1rem;
  white-space: nowrap;
}
body.nav-open .cookie-consent {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
body.cookie-bar-visible {
  --cookie-bar-offset: 0px;
}
@media (max-width: 768px) {
  .cookie-consent {
    inset-inline: 0.65rem;
    bottom: max(0.65rem, env(safe-area-inset-bottom));
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(201, 169, 110, 0.35);
    box-shadow: 0 8px 32px rgba(44, 24, 16, 0.35);
  }
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }
  .cookie-consent p {
    flex: none;
    font-size: 0.8rem;
    line-height: 1.55;
    text-align: start;
  }
  html[dir="rtl"] .cookie-consent p {
    font-family: var(--font-ar);
    font-size: 0.85rem;
    line-height: 1.65;
  }
  .cookie-consent-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }
  .cookie-consent-actions .btn-lux {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 0.82rem;
  }
  body.cookie-bar-visible {
    --cookie-bar-offset: calc(11rem + env(safe-area-inset-bottom));
  }
  body.cookie-bar-visible main,
  body.cookie-bar-visible .page-content,
  body.cookie-bar-visible .cart-page {
    padding-bottom: var(--cookie-bar-offset);
  }
}
@media (max-width: 600px) {
  .cookie-consent-inner { flex-direction: column; align-items: stretch; }
  .cookie-consent-actions .btn-lux { width: 100%; justify-content: center; }
}
.legal-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-mid, #6B4C43);
  margin: 1rem 0 0.5rem;
  cursor: pointer;
}
.legal-check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--mp-gold, #C9A96E);
}
.legal-check a { color: var(--mp-gold-deep, #A8844A); }
.legal-content section { margin-bottom: 2rem; }
.legal-content h2 {
  font-family: var(--mp-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--mp-espresso);
  margin-bottom: 0.75rem;
}
.legal-content p, .legal-content li {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-mid);
}
.legal-content ul { padding-inline-start: 1.25rem; }

/* System cursor */
body { cursor: auto !important; }
body.has-custom-cursor { cursor: auto !important; }
a, button, [role="button"], .btn-lux, .nav-cart-btn, .product-crumb-link,
.nav-toggle, .product-thumb, .product-card-add, input[type="submit"], select, label.legal-check {
  cursor: pointer !important;
}
input:not([type="checkbox"]):not([type="radio"]), textarea { cursor: text !important; }
