/* ============================================================
   ALARIK — Luxury Fashion E-Commerce
   Crafted for the Extraordinary
   ============================================================ */

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

/* ─── CSS Custom Properties ─────────────────────────────── */
:root {
  --bg-primary: #12100E;
  --bg-surface: #1A1714;
  --bg-elevated: #24201B;
  --gold: #C8A870;
  --gold-light: #E8D5B5;
  --gold-dim: rgba(200, 168, 112, 0.12);
  --gold-border: rgba(200, 168, 112, 0.35);
  --green-emerald: #1E392A;
  --green-sage: #4A7C59;
  --green-light: #A3C9A8;
  --green-dim: rgba(30, 57, 42, 0.25);
  --text-primary: #FAF8F5;
  --text-secondary: #C4BEB4;
  --text-muted: #80786E;
  --border-subtle: rgba(200, 168, 112, 0.15);
  --border-visible: rgba(200, 168, 112, 0.35);
  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --shadow-gold: 0 0 40px rgba(200, 168, 112, 0.18);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.6);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── Custom Cursor (Glowing Gold) ──────────────────────── */
#cursor-dot {
  width: 20px; height: 20px;
  border: 2px solid #d4af37;
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 15px rgba(212,175,55,0.8), 0 0 30px rgba(212,175,55,0.4);
}

#cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(212,175,55,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(212,175,55,0.3);
}

body.cursor-hover #cursor-dot,
body.cursor-product #cursor-dot {
  width: 60px; height: 60px;
  background: rgba(212,175,55,0.15);
  border-color: #ffd700;
  box-shadow: 0 0 30px rgba(255,215,0,1), 0 0 60px rgba(212,175,55,0.6);
}

/* ─── Scroll Progress ───────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── Preloader ─────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-ring {
  width: 80px; height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--border-subtle);
  border-top-color: var(--gold);
  animation: spin 1s linear infinite;
}

.preloader-letter {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  font-style: italic;
}

.preloader-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Announcement Bar ──────────────────────────────────── */
#announcement-bar {
  background: var(--gold);
  color: #000;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  z-index: 1000;
}

#announcement-bar .announce-close {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  cursor: none;
  opacity: 0.7;
  font-size: 1rem;
  transition: opacity 0.2s;
}
#announcement-bar .announce-close:hover { opacity: 1; }
#announcement-bar.hidden { display: none; }

/* ─── Navbar ────────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: transparent;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}
.nav-logo-img:hover { opacity: 0.85; }

/* Fallback text logo */
.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* Footer logo */
.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.footer-logo-img:hover { opacity: 1; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s;
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-icon-btn {
  position: relative;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.nav-icon-btn:hover { color: var(--gold); }

.nav-badge {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--gold);
  color: #000;
  font-size: 0.55rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ─── Mobile Menu ───────────────────────────────────────── */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
#mobile-menu.open { transform: translateX(0); }

#mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--text-secondary);
  transition: color 0.3s;
  letter-spacing: 0.04em;
}
#mobile-menu a:hover { color: var(--gold); }

.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.4rem;
  color: var(--text-secondary);
}

/* ─── Search Modal ──────────────────────────────────────── */
#search-modal {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.97);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
#search-modal.open { opacity: 1; visibility: visible; }

.search-modal-inner {
  width: 100%;
  max-width: 680px;
  padding: 0 24px;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-visible);
  padding-bottom: 16px;
  gap: 16px;
}

.search-input-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
}
.search-input-wrap input::placeholder { color: var(--text-muted); }

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.search-tag {
  padding: 6px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: none;
  transition: all 0.3s;
}
.search-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.search-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.4rem;
  color: var(--text-secondary);
  cursor: none;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: none;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-gold:hover::after { opacity: 1; }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-visible);
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.btn-full { width: 100%; justify-content: center; }

/* ─── Hero Section ──────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.88) 0%,
    rgba(8,8,8,0.6) 50%,
    rgba(8,8,8,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 80px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-headline span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear 1.5s infinite;
}

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

.hero-subtext {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-subtle);
  z-index: 2;
  background: rgba(8,8,8,0.7);
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.3s forwards;
}

.hero-stat {
  padding: 24px 0;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
}
.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Marquee ───────────────────────────────────────────── */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #000;
  padding: 0 40px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Section Commons ───────────────────────────────────── */
.section {
  padding: 100px 80px;
}

.section-header {
  margin-bottom: 60px;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
}

.section-title em { color: var(--gold); font-style: italic; }

.section-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 500px;
  margin-top: 16px;
  line-height: 1.7;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* ─── Category Grid ─────────────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.category-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: none;
  group: true;
}

.category-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.category-tile:hover img { transform: scale(1.06); }

.category-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.2) 60%, transparent 100%);
  transition: background 0.4s ease;
}
.category-tile:hover .category-tile-overlay {
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.3) 70%, transparent 100%);
}

.category-tile-content {
  position: absolute;
  bottom: 32px;
  left: 28px; right: 28px;
}

.category-tile-count {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.category-tile-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.category-tile-cta {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  width: fit-content;
  transition: border-color 0.3s;
}
.category-tile:hover .category-tile-cta { border-color: var(--gold); }

/* ─── Product Cards ─────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-surface);
  position: relative;
  cursor: none;
  transition: transform 0.4s ease;
}
.product-card:hover { transform: translateY(-4px); }

.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.7s ease;
  position: absolute;
  inset: 0;
}

.product-card-image .img-alt {
  opacity: 0;
}
.product-card:hover .img-main { opacity: 0; }
.product-card:hover .img-alt  { opacity: 1; }
.product-card:hover .product-card-image img { transform: scale(1.04); }

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  padding: 4px 10px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: #000;
}

.product-badge.new { background: var(--text-primary); color: #000; }
.product-badge.sale { background: #8B1A1A; color: #fff; }

.product-card-actions {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 3;
}
.product-card:hover .product-card-actions { transform: translateY(0); }

.quick-view-btn, .add-bag-btn {
  width: 100%;
  padding: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  cursor: none;
  transition: var(--transition-fast);
}

.quick-view-btn {
  background: rgba(8,8,8,0.85);
  color: var(--text-primary);
}
.quick-view-btn:hover { background: var(--bg-elevated); }

.add-bag-btn {
  background: var(--gold);
  color: #000;
}
.add-bag-btn:hover { background: var(--gold-light); }

.wishlist-btn {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(8,8,8,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: all 0.3s;
  cursor: none;
  backdrop-filter: blur(4px);
}
.wishlist-btn:hover, .wishlist-btn.active {
  background: var(--bg-elevated);
  color: var(--gold);
}
.wishlist-btn.active i { font-weight: 900; }

.product-card-info {
  padding: 20px 16px 24px;
}

.product-category {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.stars { color: var(--gold); font-size: 0.75rem; }
.rating-count { font-size: 0.72rem; color: var(--text-muted); }

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-current {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
}

.price-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-save {
  font-size: 0.65rem;
  font-weight: 700;
  color: #4CAF50;
  letter-spacing: 0.05em;
}

/* ─── USP / Brand Promise ───────────────────────────────── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-subtle);
}

.usp-card {
  padding: 48px 40px;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
  transition: background 0.4s;
}
.usp-card:last-child { border-right: none; }
.usp-card:hover { background: var(--bg-surface); }

.usp-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-visible);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.2rem;
  color: var(--gold);
  transition: all 0.4s;
}
.usp-card:hover .usp-icon {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.usp-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 10px;
}

.usp-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Carousel ──────────────────────────────────────────── */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.carousel-btn {
  width: 48px; height: 48px;
  border: 1px solid var(--border-visible);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  cursor: none;
  transition: all 0.3s;
}
.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ─── Testimonials ──────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 40px 36px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  transition: all 0.4s;
  position: relative;
}

.testimonial-card.featured {
  border-color: var(--gold);
  background: var(--bg-elevated);
  transform: scale(1.03);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-visible);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  background: var(--gold-dim);
}

.testimonial-name {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.testimonial-loc {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── Instagram Grid ────────────────────────────────────── */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}

.instagram-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: none;
}

.instagram-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.instagram-tile:hover img { transform: scale(1.06); }

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.instagram-tile:hover .instagram-overlay { opacity: 1; }
.instagram-overlay i { font-size: 1.4rem; color: #fff; }

/* ─── Newsletter ────────────────────────────────────────── */
.newsletter-section {
  background: var(--bg-surface);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 28px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-visible);
  border-right: none;
  color: var(--text-primary);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-input::placeholder { color: var(--text-muted); }

.coupon-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.coupon-card {
  padding: 18px 24px;
  border: 1.5px dashed var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--bg-elevated);
  transition: border-color 0.3s;
}
.coupon-card:hover { border-color: var(--gold); }

.coupon-code {
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.coupon-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  flex: 1;
}

.coupon-copy {
  padding: 6px 14px;
  border: 1px solid var(--border-visible);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: none;
  transition: all 0.3s;
}
.coupon-copy:hover, .coupon-copy.copied {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* ─── Footer ────────────────────────────────────────────── */
footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.footer-main {
  padding: 80px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .footer-logo-img {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.payment-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.payment-icon {
  padding: 4px 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ─── Floating Buttons ──────────────────────────────────── */
#whatsapp-float {
  position: fixed;
  bottom: 90px; right: 28px;
  z-index: 8888;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

.whatsapp-tooltip {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.72rem;
  padding: 6px 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
#whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

#back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 8888;
  width: 48px; height: 48px;
  border: 1px solid var(--border-visible);
  border-radius: 50%;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  cursor: none;
  opacity: 0;
  transition: opacity 0.4s, transform 0.3s, background 0.3s;
  transform: translateY(20px);
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--gold); color: #000; }

/* ─── Toast ─────────────────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 100px; left: 50%;
  transform: translateX(-50%);
  z-index: 99998;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.toast {
  background: var(--bg-elevated);
  border: 1px solid var(--border-visible);
  color: var(--text-primary);
  padding: 12px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
  animation: toastIn 0.4s ease;
  min-width: 280px;
  justify-content: center;
}

.toast i { color: var(--gold); }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Quick View Modal ──────────────────────────────────── */
#quick-view-modal {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
#quick-view-modal.open { opacity: 1; visibility: visible; }

.quick-view-content {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  max-width: 900px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.quick-view-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.quick-view-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.quick-view-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: none;
  font-size: 0.9rem;
  z-index: 1;
  transition: all 0.3s;
}
.modal-close:hover { color: var(--gold); background: var(--bg-elevated); }

/* ─── Cookie Banner ─────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 9990;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
#cookie-banner.visible { transform: translateY(0); }

#cookie-banner p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  max-width: 600px;
}

#cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ─── Scroll Animations ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger:nth-child(6) { transition-delay: 0.6s; }

/* ─── Shop Page ─────────────────────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 60px 80px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 90px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 32px;
}

.sidebar-section {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.sidebar-section:last-child { border-bottom: none; margin-bottom: 0; }

.sidebar-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  cursor: none;
  padding: 4px 0;
  transition: color 0.3s;
}
.filter-checkbox:hover { color: var(--gold); }

.filter-checkbox input { display: none; }

.checkbox-custom {
  width: 14px; height: 14px;
  border: 1px solid var(--border-visible);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.filter-checkbox input:checked + .checkbox-custom {
  background: var(--gold);
  border-color: var(--gold);
}
.filter-checkbox input:checked + .checkbox-custom::after {
  content: '✓';
  font-size: 0.6rem;
  color: #000;
}

.price-range { margin-top: 12px; }

.price-slider {
  width: 100%;
  accent-color: var(--gold);
  cursor: none;
}

.price-brackets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.price-bracket {
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: none;
  transition: color 0.3s;
  padding: 4px 0;
}
.price-bracket:hover, .price-bracket.active { color: var(--gold); }

.size-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.size-toggle {
  width: 38px; height: 38px;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--text-secondary);
  cursor: none;
  transition: all 0.3s;
}
.size-toggle:hover, .size-toggle.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.color-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: none;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}
.color-swatch.active { border-color: var(--gold); }

.sidebar-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 24px;
}

.category-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.category-pill {
  padding: 8px 18px;
  border: 1px solid var(--border-subtle);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: none;
  transition: all 0.3s;
  white-space: nowrap;
}
.category-pill:hover, .category-pill.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.shop-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.results-count {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.sort-select {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 8px 14px;
  font-size: 0.78rem;
  font-family: var(--font-body);
  outline: none;
  cursor: none;
  transition: border-color 0.3s;
}
.sort-select:focus { border-color: var(--gold); }

.active-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.filter-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: var(--gold-dim);
  cursor: none;
}
.filter-chip-remove { font-size: 0.8rem; transition: color 0.2s; }
.filter-chip:hover .filter-chip-remove { color: var(--text-primary); }

/* ─── Product Detail ────────────────────────────────────── */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 60px 80px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 90px;
}

.gallery-main {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 12px;
  cursor: crosshair;
}

.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-main:hover img { transform: scale(1.1); }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gallery-thumb {
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: none;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-thumb:hover img { transform: scale(1.05); }

.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.breadcrumb a { transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

.product-detail-name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.2;
}

.product-detail-price {
  display: flex;
  align-items: center;
  gap: 16px;
}

.variant-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
}

.trust-badge {
  text-align: center;
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.trust-badge i { display: block; color: var(--gold); font-size: 1rem; margin-bottom: 4px; }

.accordion-item {
  border-bottom: 1px solid var(--border-subtle);
}
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.accordion-header:hover { color: var(--gold); }
.accordion-body {
  display: none;
  padding-bottom: 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.accordion-item.open .accordion-body { display: block; }
.accordion-icon { transition: transform 0.3s; font-size: 0.75rem; color: var(--text-muted); }
.accordion-item.open .accordion-icon { transform: rotate(180deg); color: var(--gold); }

/* ─── Quantity Stepper ──────────────────────────────────── */
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-visible);
  width: fit-content;
}
.qty-btn {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: none;
  font-size: 1rem;
  transition: all 0.3s;
}
.qty-btn:hover { background: var(--gold-dim); color: var(--gold); }
.qty-input {
  width: 52px; height: 44px;
  background: none;
  border: none;
  border-left: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
  color: var(--text-primary);
  text-align: center;
  font-size: 0.9rem;
  outline: none;
}

/* ─── Cart ──────────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  padding: 60px 80px;
  align-items: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-item-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-name { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 6px; }
.cart-item-variant { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 12px; }
.cart-item-remove { font-size: 0.7rem; color: var(--text-muted); cursor: none; transition: color 0.3s; text-transform: uppercase; letter-spacing: 0.1em; }
.cart-item-remove:hover { color: #E53935; }
.cart-item-price { font-family: var(--font-heading); font-size: 1.1rem; color: var(--gold); text-align: right; }

.order-summary {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 32px;
  position: sticky;
  top: 90px;
}

.order-summary h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: var(--text-secondary);
}
.summary-row.total {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}
.summary-row .gold { color: var(--gold); }

.coupon-input-row {
  display: flex;
  gap: 0;
  margin: 20px 0;
}

.coupon-input-row input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-right: none;
  color: var(--text-primary);
  font-size: 0.82rem;
  outline: none;
}
.coupon-input-row input:focus { border-color: var(--gold); }

/* ─── About ─────────────────────────────────────────────── */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about-hero-img { overflow: hidden; }
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.about-hero-content {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-surface);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-subtle);
  margin: 0 80px;
}

.number-item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
}
.number-item:last-child { border-right: none; }
.number-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--gold);
}
.number-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; }

/* ─── Contact ───────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 60vh;
}

.contact-form-side {
  padding: 80px;
  background: var(--bg-surface);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1/-1; }
.form-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-input, .form-select, .form-textarea {
  padding: 14px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23555'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

.contact-info-side {
  padding: 80px;
}

.info-cards { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  transition: border-color 0.4s;
}
.info-card:hover { border-color: var(--gold); }
.info-card-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border-visible);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.info-card-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.info-card-value { font-size: 0.9rem; color: var(--text-primary); }

.faq-section { padding: 80px; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-answer {
  display: none;
  padding-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question { color: var(--gold); }
.faq-icon { color: var(--text-muted); font-size: 0.75rem; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--gold); }

/* ─── Map Placeholder ───────────────────────────────────── */
.map-placeholder {
  height: 300px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  margin: 40px 0 0;
}
.map-placeholder i { font-size: 2rem; color: var(--gold); }

/* ─── Page Hero (interior) ──────────────────────────────── */
.page-hero {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.3) 0%, var(--bg-primary) 100%);
  z-index: 1;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 300;
}

/* ─── Load More ─────────────────────────────────────────── */
.load-more-wrap {
  text-align: center;
  padding: 48px 0;
}

/* ─── Stars Rating ──────────────────────────────────────── */
.star-breakdown { display: flex; flex-direction: column; gap: 6px; }
.star-row { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--text-muted); }
.star-bar { flex: 1; height: 4px; background: var(--bg-elevated); border-radius: 2px; overflow: hidden; }
.star-fill { height: 100%; background: var(--gold); border-radius: 2px; }

/* ─── Review Cards ──────────────────────────────────────── */
.review-card {
  padding: 28px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  margin-bottom: 16px;
}
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.reviewer-name { font-weight: 600; font-size: 0.9rem; }
.review-date { font-size: 0.72rem; color: var(--text-muted); }
.review-text { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1200px) {
  .section { padding: 80px 60px; }
  .footer-main { padding: 60px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

@media (max-width: 1024px) {
  .section { padding: 70px 40px; }
  .hero-content { padding: 0 40px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-card { border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .usp-card:nth-child(2n) { border-right: none; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card.featured { transform: none; }
  .newsletter-section { grid-template-columns: 1fr; gap: 40px; padding: 60px 40px; }
  .shop-layout { grid-template-columns: 1fr; padding: 40px; }
  .sidebar { position: relative; top: 0; }
  .product-detail-layout { grid-template-columns: 1fr; padding: 40px; gap: 40px; }
  .product-gallery { position: relative; top: 0; }
  .cart-layout { grid-template-columns: 1fr; padding: 40px; }
  .about-hero { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-side, .contact-info-side { padding: 60px 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 60px 40px; gap: 40px; }
  .footer-bottom { padding: 24px 40px; }
  .numbers-grid { margin: 0 40px; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  #navbar { padding: 0 20px; }
  .section { padding: 60px 20px; }
  .hero-content { padding: 0 20px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-item { grid-template-columns: 80px 1fr; gap: 16px; }
  .cart-item-price { grid-column: 1/-1; text-align: left; }
  .contact-form-side, .contact-info-side, .faq-section { padding: 40px 20px; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 40px 20px; gap: 32px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { padding: 20px; flex-direction: column; text-align: center; gap: 12px; }
  .numbers-grid { margin: 0 20px; grid-template-columns: repeat(2, 1fr); }
  #cookie-banner { padding: 16px 20px; flex-direction: column; text-align: center; gap: 12px; }
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
  .quick-view-content { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; padding: 24px; }
  .newsletter-section { padding: 40px 20px; }
  #whatsapp-float { bottom: 20px; right: 20px; z-index: 9999; }
  #back-to-top { bottom: 20px; right: 80px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: 1fr; }
  .about-hero-content { padding: 40px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr; }
  .gallery-thumbs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
  .gallery-thumb { flex: 0 0 70px; width: 70px; height: 70px; }
  #mobile-menu { width: 100%; }
  .cart-item { grid-template-columns: 70px 1fr; gap: 12px; }
  .share-buttons { justify-content: flex-start; width: 100%; }
  .share-btn { flex: 1 1 auto; justify-content: center; }
  .size-table { display: block; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
}

/* ─── Touch & Mobile Device Cursor Overrides ─────────────── */
@media (max-width: 1024px), (hover: none), (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none !important; }
  body, button, a, input, select, textarea, .product-card, .category-tile, .share-btn, .color-swatch, .size-toggle, .gallery-thumb, .wishlist-btn, .quick-view-btn, .add-bag-btn {
    cursor: pointer !important;
  }
}

/* ─── In Stock Badge ────────────────────────────────────── */
.in-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.3);
  color: #4CAF50;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.in-stock-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4CAF50; }

/* ─── Size Guide Modal ──────────────────────────────────── */
#size-guide-modal {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
#size-guide-modal.open { opacity: 1; visibility: visible; }

.size-guide-content {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  max-width: 600px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.82rem;
}
.size-table th {
  padding: 10px;
  background: var(--gold-dim);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  font-size: 0.7rem;
  border-bottom: 1px solid var(--border-visible);
}
.size-table td {
  padding: 10px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}
.size-table tr:hover td { background: var(--bg-surface); }

/* ─── Share Modal ───────────────────────────────────────── */
.share-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.share-btn {
  padding: 10px 18px;
  border: 1px solid var(--border-subtle);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.share-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ─── Recently Viewed ───────────────────────────────────── */
.recently-viewed { display: none; }
.recently-viewed.has-items { display: block; }

