/* ═══════════════════════════════════════════════════════════════
   TAMIRA ELITE INNOVATIONS LTD — Master Stylesheet
   tamiraeliteinnovationsltd.com
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --obsidian:   #0A0A0A;
  --gold:       #C9A84C;
  --gold-light: #F0D080;
  --gold-dark:  #A8872E;
  --champagne:  #F0D080;
  --charcoal:   #141414;
  --velvet:     #1A1A1A;
  --surface:    #111111;
  --ivory:      #F5F0E8;
  --ash:        #8A7D6B;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
  --font-accent:  'Cinzel Decorative', serif;
  --transition:   all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold:  0 0 30px rgba(201,168,76,0.25);
  --shadow-card:  0 8px 40px rgba(0,0,0,0.5);
}

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--obsidian);
  color: var(--ivory);
  font-family: var(--font-body);
  cursor: none;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { display: block; max-width: 100%; }
button { cursor: none; border: none; outline: none; background: none; }
input, select, textarea { font-family: var(--font-body); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; }

/* ── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--obsidian); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }
::selection { background: rgba(201,168,76,0.3); color: var(--ivory); }

/* ── Custom Cursor ───────────────────────────────────────────── */
.cursor-dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform 0.08s ease;
}
.cursor-ring {
  width: 28px; height: 28px;
  border: 1.5px solid rgba(201,168,76,0.55);
  border-radius: 50%; position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.cursor-ring.hovering {
  width: 44px; height: 44px;
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ── Announcement Bar ────────────────────────────────────────── */
.announcement-bar {
  background: var(--gold);
  color: var(--obsidian);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
}
.announcement-inner {
  display: inline-block;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ── Header / Navbar ─────────────────────────────────────────── */
.tamira-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: var(--transition);
}
.tamira-header.scrolled {
  background: rgba(10,10,10,0.98);
  border-bottom-color: rgba(201,168,76,0.2);
}
body { padding-top: 78px; } /* offset for fixed header */

.navbar { padding: 0; height: 72px; }
.navbar-brand { display: flex; align-items: center; }
.logo-img { height: 48px; width: auto; transition: var(--transition); }
.logo-img:hover { filter: drop-shadow(0 0 12px rgba(201,168,76,0.6)); }

.nav-links { gap: 2.5rem !important; }
.nav-link {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ash); position: relative; padding: 4px 0; font-weight: 400;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.35s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions { gap: 1.25rem !important; }
.nav-icon-btn {
  background: none; border: none; color: var(--ivory);
  font-size: 1.15rem; padding: 6px; position: relative;
  transition: color 0.3s ease;
}
.nav-icon-btn:hover { color: var(--gold); }
.cart-badge {
  position: absolute; top: -4px; right: -6px;
  background: var(--gold); color: var(--obsidian);
  font-size: 0.6rem; font-weight: 700;
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
}

/* Hamburger */
.nav-hamburger {
  width: 36px; height: 36px; display: flex; flex-direction: column;
  justify-content: center; gap: 5px; background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; height: 1.5px; background: var(--ivory);
  transition: var(--transition); border-radius: 2px;
}
.nav-hamburger span:nth-child(1) { width: 24px; }
.nav-hamburger span:nth-child(2) { width: 18px; }
.nav-hamburger span:nth-child(3) { width: 24px; }
.nav-hamburger:hover span { background: var(--gold); }

/* ── Search Overlay ──────────────────────────────────────────── */
.search-overlay {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(10,10,10,0.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-close {
  position: absolute; top: 24px; right: 32px;
  color: var(--ash); font-size: 1.4rem;
  transition: color 0.3s ease;
}
.search-close:hover { color: var(--gold); }
.search-form {
  display: flex; gap: 0; width: 100%; max-width: 680px;
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 16px;
}
.search-form input {
  flex: 1; background: none; border: none;
  color: var(--ivory); font-family: var(--font-display);
  font-size: 1.6rem; padding: 8px 0; outline: none;
}
.search-form input::placeholder { color: var(--ash); }
.search-form button { color: var(--gold); font-size: 1.4rem; background: none; border: none; padding: 0 8px; }
.search-hint { color: var(--ash); font-size: 0.78rem; letter-spacing: 0.1em; margin-top: 16px; }

/* ── Mobile Nav ──────────────────────────────────────────────── */
.mobile-nav-overlay {
  position: fixed; inset: 0; background: var(--obsidian); z-index: 9900;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex; flex-direction: column;
}
.mobile-nav-overlay.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  color: var(--ash); font-size: 1.4rem;
  transition: color 0.3s; padding: 8px;
}
.mobile-nav-close:hover { color: var(--gold); }
.mobile-nav-inner {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 100%; padding: 48px 32px; gap: 0;
}
.mobile-logo { margin-bottom: 40px; }
.mobile-nav-links { text-align: center; width: 100%; }
.mobile-nav-link {
  display: block; font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 300; color: var(--ivory);
  padding: 12px 0; border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: color 0.3s ease;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-footer { margin-top: 40px; }
.social-icon {
  color: var(--ash); font-size: 1.2rem; transition: color 0.3s ease;
}
.social-icon:hover { color: var(--gold); }

/* ── Overlay Backdrop ────────────────────────────────────────── */
.overlay-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 9000; opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.overlay-backdrop.visible { opacity: 1; pointer-events: all; }

/* ── Cart Drawer ─────────────────────────────────────────────── */
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 9800;
  width: min(400px, 100vw);
  background: var(--charcoal);
  border-left: 1px solid rgba(201,168,76,0.15);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  padding: 24px; display: flex; align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.cart-drawer-header h2 {
  font-family: var(--font-accent); font-size: 0.9rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin: 0;
}
.cart-drawer-close { color: var(--ash); font-size: 1.1rem; transition: color 0.3s; }
.cart-drawer-close:hover { color: var(--gold); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 0 16px; }
.cart-drawer-footer {
  padding: 20px; border-top: 1px solid rgba(201,168,76,0.15);
}
.cart-item {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: flex-start;
}
.cart-item img {
  width: 64px; height: 64px; object-fit: cover;
  border: 1px solid rgba(201,168,76,0.15);
}
.cart-item-details { flex: 1; }
.cart-item-name { font-size: 0.85rem; color: var(--ivory); margin: 0 0 3px; }
.cart-item-variant { font-size: 0.75rem; color: var(--ash); margin: 0 0 4px; }
.cart-item-price { font-family: var(--font-display); color: var(--gold); font-size: 1rem; margin: 0 0 6px; }
.cart-item-remove { color: var(--ash); font-size: 0.85rem; transition: color 0.3s; padding: 4px; }
.cart-item-remove:hover { color: #FF7A7A; }
.qty-stepper { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 24px; height: 24px; border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); font-size: 1rem; display: flex; align-items: center;
  justify-content: center; transition: var(--transition); background: none;
}
.qty-btn:hover { background: var(--gold); color: var(--obsidian); }
.qty-stepper span { font-size: 0.85rem; min-width: 20px; text-align: center; }
.cart-subtotal-display { font-family: var(--font-display); color: var(--gold); font-size: 1.2rem; }
.free-delivery-badge { color: #5DE69A; font-size: 0.75rem; letter-spacing: 0.1em; text-align: right; }

/* Empty cart */
.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 300px; color: var(--ash); text-align: center;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--obsidian) !important;
  font-family: var(--font-body); font-weight: 500;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 36px; border: none; transition: var(--transition);
  position: relative; overflow: hidden; cursor: none;
  text-decoration: none !important;
}
.btn-gold:hover {
  background-position: right center;
  box-shadow: 0 0 30px rgba(201,168,76,0.45);
  transform: translateY(-1px);
}
.btn-gold::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}
.btn-gold:hover::before { left: 100%; }

.btn-ghost-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  font-family: var(--font-body); font-weight: 400;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 36px; transition: var(--transition); cursor: none;
  text-decoration: none !important;
}
.btn-ghost-gold:hover {
  background: rgba(201,168,76,0.1);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
  transform: translateY(-1px);
}

.btn-gold-sm {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--obsidian) !important;
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 9px 20px; font-weight: 500; font-family: var(--font-body);
  transition: var(--transition); cursor: none; text-decoration: none !important;
}
.btn-gold-sm:hover { box-shadow: 0 0 20px rgba(201,168,76,0.4); transform: translateY(-1px); }

.icon-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--ash); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); background: none;
}
.icon-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

/* ── Inputs ──────────────────────────────────────────────────── */
.input-gold {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--ivory); padding: 13px 16px;
  font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none; width: 100%; display: block;
}
.input-gold::placeholder { color: var(--ash); font-size: 0.83rem; }
.input-gold:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.input-gold.input-error { border-color: #FF7A7A; }
select.input-gold option { background: var(--charcoal); }

.field-error { color: #FF7A7A; font-size: 0.75rem; margin: 4px 0 0; }

/* ── Page Hero ───────────────────────────────────────────────── */
.page-hero {
  padding: 80px 0 60px;
  background: radial-gradient(ellipse at 50% 0%, #1E1500 0%, var(--obsidian) 70%);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.page-hero-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300; color: var(--ivory); line-height: 1.15; margin: 12px 0 0;
}

/* ── Hero Section ────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 60%, #1E1600 0%, #0A0A0A 65%);
  margin-top: -72px; padding-top: 72px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.5) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.hero-inner { max-width: 780px; margin: 0 auto; }
.hero-preheader {
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; font-family: var(--font-body);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 300; line-height: 1.05; margin: 0;
  display: flex; flex-direction: column; align-items: center;
}
.hero-line { display: block; color: var(--ivory); }
.hero-line-italic { font-style: italic; color: var(--gold); }
.hero-line-thin {
  font-size: 0.45em; letter-spacing: 0.04em;
  color: var(--ash); font-weight: 300; margin-top: 8px;
}
.hero-sub {
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 300;
  letter-spacing: 0.12em; color: var(--ash); margin-top: 24px;
}
.hero-cta-primary {
  animation: goldPulse 2.5s ease-in-out infinite;
}
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50%       { box-shadow: 0 0 0 14px rgba(201,168,76,0); }
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll-line {
  width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll-text {
  font-size: 0.65rem; letter-spacing: 0.2em; color: var(--ash); text-transform: uppercase;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── Gold Particles ──────────────────────────────────────────── */
.gold-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.gold-particle {
  position: absolute; width: 2px; height: 2px;
  background: var(--gold); border-radius: 50%;
  animation: particleFloat var(--dur, 10s) var(--del, 0s) ease-in-out infinite;
  opacity: 0;
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ── Promise Strip ───────────────────────────────────────────── */
.promise-strip {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 36px 0;
}
.promise-item { padding: 12px; }
.promise-icon {
  font-size: 1.6rem; color: var(--gold);
  margin-bottom: 10px; display: block;
}
.promise-label {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ash); margin: 0; font-family: var(--font-body);
}

/* ── Sections ────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-preheader {
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300; color: var(--ivory); line-height: 1.2; margin: 0 0 20px;
}
.gold-divider {
  width: 56px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 32px;
}

/* ── Product Cards ───────────────────────────────────────────── */
.product-card {
  display: block; transition: var(--transition);
  background: var(--velvet); border: 1px solid rgba(201,168,76,0.1);
  position: relative; text-decoration: none !important;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 25px rgba(201,168,76,0.12);
}
.product-image-wrapper { overflow: hidden; position: relative; aspect-ratio: 1; }
.product-image-wrapper img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-image-wrapper img { transform: scale(1.07); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; padding: 4px 10px; z-index: 2;
}
.product-card-hover-actions {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.85);
  padding: 14px; opacity: 0; transition: opacity 0.35s ease;
  display: flex; justify-content: center;
}
.product-card:hover .product-card-hover-actions { opacity: 1; }
.product-card-body { padding: 16px; }
.product-category {
  font-size: 0.63rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 6px; font-family: var(--font-body);
}
.product-name {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 400;
  color: var(--ivory); margin: 0 0 4px; line-height: 1.3;
}
.product-name a { color: var(--ivory); }
.product-name a:hover { color: var(--gold); }
.product-tagline { font-size: 0.8rem; color: var(--ash); margin: 0 0 6px; font-style: italic; }
.product-price {
  font-family: var(--font-display); font-size: 1.3rem; color: var(--gold);
  font-weight: 400; margin: 0;
}

/* Badges */
.badge-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--obsidian); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px;
}
.badge-sold-out {
  display: inline-block;
  background: rgba(180,60,60,0.85); color: var(--ivory);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px;
}

/* ── Velvet Card ─────────────────────────────────────────────── */
.velvet-card {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--velvet) 100%);
  border: 1px solid rgba(201,168,76,0.12);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.velvet-card:hover {
  border-color: rgba(201,168,76,0.28);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

/* ── Collections Story ───────────────────────────────────────── */
.story-section { background: var(--charcoal); }
.story-image-wrap { position: relative; display: inline-block; }
.story-img { width: 100%; object-fit: cover; height: 580px; }
.story-image-accent {
  position: absolute; bottom: -24px; right: -24px;
  width: 40%; border: 3px solid var(--gold); z-index: -1;
  height: calc(40% + 24px);
}
.story-title { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.2; }
.story-text { color: var(--ash); line-height: 1.9; font-size: 0.95rem; }

/* ── Category Cards ──────────────────────────────────────────── */
.category-card { display: block; text-align: center; }
.category-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 9/10;
}
.category-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover .category-card-img img { transform: scale(1.1); }
.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.6), transparent);
}
.category-card-name {
  font-family: var(--font-display); font-size: 0.95rem;
  color: var(--ivory); letter-spacing: 0.08em;
  margin: 10px 0 0; transition: color 0.3s;
}
.category-card:hover .category-card-name { color: var(--gold); }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-section { background: var(--charcoal); }
.testimonial-card {
  padding: 32px; height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; gap: 3px; display: flex; }
.testimonial-text {
  font-family: var(--font-display); font-size: 1.15rem; font-style: italic;
  color: var(--ivory); line-height: 1.65; flex: 1; margin: 0 0 20px;
}
.testimonial-name { font-size: 0.8rem; font-weight: 500; color: var(--gold); margin: 0; letter-spacing: 0.05em; }
.testimonial-city { font-size: 0.72rem; color: var(--ash); margin: 2px 0 0; letter-spacing: 0.08em; }

/* ── Instagram Strip ─────────────────────────────────────────── */
.instagram-strip { padding: 60px 0; background: var(--obsidian); }
.instagram-header { padding: 0 24px; }
.instagram-handle {
  font-family: var(--font-body); font-size: 1.1rem; color: var(--gold);
  letter-spacing: 0.05em; font-weight: 400;
}
.instagram-handle:hover { color: var(--gold-light); }
.instagram-sub { font-size: 0.75rem; color: var(--ash); letter-spacing: 0.12em; text-transform: uppercase; margin: 4px 0 0; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  margin-top: 24px;
}
.insta-item { position: relative; aspect-ratio: 1; overflow: hidden; display: block; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta-item:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(201,168,76,0.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s ease;
  font-size: 1.5rem; color: var(--ivory);
}
.insta-item:hover .insta-overlay { opacity: 1; }
@media (max-width: 768px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Newsletter / Footer ─────────────────────────────────────── */
.footer-newsletter {
  background: var(--velvet);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 64px 0;
}
.footer-nl-sub {
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.footer-nl-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300; color: var(--ivory); line-height: 1.25; margin: 0;
}
.nl-response { font-size: 0.8rem; }

.footer-body { background: var(--charcoal); padding: 64px 0; }
.footer-heading {
  font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500;
}
.footer-links li a, .footer-links li { font-size: 0.85rem; color: var(--ash); margin-bottom: 10px; display: block; }
.footer-links a:hover { color: var(--gold); }
.footer-brand-desc { font-size: 0.85rem; color: var(--ash); line-height: 1.75; }
.footer-socials { gap: 16px !important; }
.footer-social-icon {
  color: var(--ash); font-size: 1.15rem; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 1px solid rgba(201,168,76,0.2);
}
.footer-social-icon:hover { color: var(--gold); border-color: var(--gold); background: rgba(201,168,76,0.08); }
.footer-contact li { color: var(--ash); font-size: 0.85rem; display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: var(--ash); }
.footer-contact a:hover { color: var(--gold); }
.footer-payments-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ash); margin: 0; }
.footer-bottom {
  background: var(--obsidian); padding: 20px 0;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-bottom p { font-size: 0.78rem; color: var(--ash); margin: 0; }
.footer-bottom a { color: var(--ash); }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom div a { font-size: 0.75rem; }

/* ── Shop Page ───────────────────────────────────────────────── */
.shop-section { padding-top: 48px; }
.filters-title {
  font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin: 0;
}
.filter-group-label {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 10px;
}
.filter-cat-link {
  display: block; font-size: 0.85rem; color: var(--ash);
  padding: 5px 0; transition: color 0.3s ease;
}
.filter-cat-link:hover, .filter-cat-link.active { color: var(--gold); }
.filter-check {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.filter-checkbox {
  appearance: none; width: 15px; height: 15px;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent; cursor: none; position: relative;
  flex-shrink: 0;
}
.filter-checkbox:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.filter-checkbox:checked::after {
  content: '✓'; position: absolute; color: var(--obsidian);
  font-size: 10px; top: -1px; left: 2px;
}
.filter-check label { font-size: 0.83rem; color: var(--ash); cursor: none; }
.shop-count { font-size: 0.78rem; color: var(--ash); letter-spacing: 0.06em; margin: 0; }
.tamira-pagination { display: flex; gap: 8px; }
.pag-btn {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,76,0.25); color: var(--ash); font-size: 0.85rem;
  transition: var(--transition);
}
.pag-btn:hover, .pag-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

/* ── Product Detail ──────────────────────────────────────────── */
.product-detail-section { padding-top: 40px; }
.product-breadcrumb ol { align-items: center; }
.product-breadcrumb a { font-size: 0.75rem; color: var(--ash); }
.product-breadcrumb a:hover { color: var(--gold); }
.product-breadcrumb li { font-size: 0.75rem; color: var(--ash); }
.product-breadcrumb li[aria-current] { color: var(--ivory); }
.product-breadcrumb i { font-size: 0.55rem; }

.product-gallery .product-main-image {
  position: relative; overflow: hidden; background: var(--velvet);
  border: 1px solid rgba(201,168,76,0.1); aspect-ratio: 1;
}
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-badge { position: absolute; top: 16px; left: 16px; }
.product-thumb {
  width: 76px; height: 76px; overflow: hidden; padding: 0;
  border: 1px solid rgba(201,168,76,0.15); transition: border-color 0.3s ease;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb.active, .product-thumb:hover { border-color: var(--gold); }

.product-detail-category { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin: 0 0 10px; }
.product-detail-name {
  font-family: var(--font-accent); font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--ivory); margin: 0 0 12px; line-height: 1.2;
}
.product-detail-tagline {
  font-family: var(--font-display); font-size: 1.05rem; font-style: italic;
  color: var(--ash); margin: 0 0 18px;
}
.product-detail-price {
  font-family: var(--font-display); font-size: 2.4rem;
  color: var(--gold); margin: 0 0 20px; font-weight: 400;
}
.meta-label { font-size: 0.63rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ash); margin: 0 0 3px; }
.meta-value { font-size: 0.9rem; color: var(--ivory); margin: 0; }
.text-success-gold { color: #5DE69A; }
.text-danger-muted { color: #FF7A7A; }

.variant-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ash); margin: 0 0 10px; }
.variant-btn {
  padding: 8px 16px; border: 1px solid rgba(201,168,76,0.25);
  color: var(--ash); font-size: 0.82rem; transition: var(--transition);
  background: none;
}
.variant-btn:hover, .variant-btn.selected { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

.qty-stepper-lg { display: flex; align-items: center; }
.qty-btn-lg {
  width: 40px; height: 40px; border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold); font-size: 1.3rem; display: flex; align-items: center;
  justify-content: center; transition: var(--transition); background: none;
}
.qty-btn-lg:hover { background: var(--gold); color: var(--obsidian); }
.qty-display-lg {
  width: 54px; height: 40px; text-align: center;
  background: transparent; border: 1px solid rgba(201,168,76,0.15);
  color: var(--ivory); font-size: 0.95rem; border-left: none; border-right: none;
}

.product-trust-badges { gap: 20px !important; }
.trust-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.72rem; color: var(--ash); letter-spacing: 0.06em;
}
.trust-badge i { color: var(--gold); font-size: 0.9rem; }

/* Accordion */
.product-accordion { border-top: 1px solid rgba(201,168,76,0.15); }
.accordion-item-custom { border-bottom: 1px solid rgba(201,168,76,0.1); }
.accordion-header-custom {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 18px 0; background: none; border: none;
  color: var(--ivory); font-family: var(--font-body);
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: none; transition: color 0.3s ease;
}
.accordion-header-custom:hover { color: var(--gold); }
.accordion-header-custom[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }
.accordion-icon { color: var(--gold); transition: transform 0.3s ease; }
.accordion-body-custom {
  padding: 0 0 20px;
  max-height: 600px;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion-body-custom.hidden {
  max-height: 0; padding-bottom: 0;
}
.care-list { list-style: none; padding: 0; margin: 0; }
.care-list li { display: flex; gap: 10px; color: var(--ash); font-size: 0.88rem; margin-bottom: 10px; align-items: flex-start; }
.care-list i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.product-description p { font-size: 0.9rem; color: var(--ash); line-height: 1.8; margin-bottom: 12px; }
.product-description strong { color: var(--ivory); }

/* ── Cart Page ───────────────────────────────────────────────── */
.cart-page-section { padding-top: 48px; }
.cart-section-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--ivory); margin: 0; }
.cart-page-item { padding: 24px; margin-bottom: 16px; }
.cart-item-img { object-fit: cover; border: 1px solid rgba(201,168,76,0.15); }
.cart-item-page-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--ivory); margin: 0 0 4px; }
.cart-item-page-name:hover { color: var(--gold); }
.cart-item-page-variant { font-size: 0.78rem; color: var(--ash); margin: 0 0 4px; }
.cart-item-page-unit-price { font-size: 0.8rem; color: var(--ash); margin: 0; }
.cart-item-page-subtotal { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); margin: 0; }
.cart-page-remove { color: var(--ash); font-size: 0.9rem; transition: color 0.3s; padding: 6px; }
.cart-page-remove:hover { color: #FF7A7A; }

.cart-summary { position: relative; }
.cart-summary-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--ivory); margin: 0; }
.summary-row { margin-bottom: 12px; }
.summary-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ash); }
.summary-value { font-family: var(--font-body); font-size: 0.9rem; color: var(--ivory); }
.summary-divider { height: 1px; background: rgba(201,168,76,0.15); margin: 16px 0; }
.summary-total span { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); }
.free-delivery-hint { font-size: 0.72rem; color: var(--gold); margin: 0; }
.trust-badge-sm {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.68rem; color: var(--ash); letter-spacing: 0.06em;
}
.trust-badge-sm i { color: var(--gold); }

/* ── Checkout ────────────────────────────────────────────────── */
.checkout-block-title {
  font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ivory); margin: 0 0 4px;
  display: flex; align-items: center; gap: 14px;
}
.checkout-step-num {
  width: 26px; height: 26px; background: var(--gold); color: var(--obsidian);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; flex-shrink: 0;
}
.checkout-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ash); margin-bottom: 6px; display: block; }
.payment-method-card {
  border: 1px solid rgba(201,168,76,0.2); padding: 16px 20px;
  transition: border-color 0.3s ease;
}
.payment-method-card.active { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.payment-radio-dot {
  width: 16px; height: 16px; border: 2px solid var(--gold); border-radius: 50%;
  flex-shrink: 0; position: relative;
}
.payment-method-card.active .payment-radio-dot::after {
  content: ''; position: absolute; top: 2px; left: 2px;
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
}
.payment-method-name { font-size: 0.88rem; color: var(--ivory); margin: 0 0 2px; }
.payment-method-desc { font-size: 0.75rem; color: var(--ash); margin: 0; }
.payment-security-note { font-size: 0.75rem; color: var(--ash); display: flex; align-items: center; }
.payment-security-note i { color: var(--gold); }

.checkout-summary-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--ivory); margin: 0; }
.checkout-item { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.checkout-item-img-wrap { position: relative; flex-shrink: 0; }
.checkout-item-img-wrap img { width: 60px; height: 60px; object-fit: cover; border: 1px solid rgba(201,168,76,0.15); }
.checkout-item-qty {
  position: absolute; top: -6px; right: -6px;
  background: var(--gold); color: var(--obsidian);
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 0.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.checkout-item-name { font-size: 0.85rem; color: var(--ivory); margin: 0 0 2px; }
.checkout-item-variant { font-size: 0.72rem; color: var(--ash); margin: 0; }
.checkout-item-price { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold); white-space: nowrap; }
.checkout-summary-divider { height: 1px; background: rgba(201,168,76,0.15); margin: 16px 0; }
.checkout-guarantee { display: flex; align-items: flex-start; gap: 10px; font-size: 0.78rem; color: var(--ash); }
.checkout-guarantee i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ── Success Modal ───────────────────────────────────────────── */
.success-modal-overlay {
  position: fixed; inset: 0; background: rgba(10,10,10,0.95);
  z-index: 99999; display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.success-modal-card {
  background: var(--velvet); border: 1px solid rgba(201,168,76,0.4);
  padding: 48px 40px; max-width: 500px; width: 100%; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 0 60px rgba(201,168,76,0.2);
}
.success-confetti-area { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.success-icon { font-size: 3.5rem; color: var(--gold); }
.success-title { font-family: var(--font-display); font-size: 2rem; color: var(--ivory); margin: 12px 0 6px; }
.success-sub { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: var(--gold); margin: 0 0 16px; }
.success-order-ref { font-size: 0.8rem; letter-spacing: 0.12em; color: var(--gold); background: rgba(201,168,76,0.1); padding: 8px 16px; display: inline-block; }
.success-desc { font-size: 0.88rem; color: var(--ash); margin: 12px 0 0; line-height: 1.7; }

/* ── Track Page ──────────────────────────────────────────────── */
.track-search { max-width: 100%; }
.track-meta-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ash); margin: 0 0 4px; }
.track-meta-value { font-size: 0.95rem; color: var(--ivory); margin: 0; }
.track-section-heading { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

.track-stepper {
  display: flex; align-items: flex-start; justify-content: space-between;
  position: relative; gap: 0;
}
.track-step {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; position: relative; text-align: center;
}
.track-step-icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--ash); background: var(--charcoal);
  position: relative; z-index: 2; transition: var(--transition);
}
.track-step.step-done .track-step-icon {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,0.12);
  box-shadow: 0 0 16px rgba(201,168,76,0.25);
}
.track-step.step-current .track-step-icon {
  border-color: var(--gold-light); color: var(--gold-light);
  background: rgba(201,168,76,0.2);
  box-shadow: 0 0 24px rgba(201,168,76,0.4);
  animation: goldPulse 2s ease-in-out infinite;
}
.track-step-label { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ash); margin-top: 8px; line-height: 1.3; }
.track-step.step-done .track-step-label, .track-step.step-current .track-step-label { color: var(--gold); }
.track-step-connector {
  position: absolute; top: 22px; left: 50%; right: -50%;
  height: 2px; background: rgba(201,168,76,0.15); z-index: 1;
}
.track-step-connector.done { background: var(--gold); }
.status-badge {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 600; padding: 4px 12px;
}
.status-pending    { background: rgba(201,168,76,0.15); color: var(--gold); }
.status-confirmed  { background: rgba(80,160,80,0.15);  color: #6CCB6C; }
.status-processing { background: rgba(80,120,200,0.15); color: #7AADFF; }
.status-shipped    { background: rgba(150,80,200,0.15); color: #C07AFF; }
.status-out_for_delivery { background: rgba(220,140,60,0.15); color: #E8A84C; }
.status-delivered  { background: rgba(80,200,120,0.15); color: #5DE69A; }
.status-cancelled  { background: rgba(200,80,80,0.15);  color: #FF7A7A; }
.status-paid       { background: rgba(80,200,120,0.15); color: #5DE69A; }
.status-failed     { background: rgba(200,80,80,0.15);  color: #FF7A7A; }
@media (max-width: 576px) {
  .track-stepper { flex-wrap: wrap; gap: 16px; }
  .track-step { flex: 0 0 30%; }
  .track-step-connector { display: none; }
}

/* ── About Page ──────────────────────────────────────────────── */
.about-hero { position: relative; padding: 100px 0 80px; }
.about-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, #1E1500 0%, var(--obsidian) 70%);
}
.about-hero-quote {
  font-family: var(--font-display); font-size: 1.3rem; font-style: italic;
  color: var(--gold); margin-top: 28px; line-height: 1.6;
}
.about-section-title { font-size: clamp(1.8rem, 4vw, 3.2rem); }
.about-body-text { font-size: 0.93rem; color: var(--ash); line-height: 1.9; }
.about-image-stack { position: relative; display: inline-block; width: 100%; }
.about-img-main { width: 85%; object-fit: cover; height: 560px; }
.about-img-accent {
  position: absolute; bottom: -20px; right: 0;
  width: 42%; border: 2px solid rgba(201,168,76,0.3);
  overflow: hidden;
}
.about-img-accent img { width: 100%; height: 200px; object-fit: cover; }

.value-card { padding: 28px; }
.value-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 14px; }
.value-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--ivory); margin: 0 0 8px; }
.value-text { font-size: 0.85rem; color: var(--ash); line-height: 1.75; margin: 0; }

.about-quote-section { padding: 80px 0; background: var(--charcoal); }
.about-quote-inner { max-width: 700px; margin: 0 auto; }
.about-quote-mark { font-family: var(--font-display); font-size: 6rem; color: var(--gold); opacity: 0.3; line-height: 0.5; display: block; }
.about-big-quote { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 3rem); font-weight: 300; color: var(--ivory); line-height: 1.3; font-style: italic; margin: 0; }

.stat-block { padding: 24px; }
.stat-number {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300; display: block;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }
.stat-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ash); margin: 4px 0 0; }

.team-img-wrap { width: 160px; height: 160px; border-radius: 50%; overflow: hidden; margin: 0 auto; border: 2px solid rgba(201,168,76,0.25); }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--ivory); margin: 0; }
.team-role { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin: 4px 0 0; }

.about-cta-section { padding: 96px 0; background: radial-gradient(ellipse at 50% 50%, #1E1500 0%, var(--obsidian) 70%); }
.about-cta-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem); color: var(--ivory); line-height: 1.25; font-weight: 300; margin: 0; }
.about-cta-title em { color: var(--gold); font-style: italic; }
.mt-6 { margin-top: 4rem !important; }

/* ── Contact Page ────────────────────────────────────────────── */
.contact-info-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); color: var(--ivory); font-weight: 300; line-height: 1.2; margin: 0; }
.contact-info-sub { font-size: 0.9rem; color: var(--ash); line-height: 1.8; }
.contact-detail-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-detail-icon { width: 42px; height: 42px; border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--gold); flex-shrink: 0; }
.contact-detail-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin: 0 0 3px; }
.contact-detail-value { font-size: 0.9rem; color: var(--ivory); margin: 0 0 2px; }
.contact-detail-note { font-size: 0.72rem; color: var(--ash); margin: 0; }
.contact-form-title { font-family: var(--font-display); font-size: 1.8rem; color: var(--ivory); font-weight: 400; margin: 0 0 4px; }
.contact-form-sub { font-size: 0.82rem; color: var(--ash); margin: 0; }

.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9000;
  width: 52px; height: 52px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff !important; font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* ── Admin Portal ────────────────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px; min-height: 100vh; background: var(--charcoal);
  border-right: 1px solid rgba(201,168,76,0.12);
  position: fixed; top: 0; left: 0; overflow-y: auto;
  display: flex; flex-direction: column;
  transition: width 0.3s ease;
  z-index: 100;
}
.admin-sidebar-logo {
  padding: 24px; border-bottom: 1px solid rgba(201,168,76,0.1);
  display: flex; align-items: center; gap: 12px;
}
.admin-sidebar-logo img { height: 36px; width: auto; }
.admin-sidebar-title { font-family: var(--font-accent); font-size: 0.6rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin: 0; }
.admin-nav { padding: 16px 0; flex: 1; }
.admin-nav-section-label { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); padding: 12px 24px 6px; }
.admin-sidebar-link { display: flex; align-items: center; gap: 12px; padding: 11px 24px; color: var(--ash); font-size: 0.8rem; letter-spacing: 0.06em; transition: var(--transition); border-left: 2px solid transparent; }
.admin-sidebar-link i { font-size: 1.05rem; flex-shrink: 0; }
.admin-sidebar-link:hover, .admin-sidebar-link.active { color: var(--gold); border-left-color: var(--gold); background: rgba(201,168,76,0.06); }
.admin-main { margin-left: 260px; flex: 1; min-height: 100vh; background: var(--obsidian); }
.admin-topbar {
  background: var(--charcoal); border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 0 32px; height: 64px; display: flex; align-items: center;
  justify-content: space-between; position: sticky; top: 0; z-index: 50;
}
.admin-topbar-title { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin: 0; }
.admin-user-info { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--ash); }
.admin-user-info i { color: var(--gold); font-size: 1.1rem; }
.admin-content { padding: 32px; }

.kpi-card {
  background: var(--velvet); border: 1px solid rgba(201,168,76,0.12);
  padding: 24px; transition: var(--transition);
}
.kpi-card:hover { border-color: rgba(201,168,76,0.3); box-shadow: var(--shadow-card); }
.kpi-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 12px; }
.kpi-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ash); margin: 0 0 6px; }
.kpi-value { font-family: var(--font-display); font-size: 2rem; color: var(--ivory); margin: 0; }
.kpi-sub { font-size: 0.72rem; color: var(--ash); margin: 4px 0 0; }

.luxury-table { width: 100%; border-collapse: collapse; }
.luxury-table th { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); padding: 14px 16px; border-bottom: 1px solid rgba(201,168,76,0.15); text-align: left; white-space: nowrap; }
.luxury-table td { padding: 14px 16px; font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: middle; color: var(--ivory); }
.luxury-table tbody tr:hover td { background: rgba(201,168,76,0.04); }

.admin-page-header { margin-bottom: 28px; }
.admin-page-title { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--ivory); margin: 0 0 4px; }
.admin-page-sub { font-size: 0.8rem; color: var(--ash); margin: 0; }

/* Admin Modal */
.admin-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.8);
  z-index: 99999; display: none; align-items: center; justify-content: center; padding: 24px;
}
.admin-modal-overlay.open { display: flex; }
.admin-modal {
  background: var(--charcoal); border: 1px solid rgba(201,168,76,0.25);
  width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 0 60px rgba(0,0,0,0.7);
}
.admin-modal-header {
  padding: 20px 24px; border-bottom: 1px solid rgba(201,168,76,0.12);
  display: flex; align-items: center; justify-content: space-between;
}
.admin-modal-title { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin: 0; }
.admin-modal-close { color: var(--ash); font-size: 1.1rem; transition: color 0.3s; }
.admin-modal-close:hover { color: var(--gold); }
.admin-modal-body { padding: 24px; }
.admin-modal-footer { padding: 16px 24px; border-top: 1px solid rgba(201,168,76,0.1); display: flex; gap: 12px; justify-content: flex-end; }

.admin-label { display: block; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ash); margin-bottom: 6px; }
.admin-form-group { margin-bottom: 18px; }

/* ── Admin Login ─────────────────────────────────────────────── */
.admin-login-page {
  min-height: 100vh; background: radial-gradient(ellipse at 50% 40%, #1E1500 0%, var(--obsidian) 65%);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.admin-login-card {
  background: var(--velvet); border: 1px solid rgba(201,168,76,0.2);
  padding: 48px 44px; width: 100%; max-width: 440px;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
.admin-login-logo { text-align: center; margin-bottom: 32px; }
.admin-login-logo img { height: 52px; }
.admin-login-title { font-family: var(--font-accent); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); text-align: center; margin: 8px 0 0; }
.admin-login-sub { font-size: 0.78rem; color: var(--ash); text-align: center; margin: 6px 0 32px; }
.show-pass-btn { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--ash); font-size: 0.9rem; transition: color 0.3s; }
.show-pass-btn:hover { color: var(--gold); }

/* ── Utilities ───────────────────────────────────────────────── */
.text-gold-shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 35%, #E8C96A 50%, var(--gold-light) 65%, var(--gold) 100%);
  background-size: 200% auto; -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 3s linear infinite;
}
.gold-spinner {
  border: 2px solid rgba(201,168,76,0.2); border-top-color: var(--gold);
  border-radius: 50%; animation: spin 0.75s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.flex-1 { flex: 1; }
.sticky-top { position: sticky; }
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.toast-luxury { background: var(--charcoal) !important; color: var(--ivory) !important; border: 1px solid rgba(201,168,76,0.3) !important; border-radius: 0 !important; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  body { padding-top: 68px; }
}
@media (max-width: 767px) {
  .section { padding: 64px 0; }
  .hero-section { padding-bottom: 80px; }
  .footer-newsletter { padding: 48px 0; }
  .admin-content { padding: 20px 16px; }
  .admin-topbar { padding: 0 16px; }
}
@media (max-width: 575px) {
  .btn-gold, .btn-ghost-gold { padding: 12px 24px; font-size: 0.68rem; }
  .product-detail-price { font-size: 1.8rem; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 4rem); }
}
