/* =================================================================
   AURIA — Luxury Jewelry Demo · Minimal Couture Aesthetic
   Palette: Ink Black · Royal Gold · Pearl Ivory
================================================================= */

:root {
  --ink:        #0A0A0A;
  --ink-soft:   #1A1A1A;
  --ink-line:   #2A2A2A;
  --pearl:      #F8F5EE;
  --pearl-2:    #EFEAE0;
  --gold:       #D4AF37;
  --gold-light: #E5C868;
  --gold-dark:  #9E7E20;
  --warm:       #C7A046;
  --gray:       #8A8A8A;
  --gray-soft:  #BFBFBF;

  --serif-en:   'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --serif-ar:   'Reem Kufi', 'Tajawal', serif;
  --display:    'Cinzel', 'Reem Kufi', serif;
  --sans-en:    'Cormorant Garamond', system-ui, sans-serif;
  --sans-ar:    'Tajawal', system-ui, sans-serif;

  --ease:       cubic-bezier(.25, .8, .25, 1);
  --t-fast:     .25s var(--ease);
  --t-med:      .5s var(--ease);
  --t-slow:     .8s var(--ease);
}

/* ── Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body.auria {
  background: var(--pearl);
  color: var(--ink);
  font-family: var(--sans-en);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.auria.lang-ar { font-family: var(--sans-ar); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif-en);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.15;
}
.lang-ar h1, .lang-ar h2, .lang-ar h3, .lang-ar h4, .lang-ar h5, .lang-ar h6 {
  font-family: var(--serif-ar);
  font-weight: 500;
}

a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { width: 100%; max-width: 1320px; margin: 0 auto; padding-inline: 1.5rem; }

/* Bootstrap grid minimum (no full Bootstrap) */
.row { display: flex; flex-wrap: wrap; margin-inline: -.75rem; }
.row > [class*="col-"] { padding-inline: .75rem; }
.col-6  { width: 50%; }
.col-12 { width: 100%; }
.g-3 > * { margin-bottom: 1rem; }
.g-4 > * { margin-bottom: 1.5rem; }
.g-5 > * { margin-bottom: 2rem; }
@media (min-width: 576px) { .col-sm-6 { width: 50%; } }
@media (min-width: 768px) {
  .col-md-4 { width: 33.333%; }
  .col-md-6 { width: 50%; }
  .col-md-8 { width: 66.666%; }
}
@media (min-width: 992px) {
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333%; }
  .col-lg-5 { width: 41.666%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333%; }
  .col-lg-8 { width: 66.666%; }
  .col-lg-9 { width: 75%; }
}
.d-flex { display: flex; }
.d-none { display: none; }
.d-grid { display: grid; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.flex-wrap { flex-wrap: wrap; }
.text-center { text-align: center; }
.text-end { text-align: end; }
.mt-2 { margin-top: .5rem; } .mt-3 { margin-top: 1rem; } .mt-4 { margin-top: 1.5rem; } .mt-5 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: .5rem; } .mb-3 { margin-bottom: 1rem; } .mb-4 { margin-bottom: 1.5rem; } .mb-5 { margin-bottom: 2.5rem; }
.w-100 { width: 100%; }
@media (min-width: 992px) { .d-lg-flex { display: flex; } .d-lg-none { display: none; } }

/* ── muzntechno Ribbon ────────────────────────────────────────── */
.muzn-ribbon {
  position: fixed;
  top: 12px;
  inset-inline-start: 12px;
  z-index: 200;
  background: rgba(10,10,10,.85);
  color: var(--gold-light);
  padding: 6px 14px;
  border: 1px solid var(--gold-dark);
  border-radius: 100px;
  font-size: .75rem;
  font-family: var(--sans-en);
  letter-spacing: .05em;
  backdrop-filter: blur(8px);
  transition: all var(--t-fast);
}
.muzn-ribbon:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ── Navigation ───────────────────────────────────────────────── */
.auria-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: transparent;
  transition: all var(--t-med);
}
.auria-nav.scrolled {
  background: rgba(248,245,238,.96);
  backdrop-filter: blur(14px);
  padding: .75rem 0;
  box-shadow: 0 1px 0 rgba(10,10,10,.06);
}
.auria-nav.dark-mode { background: rgba(10,10,10,.95); }
.auria-nav.dark-mode a, .auria-nav.dark-mode .logo-mark, .auria-nav.dark-mode .logo-text { color: var(--pearl); }
.auria-nav.dark-mode .logo-mark { background: var(--gold); color: var(--ink); }

.auria-logo {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--ink);
  text-decoration: none;
}
.auria-emblem {
  flex-shrink: 0;
  transition: transform var(--t-med);
}
.auria-emblem-sm { width: 40px; height: 40px; }
.auria-emblem-lg { width: 64px; height: 64px; }
.auria-logo:hover .auria-emblem { transform: rotate(45deg) scale(1.05); }

.logo-text-wrap {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
}
.auria-logo .logo-text {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: .22em;
  color: inherit;
}
.auria-logo.big .logo-text { font-size: 1.7rem; }
.auria-logo .logo-tag {
  font-family: var(--sans-en);
  font-weight: 500;
  font-size: .58rem;
  letter-spacing: .35em;
  color: var(--gold-dark);
  text-transform: uppercase;
}
.lang-ar .auria-logo .logo-tag { font-family: var(--sans-ar); letter-spacing: .15em; text-transform: none; font-size: .68rem; }
.auria-logo.big .logo-tag { font-size: .7rem; letter-spacing: .4em; margin-top: 2px; }
.lang-ar .auria-logo.big .logo-tag { letter-spacing: .15em; font-size: .8rem; }

.auria-nav.dark-mode .auria-logo,
.auria-footer .auria-logo { color: var(--pearl); }
.auria-nav.dark-mode .auria-logo .logo-tag,
.auria-footer .auria-logo .logo-tag { color: var(--gold); }

.auria-menu { gap: 2.25rem; }
.auria-menu a {
  font-family: var(--sans-en);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.lang-ar .auria-menu a { font-family: var(--sans-ar); font-size: 1rem; letter-spacing: 0; text-transform: none; }
.auria-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t-fast);
}
.auria-menu a:hover::after { width: 100%; }
.auria-nav.dark-mode .auria-menu a::after { background: var(--gold); }

.lang-toggle {
  font-family: var(--sans-en);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  padding: 6px 12px;
  border: 1px solid var(--ink);
  border-radius: 50px;
  transition: all var(--t-fast);
}
.lang-toggle:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.auria-nav.dark-mode .lang-toggle { border-color: var(--pearl); color: var(--pearl); }
.auria-nav.dark-mode .lang-toggle:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.icon-btn {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.1rem;
  position: relative;
  transition: all var(--t-fast);
  color: var(--ink);
}
.icon-btn:hover { color: var(--gold); }
.auria-nav.dark-mode .icon-btn { color: var(--pearl); }
.cart-count {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  background: var(--gold);
  color: var(--ink);
  font-size: .65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--sans-en);
  border: 2px solid var(--pearl);
  transform: scale(0);
  transition: transform var(--t-fast);
}
.auria-nav.dark-mode .cart-count { border-color: var(--ink); }
.cart-count.show { transform: scale(1); }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,.06), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--pearl);
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.12), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.hero::before { width: 600px; height: 600px; top: -200px; inset-inline-start: -200px; }
.hero::after  { width: 700px; height: 700px; bottom: -250px; inset-inline-end: -250px; }

.hero-inner { position: relative; z-index: 2; max-width: 920px; padding: 0 1rem; }
.hero-eyebrow {
  font-family: var(--sans-en);
  font-size: .82rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.lang-ar .hero-eyebrow { font-family: var(--sans-ar); letter-spacing: .15em; }
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.lang-ar .hero h1 { font-family: var(--serif-ar); font-style: normal; font-weight: 600; line-height: 1.25; }
.hero h1 .gold { color: var(--gold); }
.hero-sub {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: var(--gray-soft);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-inline: auto;
}
.lang-ar .hero-sub { font-family: var(--sans-ar); font-style: normal; }

.hero-cta { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  padding: 1rem 2.5rem;
  font-family: var(--sans-en);
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--gold);
  transition: all var(--t-med);
  position: relative;
  overflow: hidden;
}
.lang-ar .btn-gold { font-family: var(--sans-ar); letter-spacing: .05em; text-transform: none; font-size: .95rem; }
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-ghost {
  background: transparent;
  color: var(--pearl);
  padding: 1rem 2.5rem;
  font-family: var(--sans-en);
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--pearl);
  transition: all var(--t-med);
}
.lang-ar .btn-ghost { font-family: var(--sans-ar); letter-spacing: .05em; text-transform: none; font-size: .95rem; }
.btn-ghost:hover { background: var(--pearl); color: var(--ink); }

.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 0;
  border-block: 1px solid rgba(212,175,55,.2);
  overflow: hidden;
  z-index: 2;
}
.marquee-track {
  display: inline-flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: .3em;
}
.lang-ar .marquee-track { font-family: var(--serif-ar); letter-spacing: .1em; }
.marquee-track span { padding-inline: 1rem; opacity: .7; }
.marquee-track i { color: var(--gold); font-size: .7em; opacity: 1; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
[dir="rtl"] @keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* ── Sections ─────────────────────────────────────────────────── */
.section { padding: 120px 0; }
.section-eyebrow {
  font-family: var(--sans-en);
  font-size: .75rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.lang-ar .section-eyebrow { font-family: var(--sans-ar); letter-spacing: .1em; }
.section-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold-dark);
}
.section-title {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  font-style: italic;
}
.lang-ar .section-title { font-family: var(--serif-ar); font-style: normal; font-weight: 600; }
.section-desc { color: var(--gray); max-width: 580px; font-size: 1.05rem; }
.section-head { margin-bottom: 4rem; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin-inline: auto; }
.section-head.center .section-eyebrow::before { display: none; }

/* ── Category Showcase ────────────────────────────────────────── */
.categories { background: var(--pearl); }
.cat-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  transition: all var(--t-med);
  display: block;
}
.cat-card .cat-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
  filter: brightness(.85) saturate(1.05);
}
.cat-card:hover .cat-img { transform: scale(1.08); filter: brightness(.95) saturate(1.15); }
.cat-card .cat-overlay {
  position: absolute;
  inset: 0;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(0deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.4) 50%, rgba(10,10,10,.1) 100%);
  color: var(--pearl);
  transition: background var(--t-med);
}
.cat-card:hover .cat-overlay { background: linear-gradient(0deg, rgba(10,10,10,.95) 0%, rgba(10,10,10,.45) 55%, rgba(10,10,10,.15) 100%); }
.cat-card .cat-meta {
  font-family: var(--sans-en);
  font-size: .7rem;
  letter-spacing: .35em;
  color: var(--gold);
  margin-bottom: .65rem;
  font-weight: 500;
}
.cat-card h3 {
  font-family: var(--serif-en);
  font-weight: 400;
  font-style: italic;
  font-size: 1.85rem;
  color: var(--pearl);
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.lang-ar .cat-card h3 { font-family: var(--serif-ar); font-style: normal; font-weight: 600; font-size: 1.7rem; }
.cat-card .cat-link {
  font-family: var(--sans-en);
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: gap var(--t-fast);
  border-top: 1px solid rgba(212,175,55,.3);
  padding-top: .85rem;
  font-weight: 500;
}
.lang-ar .cat-card .cat-link { font-family: var(--sans-ar); letter-spacing: .05em; text-transform: none; font-size: .9rem; }
.cat-card:hover .cat-link { gap: 1rem; color: var(--gold-light); }

/* ── Product Grid ─────────────────────────────────────────────── */
.products-section { background: var(--pearl); }
.product-card {
  background: #fff;
  position: relative;
  transition: all var(--t-med);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(10,10,10,.15); }
.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--pearl-2);
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  background: var(--ink);
  color: var(--gold);
  padding: 5px 12px;
  font-family: var(--sans-en);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.product-badge.sale { background: var(--gold); color: var(--ink); }
.product-badge.vip { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--ink); }
.product-wishlist {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  width: 36px; height: 36px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .9rem;
  color: var(--ink);
  opacity: 0;
  transform: translateY(-5px);
  transition: all var(--t-fast);
  z-index: 2;
}
.product-card:hover .product-wishlist { opacity: 1; transform: translateY(0); }
.product-wishlist:hover { background: var(--ink); color: var(--gold); }
.product-quick-add {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: var(--ink);
  color: var(--pearl);
  padding: .85rem;
  font-family: var(--sans-en);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  transform: translateY(100%);
  transition: transform var(--t-med);
  cursor: pointer;
  width: 100%;
}
.lang-ar .product-quick-add { font-family: var(--sans-ar); letter-spacing: .05em; text-transform: none; font-size: .85rem; }
.product-quick-add:hover { background: var(--gold); color: var(--ink); }
.product-card:hover .product-quick-add { transform: translateY(0); }

.product-body { padding: 1.25rem 1rem 1.5rem; text-align: center; }
.product-cat {
  font-family: var(--sans-en);
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: .5rem;
}
.lang-ar .product-cat { font-family: var(--sans-ar); letter-spacing: .05em; text-transform: none; font-size: .85rem; }
.product-name {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.lang-ar .product-name { font-family: var(--serif-ar); font-weight: 500; }
.product-price-row {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-top: .25rem;
}
.product-price {
  font-family: var(--serif-en);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
}
.product-price-old {
  font-family: var(--serif-en);
  text-decoration: line-through;
  color: var(--gray);
  font-size: .95rem;
}
.product-rating {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .75rem;
  color: var(--gold-dark);
  margin-top: .5rem;
}
.product-rating .star { color: var(--gold); }

/* ── Banner / Quote ───────────────────────────────────────────── */
.quote-section {
  background: var(--ink);
  color: var(--pearl);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before, .quote-section::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.15), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.quote-section::before { top: -100px; inset-inline-start: -100px; }
.quote-section::after { bottom: -100px; inset-inline-end: -100px; }
.quote-mark {
  font-family: var(--display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.quote-body {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 2rem;
  color: var(--pearl);
}
.lang-ar .quote-body { font-family: var(--serif-ar); font-style: normal; font-weight: 500; }
.quote-author {
  font-family: var(--sans-en);
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.lang-ar .quote-author { font-family: var(--sans-ar); letter-spacing: .1em; }

/* ── About Section ────────────────────────────────────────────── */
.about-section { background: var(--pearl); padding: 140px 0; }
.about-stat {
  text-align: center;
  padding: 1.5rem 0;
}
.about-stat .num {
  font-family: var(--serif-en);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-dark);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: .5rem;
}
.lang-ar .about-stat .num { font-family: var(--serif-ar); font-style: normal; font-weight: 600; }
.about-stat .label {
  font-family: var(--sans-en);
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gray);
}
.lang-ar .about-stat .label { font-family: var(--sans-ar); letter-spacing: .05em; text-transform: none; font-size: .9rem; }

/* ── Filters / Shop ───────────────────────────────────────────── */
.shop-page { padding-top: 120px; padding-bottom: 100px; }
.filter-bar {
  background: #fff;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(10,10,10,.05);
}
.cat-pills { display: flex; gap: .5rem; flex-wrap: wrap; }
.cat-pill {
  padding: 8px 18px;
  font-family: var(--sans-en);
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 100px;
  transition: all var(--t-fast);
  cursor: pointer;
  text-decoration: none;
}
.lang-ar .cat-pill { font-family: var(--sans-ar); letter-spacing: 0; text-transform: none; font-size: .92rem; }
.cat-pill:hover { color: var(--gold-dark); }
.cat-pill.active { background: var(--ink); color: var(--gold); }
.sort-select {
  padding: 8px 16px;
  font-family: inherit;
  font-size: .9rem;
  background: transparent;
  border: 1px solid var(--ink-line);
  color: var(--ink);
  border-radius: 100px;
  cursor: pointer;
}

/* ── Product Detail ───────────────────────────────────────────── */
.product-detail { padding-top: 120px; padding-bottom: 100px; }
.pd-gallery { position: sticky; top: 100px; }
.pd-main-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--pearl-2);
  margin-bottom: 1rem;
}
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
.pd-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--pearl-2);
  cursor: pointer;
  border: 1px solid transparent;
  transition: border var(--t-fast);
}
.pd-thumb:hover, .pd-thumb.active { border-color: var(--gold); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pd-info { padding-block: 1rem; }
.pd-cat {
  font-family: var(--sans-en);
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.lang-ar .pd-cat { font-family: var(--sans-ar); letter-spacing: .05em; text-transform: none; font-size: .9rem; }
.pd-name {
  font-family: var(--serif-en);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.lang-ar .pd-name { font-family: var(--serif-ar); font-style: normal; font-weight: 600; }
.pd-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--gray);
  font-size: .9rem;
}
.pd-rating .stars { color: var(--gold); letter-spacing: 2px; }
.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-block: 1.5rem;
  border-block: 1px solid rgba(10,10,10,.08);
}
.pd-price {
  font-family: var(--serif-en);
  font-weight: 500;
  font-size: 2rem;
  color: var(--ink);
}
.pd-price-old {
  font-family: var(--serif-en);
  text-decoration: line-through;
  color: var(--gray);
  font-size: 1.25rem;
}
.pd-discount {
  background: var(--gold);
  color: var(--ink);
  padding: 4px 10px;
  font-size: .72rem;
  letter-spacing: .1em;
  font-weight: 700;
}

.pd-specs { margin-bottom: 2rem; }
.pd-spec-row {
  display: flex;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(10,10,10,.06);
}
.pd-spec-label {
  font-family: var(--sans-en);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
  width: 35%;
}
.lang-ar .pd-spec-label { font-family: var(--sans-ar); letter-spacing: .05em; text-transform: none; font-size: .95rem; }
.pd-spec-val { font-weight: 500; }

.pd-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink-line);
  margin-inline-end: 1rem;
}
.pd-qty button {
  width: 44px; height: 44px;
  font-size: 1.2rem;
  transition: all var(--t-fast);
}
.pd-qty button:hover { background: var(--ink); color: var(--gold); }
.pd-qty input {
  width: 60px;
  text-align: center;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  background: transparent;
  color: var(--ink);
}
.pd-cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 1.5rem; }
.btn-ink {
  background: var(--ink);
  color: var(--pearl);
  padding: 1rem 2.5rem;
  font-family: var(--sans-en);
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--ink);
  transition: all var(--t-med);
  flex: 1;
}
.lang-ar .btn-ink { font-family: var(--sans-ar); letter-spacing: .05em; text-transform: none; font-size: .95rem; }
.btn-ink:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-ink-outline {
  background: transparent;
  color: var(--ink);
  padding: 1rem 1.5rem;
  font-family: var(--sans-en);
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--ink);
  transition: all var(--t-med);
}
.lang-ar .btn-ink-outline { font-family: var(--sans-ar); letter-spacing: .05em; text-transform: none; font-size: .95rem; }
.btn-ink-outline:hover { background: var(--ink); color: var(--gold); }

.pd-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10,10,10,.08);
}
.pd-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .85rem;
  color: var(--gray);
}
.pd-feature i { color: var(--gold-dark); font-size: 1.4rem; }

/* ── Cart Page ────────────────────────────────────────────────── */
.cart-page { padding-top: 120px; padding-bottom: 100px; min-height: 80vh; }
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(10,10,10,.08);
  align-items: center;
}
.cart-item img { width: 100px; height: 130px; object-fit: cover; }
.cart-item h4 { font-family: var(--serif-en); font-weight: 400; font-size: 1.1rem; }
.lang-ar .cart-item h4 { font-family: var(--serif-ar); font-weight: 500; }
.cart-item-cat { font-size: .8rem; color: var(--gray); letter-spacing: .1em; }
.cart-summary {
  background: #fff;
  padding: 2rem;
  border: 1px solid rgba(10,10,10,.06);
}
.cart-summary h3 { font-family: var(--serif-en); font-weight: 400; font-style: italic; margin-bottom: 1.5rem; }
.lang-ar .cart-summary h3 { font-family: var(--serif-ar); font-style: normal; font-weight: 600; }
.cart-row { display: flex; justify-content: space-between; padding: .75rem 0; }
.cart-row.total { font-weight: 600; font-size: 1.15rem; padding-top: 1rem; border-top: 1px solid rgba(10,10,10,.08); }
.empty-cart {
  text-align: center;
  padding: 5rem 1rem;
}
.empty-cart i { font-size: 4rem; color: var(--gold-dark); margin-bottom: 1.5rem; }
.empty-cart h3 { font-family: var(--serif-en); font-weight: 400; font-style: italic; margin-bottom: .5rem; }
.lang-ar .empty-cart h3 { font-family: var(--serif-ar); font-style: normal; font-weight: 600; }

/* ── Toast ────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 30px;
  inset-inline-end: 30px;
  background: var(--ink);
  color: var(--gold);
  padding: 1rem 1.5rem;
  font-family: var(--sans-en);
  font-size: .85rem;
  letter-spacing: .1em;
  border: 1px solid var(--gold-dark);
  z-index: 1000;
  transform: translateY(120%);
  transition: transform var(--t-med);
  max-width: 320px;
  box-shadow: 0 20px 40px rgba(10,10,10,.3);
}
.lang-ar .toast { font-family: var(--sans-ar); letter-spacing: 0; }
.toast.show { transform: translateY(0); }
.toast i { color: var(--gold); margin-inline-end: .5rem; }

/* ── WhatsApp FAB ─────────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  inset-inline-start: 30px;
  width: 54px; height: 54px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 30px rgba(37,211,102,.4);
  z-index: 99;
  transition: all var(--t-fast);
}
.whatsapp-fab:hover { transform: scale(1.1); color: #fff; }

/* ── Footer ───────────────────────────────────────────────────── */
.auria-footer {
  background: var(--ink);
  color: var(--pearl);
  padding: 100px 0 30px;
}
.auria-footer .auria-logo { color: var(--pearl); }
.auria-footer .logo-mark { border-color: var(--gold); }
.footer-tag {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.lang-ar .footer-tag { font-family: var(--serif-ar); font-style: normal; }
.footer-mini { color: var(--gray-soft); font-size: .85rem; }
.footer-h {
  font-family: var(--display);
  letter-spacing: .25em;
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.lang-ar .footer-h { font-family: var(--serif-ar); letter-spacing: .05em; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: var(--gray-soft); font-size: .9rem; }
.footer-links a:hover { color: var(--gold); }
.newsletter {
  display: flex;
  border: 1px solid rgba(212,175,55,.3);
  max-width: 380px;
  margin-inline: auto;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  padding: .85rem 1rem;
  color: var(--pearl);
  font-family: inherit;
  font-size: .9rem;
}
.newsletter input::placeholder { color: var(--gray-soft); }
.newsletter input:focus { outline: none; }
.newsletter button {
  background: var(--gold);
  color: var(--ink);
  padding: .85rem 1.5rem;
  font-family: var(--sans-en);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: background var(--t-fast);
}
.lang-ar .newsletter button { font-family: var(--sans-ar); letter-spacing: 0; text-transform: none; }
.newsletter button:hover { background: var(--gold-light); }
.socials { display: flex; gap: 1rem; justify-content: flex-end; }
.lang-ar .socials { justify-content: flex-end; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1rem;
  transition: all var(--t-fast);
}
.socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212,175,55,.15);
  text-align: center;
  color: var(--gray-soft);
}

/* ── Contact ──────────────────────────────────────────────────── */
.contact-section { background: var(--pearl); }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 1.4rem;
  background: #fff;
  border: 1px solid var(--pearl-2);
  border-radius: 6px;
  color: var(--ink);
  transition: all var(--t-fast);
}
a.contact-line:hover { border-color: var(--gold); transform: translateY(-2px); }
.contact-line i {
  font-size: 1.4rem;
  color: var(--gold-dark);
  width: 44px; height: 44px;
  flex: 0 0 44px;
  display: grid; place-items: center;
  background: var(--pearl);
  border-radius: 50%;
}
.contact-line span { font-size: .82rem; color: var(--gray); line-height: 1.6; }
.contact-line b { color: var(--ink); font-weight: 500; font-size: .98rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--pearl-2);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  font-family: inherit;
  font-size: .98rem;
  color: var(--ink);
  transition: border var(--t-fast);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--gray-soft); }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { resize: vertical; }

/* ── Mobile ───────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .section { padding: 80px 0; }
  .quote-section { padding: 100px 0; }
  .hero { padding: 120px 1rem 100px; }
  .pd-gallery { position: static; }
  .pd-cta { flex-direction: column; align-items: stretch; }
  .pd-cta .btn-ink, .pd-cta .btn-ink-outline { width: 100%; }
  .auria-menu { display: none; }
  .text-end { text-align: start !important; }
  .socials { justify-content: flex-start; }
}

/* ── Animations ───────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
