/* ============================================
   KIMERZMODS — Dark Premium Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-elevated: #1a1a1a;
  --bg-card: #141414;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dark: #a07c2a;
  --text-primary: #f5f5f5;
  --text-secondary: #999999;
  --text-muted: #666666;
  --border: #222222;
  --border-light: #2a2a2a;
  --success: #2ecc71;
  --danger: #e74c3c;
  --warning: #f39c12;
  --info: #3498db;
  --white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.15);
  --transition: all 0.3s ease;
  --container: 1200px;
  --navbar-height: 72px;
}

/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  outline: none;
}

input, select, textarea {
  font-family: var(--font-body);
  outline: none;
}

ul, ol {
  list-style: none;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }

.subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.125rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 0.75rem;
}

.section-title .gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto;
}

.price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
}

.price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.85em;
  margin-right: 0.5rem;
}

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold,
.btn-primary {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn-gold:hover,
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg-primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn-dark {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-dark:hover {
  border-color: var(--gold-dark);
  color: var(--gold);
}

.btn-danger {
  background: var(--danger);
  color: var(--white);
}

.btn-danger:hover {
  background: #c0392b;
}

.btn-success {
  background: var(--success);
  color: var(--white);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1rem 3rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.btn .icon {
  font-size: 1.1em;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold) !important;
  letter-spacing: 0.03em;
}

.navbar-brand span {
  color: var(--text-primary);
  font-weight: 400;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--gold);
}

.navbar-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* ── Account icon ── */
.account-icon {
  position: relative;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
  padding: 0.5rem;
  display: flex;
  align-items: center;
}

.account-icon:hover {
  color: var(--gold);
}

.account-icon.logged-in::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  border: 1.5px solid var(--bg-primary);
}

/* ── Wishlist button (heart) ── */
.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  color: var(--text-secondary);
  transition: all 0.25s ease;
}

.wishlist-btn:hover {
  color: #e74c3c;
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(231, 76, 60, 0.3);
  transform: scale(1.1);
}

.wishlist-btn.active {
  color: #e74c3c;
}

.wishlist-btn.active svg {
  fill: #e74c3c;
}

.cart-icon {
  position: relative;
  color: var(--text-primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  padding: 0.5rem;
}

.cart-icon:hover {
  color: var(--gold);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.625rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-badge:empty,
.cart-badge[data-count="0"] {
  display: none;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 36px;
  height: 36px;
  justify-content: center;
  position: relative;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform-origin: center;
  border-radius: 2px;
}

.menu-toggle span:nth-child(1) { width: 22px; }
.menu-toggle span:nth-child(2) { width: 14px; }

.menu-toggle:hover span {
  background: var(--gold);
}

.menu-toggle:hover span:nth-child(2) {
  width: 22px;
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3), rgba(10,10,10,0.8));
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video-wrapper iframe,
.hero-video-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  border: 0;
  opacity: 0.4;
  filter: brightness(0.6);
  pointer-events: none;
}

.hero-video-wrapper iframe {
  width: 140%;
  height: 140%;
  min-height: 177.78vh;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  padding: 0 1.5rem;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero-content .subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-content .btn {
  font-size: 0.9375rem;
}

/* ── Brands Banner ── */
.brands-banner {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.brands-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.brands-list span {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}

.brands-list span:hover {
  color: var(--gold);
}

/* ── Collection Cards ── */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}

.collection-card img,
.collection-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-card:hover img,
.collection-card:hover video {
  transform: scale(1.08);
}

.collection-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.collection-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.collection-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* ── Product Cards ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-secondary);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
}

.badge-new {
  background: var(--gold);
  color: var(--bg-primary);
}

.badge-featured {
  background: var(--info);
  color: var(--white);
}

.badge-limited {
  background: var(--danger);
  color: var(--white);
}

.badge-out {
  background: var(--text-muted);
  color: var(--white);
}

.product-card-info {
  padding: 1.25rem;
}

.product-card-brand {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.375rem;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.product-card-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold);
}

.product-card-price .price-old {
  font-size: 0.875rem;
}

/* ── Product Detail Page ── */
.product-detail {
  padding-top: calc(var(--navbar-height) + 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--navbar-height) + 2rem);
}

.product-gallery-main {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-secondary);
  margin-bottom: 1rem;
  cursor: zoom-in;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-gallery-main:hover img {
  transform: scale(1.5);
}

.product-gallery-thumbs {
  display: flex;
  gap: 0.75rem;
}

.product-gallery-thumbs .thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
}

.product-gallery-thumbs .thumb.active,
.product-gallery-thumbs .thumb:hover {
  border-color: var(--gold);
  opacity: 1;
}

.product-gallery-thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 1rem 0;
}

.product-info .brand {
  font-size: 0.875rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.product-info h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.product-info .product-price {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.product-info .short-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.product-specs {
  margin-bottom: 2rem;
}

.product-specs table {
  width: 100%;
  border-collapse: collapse;
}

.product-specs td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

.product-specs td:first-child {
  color: var(--text-muted);
  width: 40%;
}

.product-specs td:last-child {
  color: var(--text-primary);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
}

.quantity-selector button {
  width: 44px;
  height: 44px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.quantity-selector button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.quantity-selector button:first-child {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.quantity-selector button:last-child {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.quantity-selector input {
  width: 60px;
  height: 44px;
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: none;
  border-right: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
}

.add-to-cart-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.stock-dot.in-stock { background: var(--success); }
.stock-dot.low-stock { background: var(--warning); }
.stock-dot.out-of-stock { background: var(--danger); }

/* Product tabs */
.product-tabs {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
}

.product-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.product-tabs-nav button {
  padding: 1rem 1.5rem;
  background: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.product-tabs-nav button.active,
.product-tabs-nav button:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.product-tab-content {
  padding: 2rem 0;
  display: none;
}

.product-tab-content.active {
  display: block;
}

.product-tab-content p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── Cart Page ── */
.cart-page {
  padding-top: calc(var(--navbar-height) + 2rem);
  min-height: 100vh;
}

.cart-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  align-items: center;
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info .brand {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cart-item-info h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0.25rem 0;
}

.cart-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.125rem;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0;
}

.cart-item-quantity button {
  width: 32px;
  height: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-quantity input {
  width: 40px;
  height: 32px;
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: none;
  border-right: none;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.cart-item-remove:hover {
  color: var(--danger);
}

/* Cart Summary */
.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--navbar-height) + 2rem);
}

.cart-summary h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
}

.cart-summary-line.total {
  border-top: 1px solid var(--border);
  margin-top: 0.75rem;
  padding-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.cart-summary-line.total .amount {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
}

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.cart-empty .icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.3;
}

.cart-empty h2 {
  margin-bottom: 0.75rem;
}

.cart-empty p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ── Checkout ── */
.checkout-page {
  padding-top: calc(var(--navbar-height) + 2rem);
  min-height: 100vh;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: start;
}

.checkout-steps {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
}

.checkout-step {
  flex: 1;
  text-align: center;
  padding: 1rem;
  position: relative;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.checkout-step.active {
  color: var(--gold);
}

.checkout-step.completed {
  color: var(--success);
}

.checkout-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
}

.checkout-step.active::after {
  background: var(--gold);
}

.checkout-step.completed::after {
  background: var(--success);
}

.checkout-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 0.5rem;
}

.checkout-step.active .checkout-step-number {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--bg-primary);
}

.checkout-step.completed .checkout-step-number {
  border-color: var(--success);
  background: var(--success);
  color: var(--white);
}

.checkout-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.checkout-section h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

/* ── Forms ── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-error {
  font-size: 0.75rem;
  color: var(--danger);
  margin-top: 0.25rem;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Radio / Checkbox cards */
.radio-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.radio-card:hover {
  border-color: var(--gold-dark);
}

.radio-card.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.radio-card input[type="radio"] {
  display: none;
}

.radio-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  position: relative;
}

.radio-card.selected .radio-dot {
  border-color: var(--gold);
}

.radio-card.selected .radio-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.radio-info {
  flex: 1;
}

.radio-info .name {
  font-weight: 500;
  font-size: 0.9375rem;
}

.radio-info .desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.radio-price {
  font-weight: 600;
  color: var(--gold);
}

/* ── Catalogue Page ── */
.catalogue-page {
  padding-top: calc(var(--navbar-height) + 2rem);
  min-height: 100vh;
}

.catalogue-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
}

.catalogue-sidebar {
  position: sticky;
  top: calc(var(--navbar-height) + 2rem);
  max-height: calc(100vh - var(--navbar-height) - 4rem);
  overflow-y: auto;
}

.filter-section {
  margin-bottom: 2rem;
}

.filter-section h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.filter-option:hover {
  color: var(--text-primary);
}

.filter-option.active {
  color: var(--gold);
}

.filter-option input[type="checkbox"] {
  display: none;
}

.filter-check {
  width: 18px;
  height: 18px;
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.filter-option.active .filter-check {
  background: var(--gold);
  border-color: var(--gold);
}

.filter-option.active .filter-check::after {
  content: '✓';
  font-size: 0.75rem;
  color: var(--bg-primary);
}

.filter-count {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Price range */
.price-range {
  padding: 0.5rem 0;
}

.price-range input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  margin: 0.5rem 0;
}

.price-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
}

.price-range-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Catalogue toolbar */
.catalogue-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.catalogue-toolbar .results-count {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.catalogue-toolbar .sort-select {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.8125rem;
}

/* Search bar */
.search-bar {
  position: relative;
  margin-bottom: 1.5rem;
}

.search-bar input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.search-bar input:focus {
  border-color: var(--gold);
}

.search-bar .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.pagination button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: var(--transition);
}

.pagination button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pagination button.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
  font-weight: 600;
}

.pagination button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ── Order Success Page ── */
.success-page {
  padding-top: calc(var(--navbar-height) + 4rem);
  text-align: center;
  min-height: 100vh;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  border: 2px solid var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: var(--success);
}

.success-page h1 {
  margin-bottom: 1rem;
}

.success-page .order-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.order-details-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  max-width: 600px;
  margin: 2rem auto;
  text-align: left;
}

/* ── Sections ── */
section {
  padding: 5rem 0;
}

section.alt {
  background: var(--bg-secondary);
}

/* Prestige section */
.prestige-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.prestige-content h2 {
  margin-bottom: 1.5rem;
}

.prestige-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.prestige-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.prestige-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.prestige-feature .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}

.prestige-feature .text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.prestige-feature .text p {
  font-size: 0.875rem;
  margin: 0;
}

/* Newsletter */
.newsletter {
  text-align: center;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter h2 {
  margin-bottom: 0.5rem;
}

.newsletter p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0.75rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

/* ── Footer ── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── About Page ── */
.about-page {
  padding-top: calc(var(--navbar-height) + 2rem);
}

.about-hero {
  text-align: center;
  padding: 4rem 0;
}

.about-hero h1 {
  margin-bottom: 1rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-content img {
  border-radius: var(--radius-md);
}

.about-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
}

.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ── Contact Page ── */
.contact-page {
  padding-top: calc(var(--navbar-height) + 2rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* ── Admin Panel ── */
.admin-layout {
  display: flex;
  min-height: 100vh;
  padding-top: var(--navbar-height);
}

.admin-sidebar {
  width: 240px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  padding: 1.5rem 0;
  position: fixed;
  top: var(--navbar-height);
  bottom: 0;
  overflow-y: auto;
}

.admin-sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.admin-sidebar-link:hover {
  color: var(--text-primary);
  background: var(--bg-elevated);
}

.admin-sidebar-link.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  border-right: 2px solid var(--gold);
}

.admin-main {
  flex: 1;
  margin-left: 240px;
  padding: 2rem;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.admin-header h1 {
  font-size: 1.75rem;
}

/* Dashboard stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.stat-card .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.stat-card .value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-card .value.gold {
  color: var(--gold);
}

/* Admin tables */
.admin-table-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.admin-table-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  padding: 0.875rem 1.5rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.admin-table td {
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.admin-table .product-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-table .product-thumb {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.admin-table .product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Status badges */
.status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.status-pending { background: rgba(243, 156, 18, 0.15); color: var(--warning); }
.status-confirmed { background: rgba(52, 152, 219, 0.15); color: var(--info); }
.status-shipped { background: rgba(155, 89, 182, 0.15); color: #9b59b6; }
.status-delivered { background: rgba(46, 204, 113, 0.15); color: var(--success); }
.status-cancelled { background: rgba(231, 76, 60, 0.15); color: var(--danger); }
.status-paid { background: rgba(46, 204, 113, 0.15); color: var(--success); }
.status-failed { background: rgba(231, 76, 60, 0.15); color: var(--danger); }

/* Admin modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.modal-header h3 {
  font-size: 1.25rem;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--danger);
  border-color: var(--danger);
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.modal-lg {
  max-width: 800px;
}

/* ── Admin Login ── */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
}

.admin-login-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.admin-login-card h1 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.admin-login-card .subtitle {
  margin-bottom: 2rem;
}

.admin-login-card .form-group {
  text-align: left;
}

/* ── Utility Classes ── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Loading / Spinner ── */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.page-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

/* ── Toasts/Notifications ── */
.toast-container {
  position: fixed;
  top: calc(var(--navbar-height) + 1rem);
  right: 1rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  min-width: 300px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideIn 0.3s ease;
}

.toast.success { border-left: 3px solid var(--success); }
.toast.error { border-left: 3px solid var(--danger); }
.toast.info { border-left: 3px solid var(--info); }

.toast .message {
  font-size: 0.875rem;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ── Breadcrumbs ── */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  font-size: 0.8125rem;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs .separator {
  color: var(--text-muted);
}

.breadcrumbs .current {
  color: var(--text-secondary);
}

/* ── Scroll animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Image upload ── */
.image-upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.image-upload-zone:hover {
  border-color: var(--gold-dark);
}

.image-upload-zone.dragover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.image-preview-grid {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.image-preview {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-preview .remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--danger);
  color: var(--white);
  border: none;
  font-size: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ── Stripe Elements ── */
.stripe-element {
  padding: 0.75rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.stripe-element.StripeElement--focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

/* ================================================
   ADDITIONAL HTML-SPECIFIC CLASSES
   ================================================ */

/* ── INDEX.HTML HERO EXTRAS ── */
.hero-eyebrow {
  display: block;
  font-size: 0.8125rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  z-index: 3;
  animation: scrollBounce 2s infinite;
}

.scroll-text {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ── BRANDS MARQUEE ── */
.brands-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.brand-item {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  flex-shrink: 0;
}

.brand-item:hover {
  color: var(--gold);
}

.brand-separator {
  font-size: 0.625rem;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

.brand-separator::before {
  content: '◆';
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── COLLECTIONS SECTION ── */
.collections-section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto;
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── COLLECTION CARD INNER ELEMENTS ── */
.collection-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.collection-image img,
.collection-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  z-index: 1;
}

.collection-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  color: var(--text-primary);
}

.collection-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.collection-info p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* ── BESTSELLERS SECTION ── */
.bestsellers-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── PRESTIGE SECTION ── */
.prestige-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.prestige-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.prestige-image {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-elevated);
}

.prestige-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prestige-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

.prestige-text p {
  margin-bottom: 1rem;
}

/* ── GUARANTEES SECTION ── */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.guarantee-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.guarantee-item:hover {
  border-color: var(--gold-dark);
}

.guarantee-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}

.guarantee-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.guarantee-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── NEWSLETTER SECTION ── */
.newsletter-section {
  text-align: center;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.newsletter-input-group {
  display: flex;
  max-width: 480px;
  margin: 0 auto 1rem;
  gap: 0.75rem;
}

.newsletter-input-group input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.newsletter-input-group input:focus {
  border-color: var(--gold);
}

.newsletter-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ── FOOTER EXTRAS ── */
.footer-accent {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 700;
}

/* ── PRODUCT CARD JS-GENERATED ALIASES ── */
.product-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
}

.product-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-secondary);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-brand {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.375rem;
  display: block;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.product-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold);
}

.price-current {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
}

.price-compare {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.85em;
  margin-right: 0.5rem;
}

/* ── EMPTY AND SUCCESS STATES ── */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
}

.empty-state .icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.3;
}

.empty-state h3 {
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.empty-state p {
  margin-bottom: 2rem;
}

.success-message {
  text-align: center;
  padding: 1.5rem;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid var(--success);
  border-radius: var(--radius-md);
  color: var(--success);
  font-size: 0.9375rem;
}

/* ================================================
   CATALOGUE.HTML SPECIFIC CLASSES
   ================================================ */

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  padding: 4rem 0;
  min-height: 200px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  filter: brightness(0.6);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17,17,17,0.4), rgba(17,17,17,0.8));
}

.page-hero-content {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  z-index: 2;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.page-hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ── SIDEBAR MOBILE ── */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1500;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.active,
.sidebar-overlay.visible {
  display: block;
  opacity: 1;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.sidebar-header h4 {
  font-size: 1rem;
  font-weight: 600;
}

.sidebar-close {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.sidebar-close:hover {
  color: var(--danger);
}

/* ── FILTER GROUP ALIASES ── */
.filter-group {
  margin-bottom: 2rem;
}

.filter-group h4,
.filter-title {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.filter-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-search-wrap {
  position: relative;
  margin-bottom: 1rem;
}

.filter-search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.875rem;
}

.filter-search {
  width: 100%;
  padding: 0.625rem 0.875rem 0.625rem 2.25rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: var(--transition);
}

.filter-search:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

/* ── FILTER OPTIONS ── */
.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.filter-checkbox:hover {
  color: var(--text-primary);
}

.filter-checkbox.active {
  color: var(--gold);
}

.filter-checkbox input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.filter-checkbox.active .checkbox-custom {
  background: var(--gold);
  border-color: var(--gold);
}

.filter-checkbox.active .checkbox-custom::after {
  content: '✓';
  font-size: 0.75rem;
  color: var(--bg-primary);
}

/* ── PRICE INPUTS ── */
.price-inputs {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  margin: 0.75rem 0;
}

.price-input-wrap {
  position: relative;
  flex: 1;
}

.price-currency {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.875rem;
}

.price-input-wrap input {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.875rem;
}

.price-separator {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.price-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  margin: 0.75rem 0;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
}

.price-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ── CATALOGUE MAIN ── */
.catalogue-main {
  flex: 1;
  min-width: 0;
}

.btn-filter-toggle {
  display: none;
  width: 100%;
  margin-bottom: 1rem;
}

.btn-reset-filters {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-reset-filters:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ── TOOLBAR ── */
.toolbar-left,
.toolbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sort-select-wrap {
  position: relative;
}

.sort-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.view-toggle {
  display: flex;
  flex-direction: row;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.view-toggle button {
  padding: 0.5rem 0.75rem;
  background: var(--bg-elevated);
  border: none;
  border-right: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.view-toggle button:last-child {
  border-right: none;
}

.view-toggle button.active,
.view-toggle button:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ── EMPTY AND ACTIVE ── */
.catalogue-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.3;
}

.btn-clear-all {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-clear-all:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ── ACTIVE FILTERS ── */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold-dark);
  border-radius: 20px;
  font-size: 0.8125rem;
  color: var(--gold);
}

.active-filter-tag button {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0;
  margin: 0;
  line-height: 1;
}

/* ================================================
   PRODUCT.HTML SPECIFIC CLASSES
   ================================================ */

/* ── BREADCRUMBS BAR ── */
.breadcrumbs-bar {
  padding-top: var(--navbar-height);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.breadcrumb-category {
  display: inline;
  color: var(--text-muted);
}

.breadcrumb-category-sep {
  display: inline;
  margin: 0 0.5rem;
  color: var(--text-muted);
}

/* ── PRODUCT SECTION ── */
.product-section {
  padding-top: calc(var(--navbar-height) + 2rem);
}

/* ── GALLERY ALIASES ── */
.gallery-main {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-secondary);
  margin-bottom: 1rem;
  cursor: zoom-in;
  position: relative;
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-main:hover .gallery-main-img {
  transform: scale(1.5);
}

.gallery-zoom-hint {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--text-primary);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-main:hover .gallery-zoom-hint {
  opacity: 1;
}

.gallery-thumbs {
  display: flex;
  gap: 0.75rem;
}

.gallery-thumbs .thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
}

.gallery-thumbs .thumb.active,
.gallery-thumbs .thumb:hover {
  border-color: var(--gold);
  opacity: 1;
}

/* ── PRODUCT INFO DETAIL ── */
.product-detail-info {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
}

.product-brand-label {
  font-size: 0.875rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.product-detail-name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.product-detail-price {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.product-short-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.product-divider {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

/* ── QUICK SPECS ── */
.product-specs-quick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.spec-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.spec-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.spec-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-value {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* ── PRODUCT ACTIONS ── */
.product-actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin: 2rem 0;
}

.qty-btn {
  width: 44px;
  height: 44px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.qty-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.qty-minus {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.qty-plus {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.qty-input {
  width: 60px;
  height: 44px;
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: none;
  border-right: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
}

.btn-add-cart {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  background: var(--gold);
  color: var(--bg-primary);
}

/* ── STOCK ── */
.product-stock {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
}

/* ── GUARANTEES MINI ── */
.product-guarantees {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.mini-guarantee {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.mini-guarantee .icon {
  color: var(--gold);
  font-size: 1rem;
}

/* ── TABS ALIASES ── */
.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.tab-btn {
  padding: 1rem 1.5rem;
  background: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tabs-content {
  padding-top: 2rem;
}

.tab-panel {
  padding: 2rem 0;
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ── SPECS TABLE ── */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

.specs-table td:first-child {
  color: var(--text-muted);
  width: 40%;
}

.specs-table td:last-child {
  color: var(--text-primary);
}

/* ── DELIVERY INFO ── */
.delivery-info {
  margin: 2rem 0;
}

.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.delivery-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: var(--transition);
}

.delivery-option:hover {
  border-color: var(--gold-dark);
}

.delivery-option-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}

.delivery-option-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.delivery-option-content h5 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.delivery-option-content p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.delivery-price {
  font-weight: 600;
  color: var(--gold);
  font-size: 1rem;
}

.delivery-free {
  color: var(--success);
  font-weight: 600;
}

.delivery-policies {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.delivery-policy {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.delivery-policy .icon {
  color: var(--gold);
  margin-top: 0.125rem;
}

/* ── SIMILAR PRODUCTS ── */
.similar-products-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

/* ================================================
   CART.HTML SPECIFIC CLASSES
   ================================================ */

/* ── CART SECTION ── */
.cart-section {
  padding-top: calc(var(--navbar-height) + 2rem);
  min-height: 100vh;
}

/* ── PAGE TITLE ── */
.page-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.page-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cart-item-count {
  font-size: 0.875rem;
  color: var(--text-muted);
  background: var(--bg-card);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

/* ── CART LAYOUT ── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

/* ── CART ITEMS HEADER ── */
.cart-item-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 1.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin-bottom: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.cart-col-product,
.cart-col-price,
.cart-col-qty,
.cart-col-total,
.cart-col-remove {
  padding: 0.5rem 0;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── SUMMARY EXTRAS ── */
.summary-accent {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.summary-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
}

.summary-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.summary-divider {
  height: 1px;
  background: var(--border);
  margin: 0.75rem 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  margin-top: 0.75rem;
  padding-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.summary-total .amount {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
}

/* ── SHIPPING PROGRESS ── */
.shipping-progress {
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--bg-primary);
  border-radius: var(--radius-sm);
}

.shipping-progress-bar {
  width: 100%;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.shipping-progress-fill {
  height: 100%;
  background: var(--gold);
  transition: width 0.5s ease;
}

.shipping-progress-text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-align: center;
}

/* ── CTA ── */
.btn-checkout {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  background: var(--gold);
  color: var(--bg-primary);
  margin-top: 1.5rem;
}

/* ── TRUST BADGES ── */
.summary-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.trust-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.trust-badge .icon {
  color: var(--gold);
}

/* ================================================
   CHECKOUT.HTML SPECIFIC CLASSES
   ================================================ */

/* ── STEPS ── */
.step {
  flex: 1;
  text-align: center;
  padding: 1rem;
  position: relative;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.step.active {
  color: var(--gold);
}

.step.completed {
  color: var(--success);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 0.5rem;
  position: relative;
}

.step.active .step-number {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--bg-primary);
}

.step.completed .step-number {
  border-color: var(--success);
  background: var(--success);
  color: var(--white);
}

.step-num {
  display: inline;
}

.step.completed .step-num {
  display: none;
}

.step-check {
  display: none;
  width: 14px;
  height: 14px;
}

.step.completed .step-check {
  display: inline-block;
}

.step-label {
  display: inline;
}

.step-line {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: -1;
}

.step.active .step-line {
  background: var(--gold);
}

.step.completed .step-line {
  background: var(--success);
}

/* ── CHECKOUT LAYOUT ── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: start;
}

/* ── FORMS ── */
.checkout-forms {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checkout-step-panel {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.checkout-step-panel.active {
  display: block;
}

.panel-header {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn-prev-step {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-prev-step:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ── SHIPPING ── */
.form-section-divider {
  margin: 2rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.form-section-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.shipping-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shipping-method {
  display: block;
}

.shipping-method-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.shipping-method-card:hover {
  border-color: var(--gold-dark);
}

.shipping-method-card.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.shipping-method-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shipping-method-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.shipping-method-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.shipping-method-price {
  font-weight: 600;
  color: var(--gold);
}

.shipping-method-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.shipping-method-radio {
  display: none;
}

/* ── PAYMENT ── */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-method {
  display: block;
}

.payment-method-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.payment-method-card:hover {
  border-color: var(--gold-dark);
}

.payment-method-card.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.payment-method-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}

.payment-method-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.payment-method-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.payment-method-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.payment-method-radio {
  display: none;
}

/* ── STRIPE ── */
.stripe-card-section {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: none;
}

.stripe-card-section.active {
  display: block;
}

.stripe-card-element {
  padding: 0.75rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.stripe-card-errors {
  font-size: 0.75rem;
  color: var(--danger);
  margin-top: 0.5rem;
}

/* ── FORM PAYMENT ── */
.form-payment-section {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: none;
}

.form-payment-section.active {
  display: block;
}

.payment-info-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.payment-info-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.payment-bank-details {
  font-family: 'Courier New', monospace;
  font-size: 0.8125rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  white-space: pre-wrap;
  color: var(--text-secondary);
}

/* ── AGREEMENT ── */
.checkout-agreement {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.checkbox-label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.checkbox-text a {
  color: var(--gold);
}

.btn-pay {
  width: 100%;
  padding: 1rem 3rem;
  font-size: 1rem;
  background: var(--gold);
  color: var(--bg-primary);
}

/* ── CHECKOUT SUMMARY ── */
.checkout-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--navbar-height) + 2rem);
}

.checkout-summary-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.summary-secure {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ================================================
   ORDER-SUCCESS.HTML SPECIFIC CLASSES
   ================================================ */

.order-success-section {
  padding-top: calc(var(--navbar-height) + 4rem);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-success-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.success-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.success-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.success-fade-in-delay {
  animation: fadeInUp 0.6s ease 0.2s both;
}

.success-fade-in-delay-2 {
  animation: fadeInUp 0.6s ease 0.4s both;
}

.success-fade-in-delay-3 {
  animation: fadeInUp 0.6s ease 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.order-number-box {
  display: inline-block;
  padding: 2rem 3rem;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.order-number-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.order-number-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.success-info {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 2rem 0;
  line-height: 1.7;
}

.order-details-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 3rem 0 1.5rem;
  color: var(--text-primary);
}

.order-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.order-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.order-totals {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.order-item-name {
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.order-item-price {
  color: var(--gold);
  font-weight: 600;
}

.success-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

/* ================================================
   ABOUT.HTML SPECIFIC CLASSES
   ================================================ */

.about-story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 3rem 0;
}

.about-values-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.about-value-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.about-cta-block {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  margin: 3rem 0;
}

/* ================================================
   ADDITIONAL MISSING CLASSES
   ================================================ */

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

/* ── CART BADGE BOUNCE ── */
@keyframes badgeBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.cart-badge.bounce {
  animation: badgeBounce 0.3s ease;
}

/* ── TOAST EXTRAS ── */
.toast__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.toast__icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast__message {
  font-size: 0.875rem;
  color: var(--text-primary);
}

.toast__close {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: var(--transition);
}

.toast__close:hover {
  color: var(--text-primary);
}

.toast--visible {
  opacity: 1;
  transform: translateX(0);
}

.toast--leaving {
  animation: slideOut 0.3s ease forwards;
}

@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

.toast--success {
  border-left: 3px solid var(--success);
}

.toast--error {
  border-left: 3px solid var(--danger);
}

.toast--info {
  border-left: 3px solid var(--info);
}

/* ── FADE IN SECTION ── */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Additional Scroll Animations (app.js observers) ── */
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.stagger-children > *.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Toast progress bar & body ── */
.toast__body {
  flex: 1;
  min-width: 0;
}

.toast__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  animation: toastProgress linear forwards;
  width: 100%;
  transform-origin: left;
}

@keyframes toastProgress {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

/* Badge bounce animation for cart */
@keyframes badgeBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.cart-badge.bounce {
  animation: badgeBounce 0.4s ease;
}

/* ── Responsive ── */

/* Tablet */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .hero-content h1 { font-size: 3rem; }

  /* ── Section padding: reduce on tablet ── */
  section {
    padding: 4rem 0;
  }

  .catalogue-layout {
    grid-template-columns: 1fr;
  }

  .catalogue-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    max-height: 100vh;
    background: var(--bg-primary);
    z-index: 1600;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 0 1.25rem 1.25rem;
    border-right: 1px solid var(--border);
  }

  .catalogue-sidebar.visible {
    transform: translateX(0);
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }

  /* ── Cart & Checkout layout ── */
  .cart-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

  .prestige-grid,
  .prestige-layout,
  .about-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .prestige-image {
    max-height: 400px;
  }

  /* ── Page hero reduced on tablet ── */
  .page-hero {
    padding: 3rem 0;
    min-height: 160px;
  }

  .page-hero-title {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-sidebar {
    width: 60px;
    overflow: hidden;
  }

  .admin-sidebar-link span {
    display: none;
  }

  .admin-main {
    margin-left: 60px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --navbar-height: 64px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  /* ── Navbar: fully opaque on mobile for readability ── */
  .navbar {
    background: rgba(10, 10, 10, 0.97);
  }

  .navbar.scrolled {
    background: #0a0a0a;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(5, 5, 5, 0);
    visibility: hidden;
    pointer-events: none;
    transition: background 0.4s ease, visibility 0s linear 0.6s;
    z-index: 1001;
    padding: 0 2rem;
  }

  .navbar-links.open {
    background: rgba(5, 5, 5, 0.98);
    visibility: visible;
    pointer-events: auto;
    transition: background 0.4s ease, visibility 0s linear 0s;
  }

  .navbar-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.875rem 0;
    width: auto;
    text-align: center;
    border-bottom: none;
    color: var(--text-secondary);
    position: static;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
  }

  .navbar-links.open a {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger: each link appears 0.08s after the previous */
  .navbar-links.open a:nth-child(1) { transition-delay: 0.1s; }
  .navbar-links.open a:nth-child(2) { transition-delay: 0.18s; }
  .navbar-links.open a:nth-child(3) { transition-delay: 0.26s; }
  .navbar-links.open a:nth-child(4) { transition-delay: 0.34s; }
  .navbar-links.open a:nth-child(5) { transition-delay: 0.42s; }
  .navbar-links.open a:nth-child(6) { transition-delay: 0.5s; }

  /* Active link: gold + small line below */
  .navbar-links a.active,
  .navbar-links a:hover {
    color: var(--gold);
  }

  .navbar-links a.active::after {
    content: '';
    position: static;
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin: 0.375rem auto 0;
    left: auto;
    right: auto;
    bottom: auto;
  }

  /* ── Sections: reduce padding on mobile ── */
  section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  /* ── Hero responsive 768px ── */
  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding: 0 1.25rem;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-content .subtitle {
    font-size: 0.9375rem;
    margin-bottom: 1.75rem;
  }

  .hero-content .btn-lg {
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
  }

  /* Hero video: cover properly on mobile + brighter for visibility */
  .hero-video-wrapper iframe,
  .hero-video-wrapper video {
    opacity: 0.55;
    filter: brightness(0.7);
  }

  .hero-video-wrapper iframe {
    width: 200%;
    height: 200%;
    min-height: 100vh;
  }

  .hero-video-wrapper video {
    width: 100%;
    height: 100%;
  }

  .hero-overlay {
    background: linear-gradient(to bottom, rgba(10,10,10,0.15), rgba(10,10,10,0.7));
  }

  .hero-bg {
    opacity: 0.5;
    filter: brightness(0.65);
  }

  /* ── Page hero (catalogue, product, etc.) ── */
  .page-hero {
    padding: 2.5rem 0;
    min-height: 140px;
  }

  .page-hero-title {
    font-size: 1.75rem;
  }

  .page-hero-subtitle {
    font-size: 0.875rem;
  }

  /* ── Brands banner 768px ── */
  .brands-track {
    gap: 2rem;
    animation-duration: 20s;
  }

  .brand-item {
    font-size: 0.9375rem;
  }

  .brands-list {
    gap: 1.5rem;
  }

  .brands-list span {
    font-size: 0.875rem;
  }

  /* ── Products grid ── */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .collections-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* ── Guarantees 768px ── */
  .guarantees-grid {
    gap: 1rem;
  }

  .guarantee-item {
    padding: 1.25rem;
    gap: 1rem;
  }

  /* ── Prestige / Excellence section ── */
  .prestige-section {
    padding: 3rem 0;
  }

  .prestige-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .prestige-image {
    max-height: 300px;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
  }

  .prestige-content .section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .prestige-text {
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  .prestige-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .prestige-content h2 {
    margin-bottom: 1rem;
  }

  .guarantee-item h4 {
    font-size: 0.9375rem;
  }

  .guarantee-item p {
    font-size: 0.8125rem;
  }

  /* ── Footer mobile ── */
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-accent {
    margin: 0 auto 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .footer-brand p {
    font-size: 0.8125rem;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-col h4 {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .footer-col ul li {
    margin-bottom: 0.375rem;
  }

  .footer-col ul li a {
    font-size: 0.8125rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.75rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
  }

  /* ── Catalogue sidebar slide-in ── */
  .catalogue-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    max-height: 100vh;
    background: var(--bg-primary);
    z-index: 1600;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 0 1.25rem 1.25rem;
    display: block;
    flex-wrap: nowrap;
    border-right: 1px solid var(--border);
  }

  .catalogue-sidebar.visible {
    transform: translateX(0);
  }

  .filter-section {
    min-width: unset;
    flex: unset;
  }

  /* ── Product detail ── */
  .product-detail-name {
    font-size: 1.75rem;
  }

  .product-detail-price {
    font-size: 1.5rem;
  }

  .product-specs-quick {
    grid-template-columns: 1fr;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-actions .btn {
    width: 100%;
  }

  /* ── Tabs responsive ── */
  .tabs-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tab-btn {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* ── Specs table ── */
  .specs-table td:first-child {
    width: 45%;
    font-size: 0.8125rem;
  }

  .specs-table td {
    font-size: 0.8125rem;
    padding: 0.5rem 0;
  }

  /* ── Cart ── */
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-item {
    flex-direction: column;
    text-align: center;
  }

  .cart-item-header {
    display: none;
  }

  .cart-item-image {
    width: 80px;
    height: 80px;
  }

  /* ── Checkout ── */
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-steps {
    flex-direction: row;
    gap: 0;
  }

  .step {
    padding: 0.75rem 0.5rem;
    font-size: 0.75rem;
  }

  .step-label {
    display: none;
  }

  .step-line {
    display: none;
  }

  .checkout-summary {
    position: static;
  }

  /* ── Cart grid (old) ── */
  .cart-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  /* ── Toast: mobile-friendly ── */
  .toast-container {
    right: 0.5rem;
    left: 0.5rem;
  }

  .toast {
    min-width: auto;
    max-width: 100%;
  }

  /* ── Breadcrumbs ── */
  .breadcrumbs {
    flex-wrap: wrap;
    font-size: 0.75rem;
    gap: 0.25rem;
  }

  /* ── Newsletter ── */
  .newsletter-form {
    flex-direction: column;
  }

  /* ── Contact / About ── */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  /* ── Forms ── */
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-input {
    font-size: 1rem;
    padding: 0.875rem 1rem;
  }

  /* ── Buttons touch-friendly ── */
  .btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
    min-height: 44px;
  }

  /* ── Order success ── */
  .success-title {
    font-size: 2rem;
  }

  .success-subtitle {
    font-size: 1rem;
  }

  /* ── Summary ── */
  .summary-title {
    font-size: 1.25rem;
  }

  /* ── Admin ── */
  .admin-sidebar {
    display: none;
  }

  .admin-main {
    margin-left: 0;
  }

  .admin-mobile-nav {
    display: flex;
    overflow-x: auto;
    gap: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .admin-mobile-nav button {
    flex-shrink: 0;
    padding: 0.75rem 0.75rem;
    font-size: 0.6875rem;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
  }

  .admin-mobile-nav button.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
  }
}

/* Small mobile */
@media (max-width: 480px) {

  .navbar-links a {
    font-size: 1.625rem;
  }

  /* ── Sections: even tighter padding ── */
  section {
    padding: 2.5rem 0;
  }

  .container {
    padding: 0 0.75rem;
  }

  /* ── Hero 480px ── */
  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding: 0 0.75rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .hero-content .subtitle {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }

  .hero-content .btn-lg {
    width: 100%;
    max-width: 280px;
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }

  /* Hero video: properly cover on small screens */
  .hero-video-wrapper iframe {
    width: 300%;
    height: 300%;
  }

  /* ── Page hero 480px ── */
  .page-hero {
    padding: 2rem 0;
    min-height: 100px;
  }

  .page-hero-title {
    font-size: 1.5rem;
  }

  /* ── Brands 480px ── */
  .brands-track {
    gap: 1.5rem;
    animation-duration: 15s;
  }

  .brand-item {
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
  }

  /* ── Products grid: 2 columns on 480px (not 1) ── */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .product-card-info {
    padding: 0.75rem;
  }

  .product-card-name {
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
  }


  .product-card-price {
    font-size: 1rem;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* ── Guarantees 480px — single column ── */
  .guarantees-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-item {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .guarantee-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .guarantee-item h4 {
    font-size: 0.875rem;
  }

  .guarantee-item p {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  /* ── Prestige 480px ── */
  .prestige-section {
    padding: 2.5rem 0;
  }

  .prestige-layout {
    gap: 1.5rem;
  }

  .prestige-image {
    max-height: 220px;
    aspect-ratio: 16/9;
  }

  .prestige-content .section-title,
  .prestige-content h2 {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .prestige-text,
  .prestige-content p {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  /* ── Footer 480px ── */
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-grid {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-logo {
    font-size: 1.125rem;
  }

  .footer-brand p {
    font-size: 0.75rem;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h4 {
    font-size: 0.6875rem;
    margin-bottom: 0.5rem;
  }

  .footer-col ul li a,
  .footer-col ul li {
    font-size: 0.75rem;
  }

  .footer-bottom {
    padding-top: 1rem;
    font-size: 0.6875rem;
  }

  /* ── Product detail 480px ── */
  .product-detail-name {
    font-size: 1.5rem;
  }

  .product-detail-price {
    font-size: 1.375rem;
  }

  .product-short-desc {
    font-size: 0.875rem;
  }

  .product-gallery-thumbs .thumb {
    width: 56px;
    height: 56px;
  }

  /* ── Cart 480px ── */
  .cart-item {
    padding: 1rem;
    gap: 1rem;
  }

  .cart-item-image {
    width: 64px;
    height: 64px;
  }

  /* ── Checkout 480px ── */
  .checkout-steps {
    gap: 0;
  }

  .step {
    padding: 0.5rem 0.25rem;
    font-size: 0.6875rem;
  }

  .step-number {
    width: 24px;
    height: 24px;
    font-size: 0.625rem;
    margin-right: 0.25rem;
  }

  .btn-pay {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }

  /* ── Tabs 480px ── */
  .tab-btn {
    padding: 0.625rem 0.75rem;
    font-size: 0.6875rem;
  }

  /* ── Modal 480px ── */
  .modal {
    width: 95%;
    margin: 0.5rem;
    max-height: 85vh;
  }

  /* ── Toast 480px ── */
  .toast-container {
    right: 0.5rem;
    left: 0.5rem;
    top: calc(var(--navbar-height) + 0.5rem);
  }

  .toast {
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
  }

  /* ── Order success 480px ── */
  .success-title {
    font-size: 1.5rem;
  }

  .success-subtitle {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }

  /* ── Navbar brand smaller ── */
  .navbar-brand {
    font-size: 1.375rem;
  }
}

/* Extra small mobile (iPhone SE, Galaxy S) */
@media (max-width: 375px) {
  .navbar-links a {
    font-size: 1.375rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content .subtitle {
    font-size: 0.8125rem;
  }

  .products-grid {
    gap: 0.375rem;
  }

  .product-card-info {
    padding: 0.5rem;
  }

  .product-card-name {
    font-size: 0.8125rem;
  }

  .product-card-price {
    font-size: 0.9375rem;
  }


  .navbar-brand {
    font-size: 1.25rem;
  }

  .page-hero-title {
    font-size: 1.25rem;
  }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }

  /* ── Prestige 375px ── */
  .prestige-image {
    max-height: 180px;
  }

  .prestige-content .section-title,
  .prestige-content h2 {
    font-size: 1.125rem;
  }

  .guarantee-item {
    padding: 0.75rem;
  }

  /* ── Footer 375px ── */
  .footer {
    padding: 1.5rem 0 1rem;
  }

  .footer-grid {
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .footer-logo {
    font-size: 1rem;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }
}

/* ── Touch devices (no hover) ── */
@media (hover: none) and (pointer: coarse) {
  /* Product card overlay always visible on touch */
  .product-card .product-card-overlay {
    opacity: 0.7 !important;
  }

  .product-card .product-card-overlay span {
    transform: translateY(0) !important;
  }

  /* Disable hover lift on cards */
  .product-card:hover {
    transform: none;
  }

  /* Disable CSS hover zoom on gallery (JS double-tap handles it) */
  .product-gallery-main:hover img {
    transform: none;
  }

  /* Tactile active state */
  .btn:active,
  .product-card:active {
    transform: scale(0.98);
  }
}

/* ── Promo Code ── */
.promo-code-section {
  margin: 1rem 0;
}

.promo-input-row {
  display: flex;
  gap: 0.5rem;
}

.promo-input-row .form-input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.promo-input-row .btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

#promo-feedback {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.4;
}

#promo-feedback.success {
  color: var(--success, #2ecc71);
}

#promo-feedback.error {
  color: var(--danger, #e74c3c);
}

#promo-feedback .promo-remove {
  background: none;
  border: none;
  color: var(--danger, #e74c3c);
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.8rem;
  padding: 0;
  margin-left: 0.5rem;
}

.promo-discount-row span {
  color: var(--success, #2ecc71);
}

/* ── Accessibility ── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0a0a0a;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-nav:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Print ── */
@media print {
  .navbar, .footer, .admin-sidebar, .btn, .cart-icon { display: none; }
  body { background: white; color: black; }
  .admin-main { margin-left: 0; }
}
