/* ============================================================
   YAZZ LEATHER — WORLD-CLASS LUXURY DESIGN SYSTEM
   Ethiopian Heritage × Future Luxury
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Inter:wght@200;300;400;500;600;700&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Ethiopian Luxury Palette */
  --gold-primary:     #C8963E;
  --gold-light:       #E8B96A;
  --gold-dark:        #9A6E25;
  --gold-ultra:       #F5D78E;
  --amber-rich:       #8B5E2A;
  --amber-deep:       #5A3A15;
  --eth-red:          #8B1A1A;
  --eth-green:        #1A5C2A;
  --eth-yellow:       #C8A820;
  --obsidian:         #0A0705;
  --obsidian-2:       #100C08;
  --obsidian-3:       #1A140E;
  --ivory:            #F5F0E8;
  --ivory-warm:       #EDE5D6;
  --ivory-deep:       #D6C9B0;
  --cream:            #FAF8F5;
  --charcoal:         #2A2018;
  --charcoal-light:   #3D3020;

  /* Surface Tokens */
  --bg-primary:       #0A0705;
  --bg-secondary:     #100C08;
  --bg-tertiary:      #1A140E;
  --bg-card:          rgba(26, 20, 14, 0.8);
  --bg-glass:         rgba(200, 150, 62, 0.06);
  --bg-glass-2:       rgba(255, 255, 255, 0.03);

  /* Text Tokens */
  --text-primary:     #FAF8F5;
  --text-secondary:   #C4B89A;
  --text-muted:       #7A6A55;
  --text-gold:        #C8963E;
  --text-inverted:    #0A0705;

  /* Border Tokens */
  --border-gold:      rgba(200, 150, 62, 0.3);
  --border-subtle:    rgba(200, 150, 62, 0.1);
  --border-glass:     rgba(255, 255, 255, 0.06);

  /* Shadows */
  --shadow-gold:      0 0 40px rgba(200, 150, 62, 0.15);
  --shadow-gold-lg:   0 0 80px rgba(200, 150, 62, 0.2);
  --shadow-deep:      0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-card:      0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow:      0 0 20px rgba(200, 150, 62, 0.4);

  /* Typography */
  --font-display:     'Cinzel', serif;
  --font-serif:       'Cormorant Garamond', Georgia, serif;
  --font-elegant:     'Playfair Display', Georgia, serif;
  --font-body:        'Inter', -apple-system, sans-serif;

  /* Spacing */
  --space-xs:    0.25rem;
  --space-sm:    0.5rem;
  --space-md:    1rem;
  --space-lg:    1.5rem;
  --space-xl:    2rem;
  --space-2xl:   3rem;
  --space-3xl:   4rem;
  --space-4xl:   6rem;
  --space-5xl:   8rem;

  /* Radii */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast:    0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med:     0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:    0.7s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury:  1s cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --nav-height:    80px;
  --container-xl:  1440px;
  --container-lg:  1200px;
  --container-md:  960px;

  /* Z-layers */
  --z-base:     1;
  --z-raised:   10;
  --z-overlay:  100;
  --z-modal:    1000;
  --z-toast:    2000;
  --z-nav:      9999;
  --z-cursor:   99999;
}

/* Light Mode */
[data-theme="light"] {
  --bg-primary:       #FAF8F5;
  --bg-secondary:     #F5F0E8;
  --bg-tertiary:      #EDE5D6;
  --bg-card:          rgba(255, 255, 255, 0.9);
  --bg-glass:         rgba(200, 150, 62, 0.05);
  --bg-glass-2:       rgba(0, 0, 0, 0.02);
  --text-primary:     #0A0705;
  --text-secondary:   #5A3A15;
  --text-muted:       #9A7A55;
  --border-gold:      rgba(139, 94, 42, 0.3);
  --border-subtle:    rgba(139, 94, 42, 0.12);
  --border-glass:     rgba(0, 0, 0, 0.06);
  --shadow-card:      0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-deep:      0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  transition: background 0.5s ease, color 0.5s ease;
}

/* Global Ethiopian Texture Background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.08;
  background-image: url('../assets/images/pattern_banner.jpg');
  background-size: cover;
  background-position: center;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 0.5s ease;
}
[data-theme="light"] body::before {
  opacity: 0.08;
  mix-blend-mode: multiply;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; pointer-events: auto; }
button { border: none; background: none; font-family: inherit; pointer-events: auto; cursor: pointer; }
input, textarea, select { font-family: inherit; outline: none; pointer-events: auto; }
ul { list-style: none; }
.color-opt, .size-opt, .color-swatch, .cat-tab, .product-card__action-btn, .product-card__wishlist { pointer-events: auto !important; cursor: pointer !important; }

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--gold-primary); border-radius: 2px; }

/* ── SELECTION ── */
::selection { background: rgba(200, 150, 62, 0.3); color: var(--gold-light); }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.container--xl { max-width: var(--container-xl); }
.container--md { max-width: var(--container-md); }

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(200, 150, 62, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s;
}
.cursor-ring.hovering { width: 60px; height: 60px; border-color: var(--gold-primary); }
.cursor-dot.hovering { width: 6px; height: 6px; background: var(--gold-light); }

/* ── LUXURY NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
}
.nav.scrolled {
  background: rgba(10, 7, 5, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  height: 64px;
}
[data-theme="light"] .nav.scrolled {
  background: rgba(250, 248, 245, 0.95);
}
.nav__inner {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold-primary);
  text-transform: uppercase;
}
.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.nav__link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition-fast);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width var(--transition-med);
}
.nav__link:hover { color: var(--gold-light); }
.nav__link:hover::after { width: 100%; }

/* Dropdown */
.nav__item { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(16, 12, 8, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-deep);
}
[data-theme="light"] .nav__dropdown { background: rgba(250, 248, 245, 0.98); }
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.nav__dropdown-link:hover {
  color: var(--gold-light);
  background: var(--bg-glass);
  padding-left: var(--space-lg);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav__icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  cursor: none;
}
.nav__icon-btn:hover { color: var(--gold-light); }
.nav__badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: var(--gold-primary);
  color: var(--obsidian);
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Theme Toggle */
.currency-switcher, .theme-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  cursor: none;
  transition: all var(--transition-fast);
}
.currency-switcher:hover, .theme-toggle:hover { background: var(--bg-glass); border-color: var(--gold-primary); }
.currency-switcher span, .theme-toggle span { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--text-secondary); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: none;
}
.nav__hamburger span {
  display: block;
  height: 1px;
  background: var(--gold-primary);
  transition: all var(--transition-med);
}

/* ── TYPOGRAPHY SYSTEM ── */
.heading-display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
.heading-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}
.heading-elegant {
  font-family: var(--font-elegant);
  font-weight: 700;
  line-height: 1.2;
}
.text-gold { color: var(--gold-primary); }
.text-gold-light { color: var(--gold-light); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }

/* ── LUXURY BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition-med);
  cursor: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn:hover::before { transform: translateX(100%); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--amber-rich), var(--gold-primary));
  background-size: 200% 100%;
  color: var(--obsidian);
  box-shadow: 0 4px 20px rgba(200, 150, 62, 0.4);
}
.btn--primary:hover {
  background-position: 100% 0;
  box-shadow: 0 8px 40px rgba(200, 150, 62, 0.6);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
}
.btn--outline:hover {
  background: rgba(200, 150, 62, 0.1);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 20px;
}
.btn--ghost:hover { color: var(--gold-light); }
.btn--sm { padding: 10px 24px; font-size: 0.7rem; }
.btn--lg { padding: 18px 48px; font-size: 0.8rem; }
.btn--icon { padding: 12px; border-radius: 50%; width: 48px; height: 48px; }

/* Magnetic effect */
.btn-magnetic { transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1); }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--space-lg);
}
.section-label::before, .section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold-primary);
  opacity: 0.6;
}
.section-title {
  font-family: var(--font-elegant);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* ── CARD SYSTEM ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-med);
  backdrop-filter: blur(10px);
}
.card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

/* ── PRODUCT CARD ── */
.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: none;
}
.product-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold-lg);
  transform: translateY(-8px) scale(1.01);
}
.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-secondary);
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .product-card__img { transform: scale(1.08); }
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,7,5,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-med);
  pointer-events: none;
}
.product-card:hover .product-card__overlay { opacity: 1; }
.product-card__actions {
  position: absolute;
  bottom: var(--space-lg);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-med);
  z-index: 10;
  pointer-events: none;
}
.product-card:hover .product-card__actions {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.product-card__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(10,7,5,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold-light);
  transition: all var(--transition-fast);
  cursor: pointer;
  pointer-events: auto;
  z-index: 11;
}
.product-card__action-btn:hover {
  background: var(--gold-primary);
  color: var(--obsidian);
  transform: scale(1.1);
}
.product-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 4px 12px;
  background: rgba(200, 150, 62, 0.9);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--obsidian);
  z-index: 5;
}
.product-card__wishlist {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  background: rgba(10,7,5,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  pointer-events: auto;
  z-index: 11;
  transition: all var(--transition-fast);
}
.product-card__wishlist:hover { color: #ff4757; border-color: #ff4757; }
.product-card__wishlist.active { color: #ff4757; border-color: #ff4757; background: rgba(255, 71, 87, 0.1); }
.product-card__body { padding: var(--space-lg); }
.product-card__category {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--space-xs);
}
.product-card__name {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}
.product-card:hover .product-card__name { color: var(--gold-light); }
.product-card__price {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.product-card__price-current {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-primary);
}
.product-card__price-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-card__stars {
  display: flex;
  gap: 2px;
  color: var(--gold-primary);
  font-size: 0.7rem;
  margin-top: 4px;
}

/* ── LUXURY GRID ── */
.grid-luxury {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-xl);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── LOADING / SKELETON ── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-secondary) 50%, var(--bg-tertiary) 75%);
  background-size: 200% 100%;
  animation: skeleton-wave 1.5s infinite;
  border-radius: var(--radius-md);
}
@keyframes skeleton-wave { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ── TOAST NOTIFICATIONS ── */
.toast-container {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.toast {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: rgba(16, 12, 8, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: 340px;
}
[data-theme="light"] .toast { background: rgba(250, 248, 245, 0.98); }
.toast.show { transform: translateX(0); opacity: 1; }
.toast__icon { font-size: 1.2rem; flex-shrink: 0; }
.toast__body {}
.toast__title { font-weight: 600; font-size: 0.85rem; margin-bottom: 2px; }
.toast__msg { font-size: 0.75rem; color: var(--text-secondary); }

/* ── FORM ELEMENTS ── */
.form-group { margin-bottom: var(--space-lg); }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}
.form-input {
  width: 100%;
  padding: 14px var(--space-lg);
  background: var(--bg-glass-2);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}
.form-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.1);
  background: var(--bg-glass);
}
.form-input::placeholder { color: var(--text-muted); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C8963E' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

/* ── LUXURY DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-gold), transparent);
}
.divider__symbol {
  color: var(--gold-primary);
  font-size: 1.2rem;
  opacity: 0.7;
}

/* ── UTILITY CLASSES ── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.section { padding: var(--space-5xl) 0; }
.section--sm { padding: var(--space-3xl) 0; }
.w-full { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.hidden { display: none !important; }
.opacity-0 { opacity: 0; }

/* ── GOLD GRADIENT TEXT ── */
.text-gradient {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--amber-rich));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ETHIOPIAN ORNAMENT ── */
.eth-ornament {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  transform: rotate(45deg);
}
.eth-cross {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
}

/* ── FOOTER ── */
.footer {
  background: var(--obsidian);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-5xl) 0 var(--space-2xl);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold-primary);
}
.footer__brand-tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
  font-style: italic;
}
.footer__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: var(--space-md);
}
.footer__heading {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--space-lg);
}
.footer__links { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer__link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.footer__link:hover { color: var(--gold-light); }
.footer__social { display: flex; gap: var(--space-sm); margin-top: var(--space-lg); }
.footer__social-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: none;
  transition: all var(--transition-fast);
}
.footer__social-btn:hover {
  background: var(--gold-primary);
  color: var(--obsidian);
  border-color: var(--gold-primary);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer__payment { display: flex; gap: var(--space-sm); align-items: center; }

/* ── NEWSLETTER SECTION ── */
.newsletter {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(200, 150, 62, 0.06) 0%, transparent 70%);
}
.newsletter__inner {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.newsletter__form {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.newsletter__input {
  flex: 1;
  padding: 14px 24px;
  background: var(--bg-glass-2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.9rem;
}
.newsletter__input:focus { box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.1); }
.newsletter__input::placeholder { color: var(--text-muted); }

/* ── MODAL ── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-med);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-gold-lg);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition-luxury);
}
.modal-backdrop.open .modal { transform: scale(1) translateY(0); }
.modal__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: none;
  transition: all var(--transition-fast);
}
.modal__close:hover { color: var(--gold-light); background: var(--bg-glass); }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}
.breadcrumb a { transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--gold-primary); }
.breadcrumb__sep { color: var(--gold-primary); opacity: 0.5; }

/* ── MOBILE MENU DRAWER ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 7, 5, 0.98);
  backdrop-filter: blur(25px) saturate(180%);
  z-index: 99999 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(-20px);
}
[data-theme="light"] .mobile-menu {
  background: rgba(250, 248, 245, 0.98);
}
.mobile-menu.open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 6vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: color 0.3s ease;
  padding: 10px 24px;
}
.mobile-menu__link:hover, .mobile-menu__link:active {
  color: var(--gold-primary);
}

/* Hamburger active transformation */
.nav__hamburger {
  cursor: pointer !important;
  pointer-events: auto !important;
  z-index: 100000 !important;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── TOUCH & CURSOR OVERRIDE FOR MOBILE ── */
@media (hover: none), (pointer: coarse), (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none !important; }
  * { cursor: auto !important; }
  button, a, input, select { cursor: pointer !important; }
}

/* ── RESPONSIVE MEDIA QUERIES ── */
@media (max-width: 1200px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__actions { display: flex; gap: var(--space-xs); }
  .nav__hamburger { display: flex; }
  .currency-switcher span, .theme-toggle span { display: none; }
  .currency-switcher, .theme-toggle { padding: 8px; border-radius: 50%; width: 36px; height: 36px; justify-content: center; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-luxury { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .newsletter__form { flex-direction: column; }

  /* Hero Section Mobile Optimization */
  .hero {
    height: auto !important;
    min-height: 100vh;
    padding-top: calc(var(--nav-height) + 20px);
    padding-bottom: 60px;
    align-items: flex-start;
  }
  .hero__content {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: var(--space-xl);
    padding-top: 0;
  }
  .hero__text { padding: 0; }
  .hero__title { font-size: clamp(2.5rem, 9vw, 4.5rem); }
  .hero__subtitle { margin: var(--space-md) auto var(--space-lg); }
  .hero__visual {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin: var(--space-xl) auto;
    width: 100%;
    position: relative;
    z-index: 5;
  }
  .hero__product-img {
    width: 85% !important;
    max-width: 340px !important;
    height: auto !important;
    box-shadow: 0 25px 70px rgba(0,0,0,0.8), var(--shadow-gold-lg) !important;
  }
  .hero__product-badge {
    bottom: -15px;
    right: 5%;
    left: auto;
    padding: 8px 16px;
    background: rgba(16, 12, 8, 0.95);
    border: 1px solid var(--border-gold);
    z-index: 6;
  }
  .hero__badge-value { font-size: 1.1rem; }
  .hero__cta { justify-content: center; }
  .hero__stats { justify-content: center; margin-top: var(--space-xl); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-luxury { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card__body { padding: var(--space-sm); }
  .product-card__name { font-size: 0.95rem; }
  .product-card__price-current { font-size: 0.95rem; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer__bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
  .section { padding: var(--space-3xl) 0; }
  .container { padding: 0 var(--space-md); }
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero__stat-value { font-size: 1.3rem; }
  .hero__stat-label { font-size: 0.6rem; }
  .cart-drawer { width: 100%; }
}
@media (max-width: 400px) {
  .grid-luxury { grid-template-columns: 1fr; }
}

