/* ============================================================
   THE DICE TAVERN - Dark Military/Gothic Theme
   ============================================================ */

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --bg-surface: #1e1e1e;
  --gold: #c9a84c;
  --gold-light: #e0c56a;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --accent-red: #8b2020;
  --accent-red-light: #c03030;
  --text: #e8e8e8;
  --text-muted: #888;
  --text-dim: #555;
  --success: #2d8a4e;
  --info-blue: #2563eb;
  --premium-purple: #7c3aed;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-gold: 0 0 20px rgba(201, 168, 76, 0.15);
  --shadow-lift: 0 12px 40px rgba(0,0,0,0.5);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Subtle grain texture on body */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }

button {
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
}

/* ===== SCROLLBAR ===== */
html {
  scrollbar-width: auto;
  scrollbar-color: rgba(201,168,76,0.78) rgba(255,255,255,0.06);
  scrollbar-gutter: stable;
}
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-left: 1px solid rgba(255,255,255,0.04);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(201,168,76,0.92), rgba(154,119,36,0.92));
  border-radius: 999px;
  border: 2px solid rgba(10,10,10,0.95);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(225,193,103,0.98), rgba(182,137,42,0.98));
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 12px;
}

.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: var(--text);
  transition: all var(--transition);
}
.mobile-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-nav-toggle:hover {
  color: var(--gold);
  border-color: rgba(201,168,76,0.35);
}
.mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.logo img {
  height: 100px;
  width: auto;
  margin-top: 18px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0 0px rgba(201,168,76,0));
}
.logo:hover img {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.5)) drop-shadow(0 0 40px rgba(201,168,76,0.2));
}
.logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: transform 0.4s ease;
}
.logo:hover::after { transform: translateX(-50%) scaleX(1); }
.logo {
  position: relative;
  overflow: hidden;
  padding-bottom: 4px;
}

.main-nav { display: flex; gap: 32px; margin-top: 6px; }

.mobile-nav-panel {
  display: none;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
}

.nav-link {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); text-shadow: 0 0 20px rgba(201,168,76,0.3); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-login-btn {
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--bg);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-login-btn:hover { background: transparent; color: var(--gold); }

.cart-btn {
  position: relative;
  background: none;
  color: var(--text);
  padding: 10px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.cart-btn:hover { color: var(--gold); background: rgba(201,168,76,0.08); }

.cart-wrapper { position: relative; }

.cart-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 360px;
  background: #121212;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  z-index: 200;
  overflow: hidden;
}
.cart-dropdown.open { display: block; }

.cart-dd-empty {
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.cart-dd-items {
  max-height: 300px;
  overflow-y: auto;
  padding: 8px 0;
}
.cart-dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cart-dd-item:last-child { border-bottom: none; }
.cart-dd-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.cart-dd-info { flex: 1; min-width: 0; }
.cart-dd-name {
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-dd-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.cart-dd-disc { color: var(--gold); }
.cart-dd-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.cart-dd-line {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}
.cart-dd-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text);
}
.cart-dd-qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--text);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.cart-dd-qty-btn:hover { border-color: var(--gold); color: var(--gold); }

.cart-dd-footer {
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.cart-dd-total {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.cart-dd-checkout {
  width: 100%;
  padding: 10px;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0a0a0a;
  background: var(--gold);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cart-dd-checkout:hover { opacity: 0.85; }

@media (max-width: 480px) {
  .cart-dropdown { width: 300px; right: -10px; }
}

.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--accent-red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
}
.cart-count.bump { animation: cartBump 0.4s ease; }
@keyframes cartBump {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* ===== HERO BANNER ===== */
/* ===== HERO - FORGE YOUR BATTLEFIELD ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #050505;
  padding-top: 100px;
  padding-bottom: 80px;
}

/* Layered atmospheric background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(139,32,32,0.2) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 15%, rgba(201,168,76,0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 120%, rgba(139,32,32,0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 40%, rgba(201,168,76,0.04) 0%, transparent 60%);
  z-index: 1;
}

/* Floating ember particles via CSS */
.hero::after {
  content: '';
  position: absolute;
  inset: -100%;
  background:
    radial-gradient(2px 2px at 10% 20%, rgba(255,160,40,0.5) 0%, transparent 100%),
    radial-gradient(3px 3px at 25% 60%, rgba(201,168,76,0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 40% 15%, rgba(255,120,20,0.35) 0%, transparent 100%),
    radial-gradient(3px 3px at 55% 75%, rgba(201,168,76,0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 70% 35%, rgba(255,160,40,0.4) 0%, transparent 100%),
    radial-gradient(3px 3px at 85% 80%, rgba(201,168,76,0.35) 0%, transparent 100%),
    radial-gradient(2px 2px at 95% 10%, rgba(255,120,20,0.3) 0%, transparent 100%),
    radial-gradient(4px 4px at 50% 50%, rgba(139,32,32,0.15) 0%, transparent 100%),
    radial-gradient(2px 2px at 30% 90%, rgba(255,80,20,0.25) 0%, transparent 100%),
    radial-gradient(3px 3px at 60% 45%, rgba(201,168,76,0.2) 0%, transparent 100%);
  animation: emberDrift 25s linear infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes emberDrift {
  0%   { transform: translate(0, 0) rotate(0deg); }
  20%  { transform: translate(-3%, -5%) rotate(1deg); }
  40%  { transform: translate(2%, -8%) rotate(-1deg); }
  60%  { transform: translate(-1%, -4%) rotate(2deg); }
  80%  { transform: translate(3%, -6%) rotate(-1deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* Scanlines for gritty military feel */
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  z-index: 2;
  pointer-events: none;
}

/* Smoke wisps */
.hero-smoke {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-smoke::before,
.hero-smoke::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  left: -10%;
  top: -10%;
}
.hero-smoke::before {
  background: radial-gradient(ellipse at 25% 80%, rgba(255,255,255,0.05) 0%, transparent 55%);
  animation: smokeFloat 14s ease-in-out infinite;
}
.hero-smoke::after {
  background: radial-gradient(ellipse at 75% 20%, rgba(201,168,76,0.04) 0%, transparent 55%);
  animation: smokeFloat 18s ease-in-out infinite reverse;
}
@keyframes smokeFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-40px) scale(1.15); opacity: 1; }
}

/* ===== BATTLE FX — WARZONE ASH & SMOKE ===== */
.hero-battlefx {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

/* Tactical grid overlay */
.hero-battlefx::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.7;
}

/* Falling ash particle */
.fx-ash {
  position: absolute;
  border-radius: 50%;
  background: rgba(180,170,150,0.4);
  animation: ashFall linear forwards;
  opacity: 0;
}
@keyframes ashFall {
  0%   { opacity: 0; transform: translateY(0) translateX(0) rotate(0deg); }
  10%  { opacity: var(--ash-opacity, 0.4); }
  50%  { transform: translateY(50vh) translateX(var(--drift-x, 30px)) rotate(180deg); }
  90%  { opacity: var(--ash-opacity, 0.3); }
  100% { opacity: 0; transform: translateY(110vh) translateX(calc(var(--drift-x, 30px) * 1.8)) rotate(360deg); }
}

/* Rolling battlefield smoke wisps */
.fx-smoke {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,190,170,var(--smoke-alpha, 0.08)) 0%, transparent 70%);
  animation: smokeDrift linear forwards;
  opacity: 0;
  filter: blur(30px);
}
@keyframes smokeDrift {
  0%   { opacity: 0; transform: translateX(-20%) scale(0.6); }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(120vw) scale(1.4); }
}
@keyframes smokeDriftRight {
  0%   { opacity: 0; transform: translateX(20%) scale(0.6); }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(-120vw) scale(1.4); }
}

/* JS-driven ember canvas container */
.hero-embers {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.ember {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  animation: emberRise linear forwards;
  opacity: 0;
}
@keyframes emberRise {
  0%   { opacity: 0; transform: translateY(0) translateX(0) scale(0.5); }
  10%  { opacity: 1; }
  70%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-100vh) translateX(0) scale(0); }
}
@keyframes emberRiseDrift {
  0%   { opacity: 0; transform: translateY(0) translateX(0) scale(0.5); }
  10%  { opacity: 1; }
  50%  { opacity: 0.8; transform: translateY(-50vh) translateX(var(--drift, 0px)) scale(0.8); }
  100% { opacity: 0; transform: translateY(-105vh) translateX(calc(var(--drift, 0px) * 1.5)) scale(0); }
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 860px;
  padding: 0 24px;
}

/* Badge / established line */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  margin-bottom: 32px;
  animation: heroReveal 0.8s ease-out 0.2s both;
}
.hero-badge-icon {
  font-size: 1rem;
  color: var(--gold);
}
.hero-badge-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
}

/* Staggered title lines */
.hero-title {
  margin-bottom: 24px;
}
.hero-line {
  display: block;
  font-size: clamp(2.2rem, 7vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  opacity: 0;
  transform: translateY(40px);
}
.hero-line-1 {
  color: var(--text);
  animation: heroLineIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
.hero-line-2 {
  color: var(--gold);
  animation: heroLineIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}
.hero-line-3 {
  color: var(--text);
  animation: heroLineIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}
@keyframes heroLineIn {
  0% { opacity: 0; transform: translateY(40px) skewY(2deg); }
  100% { opacity: 1; transform: translateY(0) skewY(0); }
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.8;
  opacity: 0;
  animation: heroReveal 0.8s ease-out 1.1s forwards;
}
.hero-subtitle strong { color: var(--gold); font-weight: 600; }

@keyframes heroReveal {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Action buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  opacity: 0;
  animation: heroReveal 0.8s ease-out 1.3s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.hero-cta-arrow {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}
.hero-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(201,168,76,0.4), 0 0 80px rgba(201,168,76,0.15);
}
.hero-cta:hover .hero-cta-arrow { transform: translateX(5px); }
.hero-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}
.hero-cta:hover::before { left: 100%; }

.hero-cta-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-cta-secondary:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
}

/* Trust indicators */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  animation: heroReveal 0.8s ease-out 1.5s forwards;
}
.hero-trust-item {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-trust-stars {
  color: var(--gold);
  margin-right: 6px;
  font-size: 0.85rem;
}
.hero-trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.15);
}

/* Bottom gradient fade */
.hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  z-index: 3;
  pointer-events: none;
}

/* ===== STATS BAR ===== */
/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Product card stagger reveal - applied via JS, hover handled separately */

/* Counter animation for stats */
.stat-value {
  display: inline-block;
}
.stat-item {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-item.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}
/* Animated gold line across stats bar */
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: statsShine 6s ease-in-out infinite;
}
@keyframes statsShine {
  0% { left: -50%; }
  100% { left: 150%; }
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}
.stat-value {
  font-family: 'Cinzel', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ===== SECTION HEADINGS ===== */
.section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 12px auto 0;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.home-workshop-band {
  position: relative;
  padding: 10px 0 52px;
  overflow: hidden;
}
.home-workshop-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(201,168,76,0.08), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(201,168,76,0.05), transparent 24%);
  pointer-events: none;
}
.home-workshop-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 2rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  z-index: 1;
}
.home-workshop-shell::after {
  display: none;
}
.home-workshop-copy .section-title,
.home-workshop-copy .section-subtitle {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.home-workshop-copy .section-title::after {
  margin-left: 0;
}
.home-workshop-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.home-workshop-point {
  position: relative;
  padding: 18px 8px 18px 18px;
  border: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}
.home-workshop-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  background: rgba(201,168,76,0.14);
  color: var(--gold);
  font-size: 1rem;
}
.home-workshop-point strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: 0.95rem;
}
.home-workshop-point p {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.home-all-products-shell {
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    radial-gradient(circle at top center, rgba(201,168,76,0.07), transparent 62%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}
.home-all-products-shell .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.home-all-products-shell .product-card-body {
  padding: 18px;
}
.home-all-products-shell .product-card-name {
  font-size: 0.95rem;
}
.home-all-products-shell .product-card-price {
  font-size: 1.08rem;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  opacity: 1 !important;
  transform: none !important;
}
.product-card.revealed {
  opacity: 1;
  transform: translateY(0);
}
.product-card.revealed:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.2);
  box-shadow: var(--shadow-gold), var(--shadow-lift);
}

.product-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-surface);
  cursor: pointer;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card-img img.is-fallback,
.cart-dd-img.is-fallback,
.cart-item-img img.is-fallback,
.modal-product-img img.is-fallback,
.search-result-img.is-fallback,
.pd-main-image img.is-fallback,
.pd-thumb img.is-fallback,
.pd-deal-img.is-fallback {
  object-fit: contain;
  padding: 12px;
  background:
    radial-gradient(circle at center, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.02) 58%, transparent 100%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}
.pd-main-image img.is-fallback {
  padding: 24px;
}
.product-card:hover .product-card-img img {
  transform: scale(1.05);
}
.product-card-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(7,8,12,0.72);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.product-card-gallery-btn:hover {
  background: rgba(201,168,76,0.92);
  color: var(--bg-dark);
  border-color: var(--gold);
}
.product-card:hover .product-card-gallery-btn,
.product-card:focus-within .product-card-gallery-btn {
  opacity: 1;
}
.product-card-gallery-btn-left { left: 10px; }
.product-card-gallery-btn-right { right: 10px; }
.product-card-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}
.product-card-gallery-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.16);
  cursor: pointer;
  transition: all 0.2s ease;
}
.product-card-gallery-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(201,168,76,0.35);
}
.product-card-gallery-count {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(7,8,12,0.62);
  color: rgba(255,255,255,0.84);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Product Badges */
.badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  z-index: 2;
}
.badge-bestseller { background: var(--gold); color: var(--bg-dark); }
.badge-popular { background: var(--info-blue); color: #fff; }
.badge-low-stock { background: var(--accent-red); color: #fff; }
.badge-new { background: var(--success); color: #fff; }
.badge-premium { background: var(--premium-purple); color: #fff; }

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.review-count { font-size: 0.75rem; color: var(--text-muted); }

.product-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.shop-card-qty {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  width: fit-content;
}
.shop-card-qty-btn {
  width: 34px;
  height: 34px;
  background: var(--bg-surface);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.shop-card-qty-btn:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.shop-card-qty-btn:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.shop-card-qty-btn:hover {
  background: var(--gold);
  color: var(--bg-dark);
}
.shop-card-qty-value {
  min-width: 42px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-add-quick {
  width: 100%;
  padding: 10px;
  background: var(--bg-surface);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all var(--transition);
}
.btn-add-quick:hover {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

/* ===== CATEGORY FILTERS ===== */
/* ===== CATEGORY GRID ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(201,168,76,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.category-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.1);
}
.category-card:hover::before { opacity: 1; }
.category-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
  filter: grayscale(0.5);
  transition: all 0.3s ease;
}
.category-card:hover .category-icon {
  filter: grayscale(0);
  transform: scale(1.15);
}
.category-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.category-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== HEADER SEARCH ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.search-bar {
  position: relative;
  display: flex;
  align-items: center;
}
.search-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  padding: 8px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.search-toggle:hover { border-color: var(--gold); color: var(--gold); }
.search-input {
  width: 0;
  padding: 0;
  border: none;
  background: var(--bg-surface);
  color: var(--text);
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  font-family: 'Inter', sans-serif;
}
.search-bar.open .search-input {
  width: 240px;
  padding: 8px 14px;
  margin-left: 8px;
  border: 1px solid rgba(201,168,76,0.3);
  opacity: 1;
}
.search-input:focus { outline: none; border-color: var(--gold); }
.search-input::placeholder { color: var(--text-dim); }

.search-results {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  max-height: 400px;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  margin-top: 8px;
  display: none;
  z-index: 200;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.search-results.visible { display: block; }

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--bg-surface); }
.search-result-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 4px;
}
.search-result-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.search-result-price {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}
.search-no-results {
  padding: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== SHOP CONTROLS ===== */
.shop-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-bottom: 18px;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(17, 20, 25, 0.92), rgba(11, 13, 17, 0.9));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 38px rgba(0,0,0,0.18);
}
.shop-controls-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.shop-controls-group-categories {
  flex: 1 1 520px;
  min-width: 0;
}
.shop-controls-group-search {
  flex: 0 1 260px;
  justify-content: flex-end;
}
.shop-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 6px 16px;
  transition: border-color 0.3s ease;
  min-width: 220px;
}
.shop-search:focus-within { border-color: rgba(201,168,76,0.4); }
.shop-search svg { color: var(--text-muted); flex-shrink: 0; }
.shop-search-input {
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  width: 180px;
  outline: none;
}
.shop-search-input::placeholder { color: var(--text-dim); }

/* ===== REVIEWS ETSY LINK ===== */
.reviews-etsy-link {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  transition: all 0.3s ease;
}
.reviews-etsy-link:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ===== SORT BAR + PRICE SLIDER ===== */
.shop-sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}
.shop-sort-main {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  flex: 1 1 640px;
  min-width: 0;
}
.shop-sort-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 1 auto;
  margin-left: auto;
}
.shop-quick-sorts {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.shop-sort-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.18);
  background: rgba(201,168,76,0.05);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.shop-sort-chip:hover {
  color: var(--text);
  border-color: rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.1);
}
.shop-sort-chip.active {
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(201,168,76,0.18);
}
.sort-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sort-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.sort-label strong { color: var(--gold); }
.sort-select {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  padding: 7px 12px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}
.sort-select:focus { outline: none; border-color: var(--gold); }
.sort-select option { background: var(--bg-dark); color: var(--text); }

.price-slider-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 6px;
  flex: 1;
  min-width: 200px;
}
.price-slider {
  flex: 1;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--bg-surface);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  position: relative;
}
.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 10px rgba(201,168,76,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: -8px;
}
.price-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(201,168,76,0.5);
}
.price-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 10px rgba(201,168,76,0.3);
}
.price-slider::-moz-range-track {
  background: linear-gradient(90deg, var(--gold) 0%, var(--bg-surface) 100%);
  height: 4px;
  border-radius: 4px;
}
.price-slider::-webkit-slider-runnable-track {
  background: linear-gradient(90deg, var(--gold) 0%, var(--bg-surface) 100%);
  height: 4px;
  border-radius: 4px;
}

.results-count {
  font-size: 0.8rem;
  color: var(--text-dim);
  white-space: nowrap;
  padding: 0 2px;
}
.clear-filters-btn {
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffe1e1;
  background: linear-gradient(135deg, rgba(139,32,32,0.92), rgba(188,54,54,0.9));
  border: 1px solid rgba(255,120,120,0.4);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 10px 24px rgba(139,32,32,0.22);
}
.clear-filters-btn:hover {
  background: linear-gradient(135deg, rgba(170,38,38,0.98), rgba(214,72,72,0.94));
  border-color: rgba(255,170,170,0.7);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(139,32,32,0.3);
}
.clear-filters-btn.is-disabled,
.clear-filters-btn:disabled {
  opacity: 0.45;
  cursor: default;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: var(--text-dim);
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-btn {
  padding: 8px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: rgba(201,168,76,0.3); color: var(--text); }
.filter-btn.active {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
  font-weight: 600;
}

/* ===== PRODUCT DETAIL ===== */
.pd-page-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}
.pd-shop-path {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.pd-shop-path:hover {
  border-color: rgba(201,168,76,0.3);
  color: var(--text);
  background: rgba(201,168,76,0.08);
}
.pd-shop-path-root {
  text-transform: uppercase;
}
.pd-shop-path-sep {
  color: rgba(201,168,76,0.7);
}
.pd-shop-path-category {
  color: var(--gold);
  text-transform: uppercase;
}
.pd-page-title {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.08;
  max-width: 980px;
}
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  align-items: start;
  gap: 32px;
  padding: 8px 0 32px;
}

.pd-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pd-main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.08 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  box-shadow: 0 18px 38px rgba(0,0,0,0.28);
}
.pd-main-image .badge {
  top: 14px;
  left: 14px;
  z-index: 6;
}
.pd-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.pd-arrow:hover { background: rgba(201,168,76,0.7); }
.pd-arrow-left { left: 10px; }
.pd-arrow-right { right: 10px; }
.pd-counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 100px;
  z-index: 5;
  margin-bottom: 16px;
}
.pd-main-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.pd-thumbs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pd-thumb {
  width: 80px; height: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
  background: var(--bg-surface);
}
.pd-thumb:hover, .pd-thumb.active {
  border-color: var(--gold);
}
.pd-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.pd-info {
  padding: 18px 20px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
}
.pd-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.pd-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.pd-price {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.pd-postage {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.pd-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.pd-category-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.18);
  background: rgba(201,168,76,0.06);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.pd-category-chip:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.14);
  color: var(--text);
}
.pd-description {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.58;
}

/* Stock indicator */
.stock-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.stock-in { background: rgba(45,138,78,0.1); color: #4ade80; }
.stock-low { background: rgba(234,179,8,0.1); color: #eab308; }
.stock-critical { background: rgba(139,32,32,0.15); color: var(--accent-red-light); }
.stock-out { background: rgba(255,255,255,0.05); color: var(--text-muted); }
.stock-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.stock-in .stock-dot { background: #4ade80; }
.stock-low .stock-dot { background: #eab308; }
.stock-critical .stock-dot { background: var(--accent-red-light); animation: pulse 1.5s infinite; }
.stock-out .stock-dot { background: var(--text-muted); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Highlights */
.pd-highlights {
  list-style: none;
  margin-bottom: 18px;
}
.pd-highlights li {
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pd-highlights li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.pd-material {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Cross-sell deal on product page */
.pd-deal {
  margin-top: 24px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 16px;
  background: rgba(201,168,76,0.04);
  position: relative;
}
.pd-deal-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pd-deal-msg {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}
.pd-deal-product {
  display: flex;
  gap: 12px;
  align-items: center;
}
.pd-deal-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.pd-deal-info { flex: 1; }
.pd-deal-name {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 4px;
}
.pd-deal-prices {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
.pd-deal-old {
  text-decoration: line-through;
  color: var(--text-dim);
  font-size: 0.82rem;
}
.pd-deal-new {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
}
.pd-deal-actions {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-deal-btn {
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0a0a0a;
  background: var(--gold);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.pd-deal-btn:hover { opacity: 0.85; }
.pd-deal-btn:disabled { opacity: 0.5; cursor: default; }
.pd-deal-btn-bundle {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.85rem;
}
.pd-deal-was {
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.7;
  text-decoration: line-through;
  margin-left: 4px;
}
.pd-deal-btn-secondary {
  width: 100%;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.pd-deal-btn-secondary:hover { color: var(--gold); border-color: var(--gold); }
.pd-deal-btn-secondary:disabled { opacity: 0.5; cursor: default; }

.pd-related {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.pd-related .section-title {
  text-align: left;
  font-size: 1.3rem;
  margin-bottom: 24px;
}
.pd-related-copy {
  margin: -10px 0 20px;
  color: var(--text-muted);
  max-width: 760px;
}

/* Qty controls */
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}
.qty-btn {
  width: 44px; height: 44px;
  background: var(--bg-surface);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.qty-btn:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.qty-btn:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.qty-btn:hover { background: var(--gold); color: var(--bg-dark); }
.qty-value {
  width: 56px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 600;
  font-size: 1rem;
}

/* Big Add to Basket */
.btn-add-basket {
  width: 100%;
  padding: 16px;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-add-basket:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}
.btn-add-basket:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ===== CART PAGE ===== */
.cart-page { padding: 40px 0; }
.cart-page h1 {
  font-size: 2rem;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.cart-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--text-muted);
}
.cart-empty-icon { font-size: 4rem; margin-bottom: 16px; opacity: 0.3; }
.cart-empty h2 { font-size: 1.5rem; color: var(--text); margin-bottom: 8px; }
.cart-empty .btn-continue {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 36px;
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 600;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}
.cart-empty .btn-continue:hover { background: var(--gold-light); }

.cart-items { margin-bottom: 32px; }

.cart-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color var(--transition);
}
.cart-item:hover { border-color: rgba(201,168,76,0.1); }

.cart-item-img {
  width: 100px; height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-surface);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  margin-bottom: 4px;
}
.cart-item-price { color: var(--gold); font-weight: 600; }
.cart-item-discount {
  font-size: 0.8rem;
  color: var(--success);
  margin-top: 2px;
}

.cart-item-actions { display: flex; align-items: center; gap: 16px; }

.cart-item-remove {
  background: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.cart-item-remove:hover { color: var(--accent-red-light); background: rgba(139,32,32,0.1); }

.cart-item-subtotal {
  min-width: 80px;
  text-align: right;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

/* Cart Summary */
.cart-summary {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 420px;
  margin-left: auto;
}
.cart-summary h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
}
.summary-row.total {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 12px;
  padding-top: 16px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.summary-row .free-tag {
  color: var(--success);
  font-weight: 600;
}

.btn-checkout {
  width: 100%;
  margin-top: 24px;
  padding: 14px;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

.cart-guest-hint {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 8px 0 12px;
}

.btn-checkout-secondary {
  width: 100%;
  padding: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border-light, rgba(255,255,255,0.1));
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-checkout-secondary:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ===== CROSS-SELL MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modalSlide 0.3s ease-out;
}
@keyframes modalSlide {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  padding: 4px 8px;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--text); }

.modal-badge {
  display: inline-block;
  padding: 4px 16px;
  background: var(--accent-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  margin-bottom: 16px;
}

.modal-title {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 400;
}

.modal-product-name {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 8px;
}

.modal-product-img {
  width: 200px;
  height: 150px;
  margin: 0 auto 16px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-surface);
}
.modal-product-img img { width: 100%; height: 100%; object-fit: cover; }

.modal-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.modal-price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.modal-price-new {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
}

.btn-modal-add {
  width: 100%;
  padding: 14px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: var(--radius);
  margin-bottom: 10px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-modal-add:hover {
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
  transform: translateY(-1px);
}

.btn-modal-skip {
  background: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 8px;
  transition: color var(--transition);
  width: 100%;
}
.btn-modal-skip:hover { color: var(--text); }

/* ===== CHECKOUT PAGE ===== */
.checkout-page { padding: 40px 0; }
.checkout-page h1 {
  font-size: 2rem;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.checkout-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}
.field-hint {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 4px;
}
.req { color: rgba(201,168,76,0.6); }
.checkout-info {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.checkout-secure {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
  text-align: center;
}
.free-ship-hint {
  font-size: 0.75rem;
  color: var(--gold);
  text-align: center;
  margin: 0.3rem 0;
}
/* Payment strip on homepage */
.payment-strip {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.payment-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.payment-strip-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.payment-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.payment-icon {
  opacity: 0.88;
  transition: opacity 0.2s, transform 0.2s;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.18));
}
.payment-icon:hover { opacity: 1; transform: translateY(-1px); }
.payment-strip-secure {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Checkout payment icons */
/* Payment method tabs */
.payment-method-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
}
.pay-tab {
  flex: 1;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  background: transparent;
  color: var(--text-muted);
  border: none;
  border-right: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.2s;
}
.pay-tab:last-child { border-right: none; }
.pay-tab.active { background: var(--gold); color: #0a0a0a; }
.pay-tab:hover:not(.active) { background: rgba(255,255,255,0.04); }
.pay-redirect-msg {
  padding: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.pay-setup-note {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.18);
  background: rgba(201,168,76,0.06);
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}
.wallet-method-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 4px;
}
.wallet-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.28);
  background: rgba(201,168,76,0.08);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Discount code input */
.discount-code-section {
  margin: 12px 0;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.discount-input-row {
  display: flex;
  gap: 6px;
}
.discount-input {
  flex: 1;
  padding: 8px 10px;
  font-size: 0.82rem;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.discount-input:focus { outline: none; border-color: var(--gold); }
.discount-input:disabled { opacity: 0.5; }
.discount-apply-btn {
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--gold);
  color: #0a0a0a;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}
.discount-apply-btn:hover { opacity: 0.85; }
.discount-apply-btn:disabled { opacity: 0.4; cursor: default; }
#discount-result {
  margin-top: 6px;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.disc-success { color: #34d399; }
.disc-error { color: #f87171; }
.disc-loading { color: var(--text-muted); }
.disc-remove {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 0.82rem;
  padding: 0;
}
.disc-remove:hover { color: #f87171; }

.checkout-payment-icons {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  opacity: 0.6;
}

/* Order summary improved */
.order-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.order-item:last-of-type { border-bottom: none; }
.order-item-left { flex: 1; min-width: 0; }
.order-item-name { display: block; font-size: 0.85rem; color: var(--text); }
.order-item-detail { font-size: 0.72rem; color: var(--text-dim); margin-top: 2px; display: block; }
.order-item-disc { color: var(--gold); font-weight: 600; }
.order-item-price { font-weight: 600; font-size: 0.88rem; white-space: nowrap; margin-left: 10px; }

.summary-savings {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  margin-top: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}
.summary-was {
  text-decoration: line-through;
  color: var(--text-dim);
  font-weight: 400;
  font-size: 0.8rem;
  margin-right: 4px;
}

.cart-item-link:hover .cart-item-name,
.cart-item-name.cart-item-link:hover {
  color: var(--gold);
  text-decoration: underline;
}
.checkout-item-link:hover {
  color: var(--gold);
  text-decoration: underline;
}
.cart-item-discount {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 2px;
}

.checkout-trust {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 0.75rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.checkout-form,
.checkout-sidebar,
.order-summary-box {
  min-width: 0;
}

.form-section {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.form-section h3 {
  font-size: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row.single { grid-template-columns: 1fr; }
.form-row.triple { grid-template-columns: 1fr 1fr 1fr; }

.form-group { display: flex; flex-direction: column; }
.form-group,
.form-group input,
.form-group textarea,
.form-group select {
  min-width: 0;
}
.form-group label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 14px;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-group textarea { resize: vertical; min-height: 60px; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.checkout-sidebar {
  position: sticky;
  top: 100px;
}
.order-summary-box {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.order-summary-box h3 {
  font-size: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.order-item:last-of-type { border-bottom: none; }
.order-item-name {
  font-size: 0.9rem;
  flex: 1;
}
.order-item-qty {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0 12px;
}
.order-item-price {
  font-weight: 600;
  white-space: nowrap;
}

.btn-place-order {
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-place-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

/* ===== ORDER ANIMATION ===== */
.order-animation {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.order-anim-step {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
}
.order-anim-step.active {
  animation: stepFadeIn 0.5s ease forwards;
}
.order-anim-step.done {
  animation: stepFadeOut 0.3s ease forwards;
}

@keyframes stepFadeIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes stepFadeOut {
  to { opacity: 0; transform: translateY(-20px); }
}

.anim-icon {
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  animation: iconPulse 1s ease infinite;
}
@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.3); }
  50% { box-shadow: 0 0 0 15px rgba(201,168,76,0); }
}

/* Laser beam effect */
.anim-icon.laser-icon { position: relative; overflow: visible; }
.anim-icon.laser-icon::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--accent-red));
  box-shadow: 0 0 8px var(--gold), 0 0 20px rgba(201,168,76,0.4);
  animation: laserBeam 1.2s ease-in-out infinite;
}
@keyframes laserBeam {
  0% { height: 0; opacity: 0; }
  30% { height: 30px; opacity: 1; }
  70% { height: 30px; opacity: 1; }
  100% { height: 0; opacity: 0; }
}

/* Truck drive animation */
.anim-icon.truck-icon { animation: truckDrive 1.5s ease-in-out infinite, iconPulse 1s ease infinite; }
@keyframes truckDrive {
  0% { transform: translateX(-20px); }
  50% { transform: translateX(20px); }
  100% { transform: translateX(-20px); }
}

/* Gear spin */
.anim-icon.gear-icon svg { animation: gearSpin 2s linear infinite; }
@keyframes gearSpin {
  to { transform: rotate(360deg); }
}

.anim-label {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Progress bar */
.order-progress-bar {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 4px;
  background: var(--bg-surface);
  border-radius: 2px;
  overflow: hidden;
}
.order-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(201,168,76,0.5);
}

/* Progress step dots */
.order-progress-dots {
  position: absolute;
  bottom: 95px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 58px;
}
.progress-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--text-dim);
  transition: all 0.3s ease;
}
.progress-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,0.5);
}

/* ===== ORDER CONFIRMATION ===== */
.order-confirm {
  text-align: center;
  padding: 80px 0;
  max-width: 600px;
  margin: 0 auto;
}

.confirm-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  background: rgba(45,138,78,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--success);
  animation: heroFadeIn 0.6s ease;
}

.order-confirm h1 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.order-confirm p { color: var(--text-muted); margin-bottom: 8px; }

.order-number-display {
  display: inline-block;
  padding: 12px 28px;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin: 20px 0 32px;
}

.confirm-details {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  margin-bottom: 32px;
}
.confirm-details h3 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ===== TRACK ORDER ===== */
.track-page { padding: 60px 0; text-align: center; }
.track-page h1 {
  font-size: 2rem;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.track-page > p { color: var(--text-muted); margin-bottom: 32px; }

.track-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}
.track-form input {
  padding: 14px 20px;
  width: 320px;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}
.track-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.track-form button {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.track-form button:hover { background: var(--gold-light); }

/* Timeline */
.order-timeline {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  padding-left: 40px;
}
.order-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--bg-surface);
}

.timeline-step {
  position: relative;
  padding-bottom: 32px;
}
.timeline-step:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--text-dim);
  z-index: 1;
}
.timeline-step.completed .timeline-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,0.3);
}
.timeline-step.current .timeline-dot {
  background: var(--gold);
  border-color: var(--gold);
  animation: pulse 1.5s infinite;
}

.timeline-title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.timeline-step:not(.completed):not(.current) .timeline-title { color: var(--text-muted); }

.timeline-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.track-result {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 560px;
  margin: 0 auto;
}
.track-result h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 24px;
}
.track-not-found {
  color: var(--text-muted);
  padding: 24px;
}

/* ===== ABOUT PAGE ===== */
.about-page { padding: 60px 0; }
.about-hero {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
  padding: 92px 0 58px;
  overflow: hidden;
}
.about-hero-embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.about-ember {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: aboutEmberUp linear forwards;
  filter: blur(0.2px);
  box-shadow:
    0 0 12px rgba(201,168,76,0.65),
    0 0 28px rgba(201,168,76,0.34),
    0 0 42px rgba(255,220,130,0.18);
}
@keyframes aboutEmberUp {
  0%   { opacity: 0; transform: translateY(0) translateX(0) scale(0.7); }
  12%  { opacity: 1; }
  55%  { opacity: 0.58; }
  100% { opacity: 0; transform: translateY(-240px) translateX(var(--drift, 0px)) scale(0.4); }
}
.about-hero h1 {
  position: relative;
  z-index: 2;
  font-size: clamp(2.3rem, 5.5vw, 3.4rem);
  line-height: 1;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  text-shadow:
    0 0 18px rgba(201,168,76,0.18),
    0 6px 18px rgba(0,0,0,0.34);
}
.about-hero p {
  position: relative;
  z-index: 2;
  color: #c8c8c8;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.85;
  text-shadow: 0 3px 12px rgba(0,0,0,0.28);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.about-text h2 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.about-stat {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}
.about-stat:hover {
  border-color: rgba(201,168,76,0.2);
  box-shadow: var(--shadow-gold);
}
.about-stat-value {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.about-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.about-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
}
.about-gallery-sm {
  grid-template-columns: repeat(4, 1fr);
}
.about-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s;
}
.about-img:hover { transform: scale(1.03); }
.about-img-lg { height: 200px; }
@media (max-width: 768px) {
  .about-gallery { grid-template-columns: 1fr 1fr; }
  .about-gallery-sm { grid-template-columns: 1fr 1fr; }
  .about-img-lg { grid-column: span 2; }
}

/* ===== ACCOUNT PAGE ===== */
.account-card {
  background: var(--bg-card, rgba(255,255,255,0.03));
  border: 1px solid var(--border-light, rgba(255,255,255,0.08));
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
}
.account-title {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.account-subtitle {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}
.google-btn-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.google-disabled-note {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}
.account-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.2rem 0;
  color: var(--text-dim);
  font-size: 0.78rem;
}
.account-divider::before,
.account-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light, rgba(255,255,255,0.08));
}
.account-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-light, rgba(255,255,255,0.08));
  border-radius: 8px;
  overflow: hidden;
}
.account-tab {
  flex: 1;
  padding: 10px 0;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  background: transparent;
  color: var(--text-muted);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.account-tab:first-child { border-right: 1px solid var(--border-light, rgba(255,255,255,0.08)); }
.account-dash-tab {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  background: transparent;
  color: var(--text-muted);
  border: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.2s;
}
.account-dash-tab:last-child { border-right: none; }
.account-dash-tab.active { background: var(--gold); color: var(--bg, #0a0a0a); }
.account-dash-tab:hover:not(.active) { background: rgba(255,255,255,0.05); }
.account-tab.active {
  background: var(--gold);
  color: var(--bg, #0a0a0a);
}
.account-form {
  text-align: left;
}
.account-form .form-group {
  margin-bottom: 1rem;
}
.account-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0;
}
.account-form .form-group input {
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
.account-submit-btn {
  width: 100%;
  padding: 12px;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  color: var(--bg, #0a0a0a);
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.account-submit-btn:hover {
  background: transparent;
  color: var(--gold);
}
.account-guest-note {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.account-guest-note a { color: var(--gold); }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}
.review-card:hover {
  border-color: rgba(201,168,76,0.12);
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.review-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.review-text::before { content: '\201C'; }
.review-text::after { content: '\201D'; }

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.review-author {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}
.review-product {
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 2px;
}
.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: toastIn 0.3s ease forwards;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 360px;
}
.toast.removing { animation: toastOut 0.3s ease forwards; }

.toast-icon { font-size: 1.1rem; }
.toast-success { border-color: rgba(45,138,78,0.3); }
.toast-success .toast-icon { color: var(--success); }
.toast-error { border-color: rgba(139,32,32,0.3); }
.toast-error .toast-icon { color: var(--accent-red-light); }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(40px); }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 60px 0 0;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo { margin-bottom: 16px; height: 80px !important; width: auto; }
.footer-tagline { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-col p { color: var(--text-muted); font-size: 0.85rem; }
.footer-location { margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 20px 0;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--text-dim); font-size: 0.8rem; }
.footer-credit {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}
.footer-credit a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-credit a:hover {
  color: var(--gold);
}

/* ===== UTILITY ===== */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.fade-in { animation: heroFadeIn 0.5s ease; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color var(--transition);
}
.back-link:hover { color: var(--gold); }

/* Page transition */
#app { min-height: 60vh; }
.page-enter { animation: pageEnter 0.4s ease; }
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Cross-sell section in cart */
.cross-sell-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cross-sell-section h3 {
  font-size: 1.1rem;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ===== LIKE BUTTON ===== */
.like-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 5px 10px;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.like-btn:hover { color: #e74c3c; border-color: rgba(231,76,60,0.3); background: rgba(231,76,60,0.06); }
.like-btn.liked .like-icon { color: #e74c3c; }
.like-btn.liked { color: #e74c3c; border-color: rgba(231,76,60,0.3); background: rgba(231,76,60,0.08); }
.like-icon { font-size: 1.1rem; transition: transform 0.3s ease; }
.like-btn:active .like-icon { transform: scale(1.3); }
.like-btn-card {
  align-self: flex-start;
  flex-shrink: 0;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border-radius: 10px;
  gap: 4px;
  justify-content: center;
}
.like-btn-card .like-icon {
  font-size: 0.95rem;
}
.like-btn-card .like-count {
  font-size: 0.72rem;
  line-height: 1;
}
.pd-price-row { display: flex; align-items: center; gap: 12px; }
.pd-social-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 10px 0 14px;
}
.pd-like-btn {
  font-size: 0.9rem;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  justify-content: center;
}
.pd-like-btn:hover { border-color: var(--gold); }
.pd-like-btn.liked { border-color: #e74c3c; }
.pd-social-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.pd-social-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.pd-social-btn:hover {
  color: var(--gold);
  border-color: rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.08);
}

/* ===== ORDER PROCESS STEPS ===== */
.order-process-section { padding: 60px 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 20px;
  position: relative;
  opacity: 0.68;
  transform: none;
  transition: opacity 0.24s ease;
  will-change: opacity;
}
.process-number {
  display: none;
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(201,168,76,0.92);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.22);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
}
.process-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  transition: border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
  transform: none;
  will-change: border-color, box-shadow, background, color;
}
.process-active,
.process-complete {
  opacity: 1;
  transform: none;
}
.process-active .process-icon {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  box-shadow: 0 0 0 6px rgba(201,168,76,0.04), 0 0 18px rgba(201,168,76,0.12);
}
.process-complete .process-icon {
  border-color: rgba(201,168,76,0.42);
  background: rgba(201,168,76,0.05);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.03);
}
.process-active .process-number {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.14);
  box-shadow: 0 0 0 5px rgba(201,168,76,0.05), 0 0 16px rgba(201,168,76,0.1);
}
.process-complete .process-number {
  border-color: rgba(201,168,76,0.34);
  background: rgba(201,168,76,0.1);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.03);
}
/* Connector line between steps */
.process-connector {
  position: absolute;
  top: 56px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: rgba(201,168,76,0.1);
  overflow: hidden;
}
.process-connector-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(201,168,76,0.2) 0%, rgba(201,168,76,0.95) 72%, rgba(255,230,168,0.98) 100%);
  transition: width 1.9s linear;
  will-change: width;
  box-shadow: 0 0 12px rgba(201,168,76,0.2);
}
.process-step:last-child .process-connector { display: none; }
.process-step h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 6px;
  transition: color 0.24s ease, opacity 0.24s ease;
}
.process-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  transition: color 0.24s ease, opacity 0.24s ease;
}
.process-active h3,
.process-complete h3,
.process-active p,
.process-complete p {
  opacity: 1;
}

/* ===== BULK ORDERS PAGE ===== */
/* Shop hero */
.shop-hero {
  position: relative;
  text-align: center;
  padding: 104px 0 62px;
  overflow: hidden;
  background: var(--bg);
}
/* Subtle grid background that fades out at bottom */
.shop-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
}
/* Bottom fade to blend into section below */
.shop-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 3;
}
.shop-hero-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.shop .container,
.shop-page .container {
  position: relative;
}
.shop-ambient {
  position: absolute;
  top: 140px;
  bottom: 40px;
  width: 180px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
  filter: blur(10px);
}
.shop-ambient::before,
.shop-ambient::after {
  content: '';
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  animation: shopAmbientDrift 16s ease-in-out infinite alternate;
}
.shop-ambient::before {
  background-image:
    radial-gradient(ellipse at center, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.06) 28%, transparent 62%),
    repeating-linear-gradient(180deg, rgba(122,166,214,0.12) 0 2px, transparent 2px 26px);
  mask-image: radial-gradient(circle at center, rgba(0,0,0,0.9), transparent 78%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,0.9), transparent 78%);
}
.shop-ambient::after {
  inset: 10% 8%;
  background-image:
    repeating-radial-gradient(circle at 50% 50%, rgba(125,171,226,0.12) 0 2px, transparent 2px 20px);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.9) 18%, rgba(0,0,0,0.9) 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.9) 18%, rgba(0,0,0,0.9) 82%, transparent 100%);
  animation-duration: 22s;
}
.shop-ambient-left {
  left: -110px;
}
.shop-ambient-right {
  right: -110px;
  transform: scaleX(-1);
}
@keyframes shopAmbientDrift {
  0% { transform: translateY(-10px) scale(0.98); opacity: 0.65; }
  100% { transform: translateY(18px) scale(1.03); opacity: 1; }
}
.shop-hero h1 {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 2;
}
.shop-hero p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}
/* Contact hero */
.contact-hero {
  position: relative;
  text-align: center;
  padding: 100px 0 60px;
  overflow: hidden;
  background: #050505;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 100%, rgba(180,60,20,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(201,168,76,0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(139,32,32,0.12) 0%, transparent 55%);
}
.contact-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 3;
}
.contact-hero-glow {
  position: absolute;
  bottom: -40%;
  left: 10%;
  right: 10%;
  height: 80%;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,120,40,0.12) 0%, transparent 60%);
  animation: contactGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes contactGlow {
  0%   { opacity: 0.5; transform: scaleX(0.9); }
  100% { opacity: 1; transform: scaleX(1.1); }
}
.contact-hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 20px;
}
.contact-hero h1 {
  font-size: 2.8rem;
  color: var(--text);
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-hero p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}
/* Ember particles */
.contact-embers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.contact-ember {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: contactEmberRise linear forwards;
}
@keyframes contactEmberRise {
  0%   { opacity: 0; transform: translateY(0) translateX(0) scale(0.5); }
  10%  { opacity: 0.8; }
  50%  { opacity: 0.4; transform: translateY(-30vh) translateX(var(--drift, 0px)) scale(0.8); }
  100% { opacity: 0; transform: translateY(-70vh) translateX(calc(var(--drift, 0px) * 1.5)) scale(0.2); }
}

/* Contact page layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-form-col {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 2rem;
}
.contact-form-title {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0;
}
.contact-form .form-group {
  margin-bottom: 1rem;
}
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 1.2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.contact-info-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-2px);
}
.contact-info-icon {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.contact-info-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 0.88rem;
  color: var(--text);
  margin: 0;
}
.contact-info-card a { color: var(--gold); }
.contact-info-hint {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 76px 0 46px;
  }
  .about-hero h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-hero h1 { font-size: 2rem; }
}

.bulk-hero {
  text-align: center;
  padding: 80px 0 40px;
}
.bulk-hero h1 {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.bulk-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.bulk-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.bulk-benefit-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.bulk-benefit-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.bulk-benefit-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.bulk-benefit-card h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 8px;
}
.bulk-benefit-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}
.bulk-form-section {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}
.bulk-form-section h2 {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 24px;
  text-align: center;
}
.bulk-form .form-group { margin-bottom: 16px; }
.bulk-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.bulk-form input,
.bulk-form textarea,
.bulk-form select {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition);
}
.bulk-form input:focus,
.bulk-form textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.bulk-form textarea { min-height: 100px; resize: vertical; }
.bulk-checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.bulk-checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text);
  font-size: 0.85rem;
}
.bulk-checkbox-group input[type="checkbox"] {
  width: auto;
  accent-color: var(--gold);
}
.bulk-submit-btn {
  display: block;
  width: 100%;
  padding: 14px;
  margin-top: 24px;
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background var(--transition), box-shadow var(--transition);
}
.bulk-submit-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
}
.bulk-success {
  text-align: center;
  padding: 40px;
}
.bulk-success h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.bulk-success p {
  color: var(--text-muted);
}

/* ===== ACCOUNT PAGE ===== */
.account-page { padding: 60px 0; max-width: 700px; margin: 0 auto; }
.account-page h1 {
  font-size: 2rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 32px;
}
.auth-tabs {
  display: flex;
  border-bottom: 2px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}
.auth-tab {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
}
.auth-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.auth-form {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.auth-form .form-group { margin-bottom: 16px; }
.auth-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.auth-form input {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition);
}
.auth-form input:focus {
  border-color: var(--gold);
  outline: none;
}
.auth-submit-btn {
  display: block;
  width: 100%;
  padding: 14px;
  margin-top: 20px;
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background var(--transition), box-shadow var(--transition);
}
.auth-submit-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
}
.account-dashboard h2 {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.account-dashboard .order-history { margin-top: 24px; }
.order-history-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order-history-item .order-num { color: var(--gold); font-weight: 600; }
.order-history-item .order-date { color: var(--text-muted); font-size: 0.85rem; }
.order-history-item .order-total { font-weight: 600; }
.logout-btn {
  background: none;
  border: 1px solid var(--accent-red);
  color: var(--accent-red-light);
  padding: 10px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.85rem;
  margin-top: 24px;
  transition: all var(--transition);
}
.logout-btn:hover {
  background: var(--accent-red);
  color: #fff;
}
.review-form-section {
  margin-top: 32px;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.review-form-section h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.review-form-section .form-group { margin-bottom: 14px; }
.review-form-section label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.review-form-section select,
.review-form-section textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}
.review-form-section textarea { min-height: 80px; resize: vertical; }
.star-rating-input {
  display: flex;
  gap: 6px;
  font-size: 1.5rem;
  cursor: pointer;
}
.star-rating-input .star {
  color: var(--text-dim);
  transition: color 0.2s;
}
.star-rating-input .star.active { color: var(--gold); }
.star-rating-input .star:hover,
.star-rating-input .star:hover ~ .star { color: var(--gold-light); }
.nav-account {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 0;
  margin-right: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-sidebar { position: static; }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .about-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .shop-ambient { display: none; }
  .header-inner {
    height: 100px;
    justify-content: flex-start;
    gap: 10px;
  }
  .logo img { height: 80px; }
  .mobile-nav-toggle {
    display: inline-flex;
    order: 2;
    margin-left: 0;
    flex-shrink: 0;
  }
  .main-nav { display: none; }
  .header-actions {
    order: 3;
    margin-left: auto;
    gap: 8px;
    flex: 0 0 auto;
  }
  .nav-login-btn { display: none; }
  .search-bar { display: none; }
  .mobile-nav-panel {
    display: block;
    position: fixed;
    top: 100px;
    left: 12px;
    right: 12px;
    padding: 12px;
    background: rgba(10,10,10,0.97);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 14px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.42);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 200;
  }
  .site-header.mobile-open .mobile-nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-nav-links .nav-link {
    display: block;
    width: 100%;
    padding: 12px 4px;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .mobile-nav-links .nav-link:last-child {
    border-bottom: none;
  }

  .hero {
    height: auto;
    min-height: calc(100svh - 100px);
    padding: 56px 0 72px;
    align-items: center;
    justify-content: center;
  }
  .hero-content {
    width: 100%;
    padding: 0 20px;
  }
  .hero-badge { margin-bottom: 24px; }
  .hero-line { font-size: clamp(1.8rem, 8vw, 3rem); }
  .hero-subtitle {
    margin-bottom: 28px;
    line-height: 1.65;
  }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .hero-trust-divider { display: none; }

  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-card { padding: 20px 12px; }
  .category-icon { font-size: 1.8rem; }
  .home-workshop-band { padding: 6px 0 36px; }
  .home-workshop-shell {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 1rem;
  }
  .home-workshop-points {
    grid-template-columns: 1fr;
  }
  .home-workshop-point {
    padding: 16px 0 16px 16px;
  }

  .shop-hero { padding: 56px 0 40px; min-height: 220px; }
  .shop-hero h1 { font-size: 1.8rem; margin-bottom: 4px; }
  .shop-hero p { font-size: 0.85rem; margin-bottom: 0; padding-bottom: 8px; }
  .shop-hero::after { display: none; }
  .shop-hero + .section { padding-top: 12px; }
  .shop-controls {
    flex-direction: column; align-items: stretch;
    padding: 10px; gap: 8px; margin-bottom: 0;
    border-bottom: none; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .shop-controls-group {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    flex: 0 0 auto;
  }
  .shop-controls-group-search { justify-content: stretch; }
  .shop-search { width: 100%; min-width: 0; }
  .shop-search-input { width: 100%; }
  .shop-sort-bar {
    flex-direction: column; align-items: stretch;
    gap: 6px; padding: 10px; margin-bottom: 10px;
    border-top: none; border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .shop-sort-main {
    width: 100%; gap: 6px;
    flex-direction: column; align-items: stretch; flex-wrap: nowrap;
    flex: 0 0 auto;
  }
  .shop-quick-sorts { flex: 0 0 auto; justify-content: flex-start; }
  .shop-sort-main .sort-group { width: 100%; justify-content: stretch; flex: 0 0 auto; }
  .shop-sort-main .sort-label { display: none; }
  .shop-sort-main .sort-select { flex: 0 0 auto; width: 100%; min-width: 0; }
  .shop-sort-meta { width: 100%; justify-content: space-between; margin-left: 0; gap: 6px; flex: 0 0 auto; }
  .price-slider-group {
    width: 100%; min-width: 0; gap: 6px;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
  }
  .price-slider-group .sort-label { display: block; flex: 0 0 auto; white-space: nowrap; }
  .price-slider-group .price-slider { flex: 1 1 auto; min-width: 0; }
  .price-slider-group .sort-label { display: block; font-size: 0.7rem; }
  .results-count { margin-left: 0; text-align: left; font-size: 0.75rem; }
  .clear-filters-btn { padding: 6px 12px; font-size: 0.72rem; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
  .filter-bar { gap: 6px; }
  .filter-btn { padding: 5px 12px; font-size: 0.75rem; }
  .shop-sort-chip { padding: 5px 10px; font-size: 0.72rem; }
  .shop-quick-sorts { gap: 6px; }
  .search-bar.open .search-input { width: 180px; }

  .stats-grid { gap: 32px; }
  .stat-value { font-size: 1.4rem; }

  .section { padding: 48px 0; }
  .product-detail {
    gap: 24px;
    padding: 24px 0 16px;
  }
  .pd-page-head {
    margin-bottom: 16px;
    gap: 8px;
  }
  .pd-shop-path {
    margin-bottom: 12px;
    font-size: 0.76rem;
  }
  .pd-page-title {
    font-size: clamp(1.35rem, 5.6vw, 1.9rem);
  }
  .pd-main-image {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
  }
  .pd-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }
  .pd-counter {
    bottom: 8px;
    right: 8px;
    margin-bottom: 0;
  }
  .pd-thumbs {
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .pd-thumbs::-webkit-scrollbar {
    display: none;
  }
  .pd-thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
  }
  .pd-name {
    font-size: clamp(1.25rem, 5.2vw, 1.7rem);
    line-height: 1.15;
    margin-bottom: 10px;
  }
  .pd-rating {
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
  }
  .pd-price-row {
    flex-wrap: wrap;
    gap: 8px;
  }
  .pd-price {
    font-size: 1.6rem;
  }
  .pd-social-row {
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 10px 0 12px;
  }
  .pd-social-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .pd-postage,
  .pd-description,
  .pd-material {
    margin-bottom: 16px;
  }
  .pd-highlights {
    margin-bottom: 20px;
  }
  .qty-control {
    width: 100%;
    max-width: 220px;
  }
  .btn-add-basket {
    width: 100%;
  }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
  .product-card-img {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
  .product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .product-card-gallery-btn {
    opacity: 1;
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
  }
  .product-card-gallery-btn-left { left: 8px; }
  .product-card-gallery-btn-right { right: 8px; }
  .product-card-gallery-count {
    top: auto;
    right: 8px;
    bottom: 8px;
    left: auto;
    padding: 3px 8px;
    font-size: 0.62rem;
    background: rgba(7,8,12,0.78);
  }
  .pd-category-chips {
    gap: 8px;
  }

  .cart-item { flex-wrap: wrap; }
  .cart-item-subtotal { min-width: auto; }
  .cart-summary { max-width: 100%; }
  .cart-item-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .payment-method-tabs {
    flex-direction: column;
  }
  .pay-tab {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .pay-tab:last-child {
    border-bottom: none;
  }
  .discount-input-row {
    flex-direction: column;
  }
  .discount-apply-btn {
    width: 100%;
  }
  .checkout-payment-icons {
    flex-wrap: wrap;
  }

  .form-row { grid-template-columns: 1fr; }
  .form-row.triple { grid-template-columns: 1fr; }
  .account-form .form-row { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step {
    padding: 18px 18px 22px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    margin-bottom: 12px;
    opacity: 1;
  }
  .process-step:last-child {
    margin-bottom: 0;
  }
  .process-number {
    display: inline-flex;
  }
  .process-icon {
    display: none;
  }
  .process-connector,
  .process-line { display: none; }
  .bulk-benefits { grid-template-columns: 1fr; }
  .bulk-form-section { padding: 24px; }
  .bulk-checkbox-group { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner {
    height: 92px;
    gap: 8px;
    padding-right: 0;
  }
  .logo img { height: 72px; }
  .cart-btn { padding: 8px; }
  .header-actions {
    gap: 6px;
  }
  .mobile-nav-toggle {
    width: 42px;
    height: 42px;
  }
  .mobile-nav-panel { left: 8px; right: 8px; }
  .shop-hero { padding: 48px 0 32px; min-height: 200px; }
  .shop-hero h1 { font-size: 1.4rem; }
  .shop-hero p { font-size: 0.8rem; padding-bottom: 4px; }
  .shop-hero::after { display: none; }
  .shop-hero + .section { padding-top: 8px; }
  .shop-controls { padding: 8px; gap: 6px; }
  .shop-sort-bar { gap: 6px; padding: 8px; margin-bottom: 8px; }
  .filter-btn { padding: 4px 10px; font-size: 0.7rem; }
  .hero {
    min-height: calc(100svh - 64px);
    padding: 84px 0 64px;
  }
  .hero-content { padding: 0 16px; }
  .hero-badge {
    padding: 7px 16px;
    margin-bottom: 20px;
  }
  .hero-badge-text {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }
  .hero-subtitle {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }
  .back-link {
    margin-bottom: 16px;
  }
  .pd-page-head {
    margin-bottom: 14px;
  }
  .pd-shop-path {
    width: 100%;
    justify-content: center;
  }
  .product-detail {
    gap: 18px;
    padding-top: 18px;
  }
  .pd-main-image {
    border-radius: 14px;
  }
  .pd-thumb {
    flex-basis: 64px;
    width: 64px;
    height: 64px;
  }
  .pd-info .badge {
    position: static;
    display: inline-flex;
    margin-bottom: 10px;
  }
  .pd-price {
    font-size: 1.42rem;
  }
  .pd-description,
  .pd-highlights li,
  .pd-postage,
  .pd-material {
    font-size: 0.86rem;
  }
  .pd-social-row {
    justify-content: space-between;
  }
  .pd-social-btn,
  .pd-like-btn {
    min-width: 36px;
    min-height: 36px;
  }
  .qty-control {
    max-width: 100%;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .product-card {
    border-radius: 14px;
  }
  .product-card-img {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
  .product-card-body {
    padding: 14px;
  }
  .product-card-gallery-dots {
    bottom: 8px;
    gap: 6px;
  }
  .product-card-gallery-dot {
    width: 8px;
    height: 8px;
  }
  .product-card-name {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  .product-card-price {
    font-size: 1.02rem;
    margin-bottom: 6px;
  }
  .product-card-meta {
    margin-bottom: 12px;
    gap: 8px;
  }
  .review-count {
    font-size: 0.7rem;
  }
  .btn-add-quick {
    padding: 9px;
    font-size: 0.76rem;
    letter-spacing: 0.05em;
  }
  .shop-card-qty {
    margin-bottom: 8px;
  }
  .shop-card-qty-btn,
  .shop-card-qty-value {
    height: 30px;
  }
  .shop-card-qty-btn {
    width: 30px;
    font-size: 0.92rem;
  }
  .pd-category-chip {
    width: 100%;
    text-align: center;
  }
  .track-form { flex-direction: column; align-items: center; }
  .track-form input { width: 100%; }
  .track-form button { width: 100%; }
  .checkout-page {
    padding: 28px 0;
  }
  .checkout-page h1 {
    font-size: 1.5rem;
  }
  .checkout-subtitle {
    font-size: 0.84rem;
    margin-bottom: 22px;
  }
  .form-section {
    padding: 18px;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    font-size: 16px;
  }
  .order-summary-box {
    padding: 18px;
  }
}
