/* ===================================
   JAK💎JAX LUXURY STREETWEAR
   Black/Gold/White Theme
   =================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0A0A0A;
  --gold: #D4AF37;
  --gold-dim: rgba(212, 175, 55, 0.15);
  --gold-hover: #E5C14A;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --gray-1: #1A1A1A;
  --gray-2: #2A2A2A;
  --gray-3: #888888;
  --gray-4: #444444;
  --red-accent: #8B0000;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-height: 72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===================================
   NAVIGATION
   =================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  transition: border-color 0.3s;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nav-logo span.gem { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover { opacity: 1; color: var(--gold); }

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

.nav-icon {
  color: var(--white);
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.2s, color 0.2s;
  text-decoration: none;
}

.nav-icon:hover { opacity: 1; color: var(--gold); }

.nav-icon svg { width: 20px; height: 20px; display: block; }

.cart-count {
  position: relative;
  display: inline-block;
}

.cart-count-badge {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: 24px;
  z-index: 999;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--gold); }

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.8);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.2s;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.4s;
}

.hero-headline span { color: var(--gold); }

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  max-width: 480px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.6s;
}

.btn-primary {
  display: inline-block;
  padding: 18px 52px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: all 0.3s;
  cursor: pointer;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.8s;
}

.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 1.2s;
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===================================
   SECTIONS (shared)
   =================================== */
.section {
  padding: 100px 48px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 60px;
}

/* ===================================
   PRODUCT GRID
   =================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: var(--gray-1);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  display: block;
}

.product-card:hover {
  transform: scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.12);
}

.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-2);
}

.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.badge-new {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.badge-collection {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

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

.product-card-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.product-card-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  padding: 14px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  cursor: pointer;
  border: none;
  width: 100%;
}

.product-card:hover .quick-add {
  transform: translateY(0);
}

/* ===================================
   FEATURED BANNER
   =================================== */
.featured-banner {
  max-width: 1400px;
  margin: 0 auto 100px;
  padding: 0 48px;
}

.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  overflow: hidden;
  background: var(--gray-1);
}

.featured-image {
  position: relative;
  min-height: 480px;
}

.featured-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.featured-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--gray-1) 100%);
}

.featured-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.featured-name {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.featured-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 36px;
}

.featured-price {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
  background: var(--gray-1);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 32px;
  opacity: 0.9;
}

.about-text {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ===================================
   NEWSLETTER
   =================================== */
.newsletter-section {
  padding: 100px 48px;
  text-align: center;
  position: relative;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.newsletter-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  background: var(--gray-1);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder { color: var(--gray-3); }

.newsletter-input:focus { border-color: var(--gold); }

.newsletter-btn {
  padding: 16px 32px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.newsletter-success {
  display: none;
  color: var(--gold);
  font-size: 14px;
  margin-top: 16px;
  letter-spacing: 0.05em;
}

.newsletter-success.show { display: block; }

/* ===================================
   FOOTER
   =================================== */
.footer {
  padding: 80px 48px 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.footer-brand-name span { color: var(--gold); }

.footer-tagline {
  font-size: 12px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col-links {
  list-style: none;
}

.footer-col-links li { margin-bottom: 12px; }

.footer-col-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col-links a:hover { color: var(--white); }

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
  opacity: 0.6;
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  opacity: 1;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

.footer-quote {
  font-size: 12px;
  font-style: italic;
  color: var(--gold);
  opacity: 0.7;
  letter-spacing: 0.08em;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > * { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }

/* ===================================
   SHOP / COLLECTION PAGES
   =================================== */
.shop-hero {
  padding: 160px 48px 80px;
  text-align: center;
  background: var(--gray-1);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.shop-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.shop-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}

.shop-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 40px 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ===================================
   PRODUCT DETAIL PAGE
   =================================== */
.product-detail {
  padding: 120px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-main-image {
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-1);
  border: 1px solid rgba(255,255,255,0.05);
}

.product-main-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.product-info-panel {
  position: sticky;
  top: 100px;
}

.product-collection-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.product-detail-name {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.product-detail-price {
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 32px;
}

.product-detail-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 40px;
}

.size-selector {
  margin-bottom: 32px;
}

.size-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-btn {
  width: 52px; height: 52px;
  background: var(--gray-1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-btn:hover { border-color: var(--gold); color: var(--gold); }
.size-btn.selected { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.size-btn.out-of-stock { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

.quantity-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  width: 44px; height: 44px;
  background: var(--gray-1);
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.qty-btn:hover { background: var(--gray-4); }

.qty-value {
  width: 52px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--gray-1);
  border-left: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
  line-height: 44px;
}

.add-to-cart-btn {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 16px;
}

.add-to-cart-btn:hover {
  background: var(--gold-hover);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.add-to-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ===================================
   CART PAGE
   =================================== */
.cart-page {
  padding: 140px 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.cart-page-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 48px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: var(--gray-1);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-img {
  width: 100px; height: 120px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-2);
}

.cart-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.cart-item-info { display: flex; flex-direction: column; gap: 4px; }

.cart-item-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

.cart-item-collection {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-item-size {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
}

.cart-qty-btn {
  width: 32px; height: 32px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-qty-btn:hover { background: rgba(255,255,255,0.05); }

.cart-qty-num {
  width: 36px;
  text-align: center;
  font-size: 13px;
  color: var(--white);
  font-weight: 500;
}

.cart-item-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  min-width: 80px;
  text-align: right;
}

.cart-item-remove {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  font-size: 18px;
  padding: 4px 8px;
  transition: color 0.2s;
}

.cart-item-remove:hover { color: #ff4444; }

.cart-empty {
  text-align: center;
  padding: 80px 24px;
}

.cart-empty-icon {
  font-size: 48px;
  color: var(--gray-3);
  margin-bottom: 24px;
}

.cart-empty-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
}

.cart-empty-text {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}

.cart-summary {
  background: var(--gray-1);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 32px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
}

.cart-summary-row.subtotal { border-bottom: 1px solid rgba(255,255,255,0.06); }

.cart-summary-label { color: rgba(255,255,255,0.5); }
.cart-summary-value { color: var(--white); font-weight: 500; }

.cart-summary-row.total .cart-summary-label,
.cart-summary-row.total .cart-summary-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.cart-summary-row.total .cart-summary-value { color: var(--gold); }

.checkout-btn {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 24px;
  transition: all 0.3s;
}

.checkout-btn:hover {
  background: var(--gold-hover);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.cart-continue-shopping {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.cart-continue-shopping:hover { color: var(--gold); }

/* ===================================
   PAGE TRANSITION
   =================================== */
.page-content {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 0.1s;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .featured-inner { grid-template-columns: 1fr; }
  .featured-image { min-height: 300px; }
  .featured-image::after { background: linear-gradient(180deg, transparent 60%, var(--gray-1) 100%); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .section { padding: 64px 20px; }
  .nav { padding: 0 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .shop-hero { padding: 120px 20px 48px; }
  .shop-filters { padding: 24px 20px; }
  .cart-page { padding: 120px 20px 60px; }
  .cart-item { grid-template-columns: 80px 1fr; gap: 16px; }
  .cart-item-qty, .cart-item-price, .cart-item-remove { grid-column: 2; }
  .newsletter-form { flex-direction: column; gap: 0; }
  .newsletter-input { border-right: 1px solid rgba(255,255,255,0.1); border-radius: 8px 8px 0 0; }
  .newsletter-btn { border-radius: 0 0 8px 8px; }
  .product-detail { padding: 100px 20px 60px; }
  .hero { padding: 100px 20px 60px; }
  .social-icons { justify-content: center; }
}

/* ===================================
   FEATURED PRODUCT GRID (gold borders)
   =================================== */
.product-card-featured {
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.35s ease;
}

.product-card-featured:hover {
  border-color: #D4AF37;
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.18), 0 0 60px rgba(212, 175, 55, 0.06);
  transform: scale(1.03) translateY(-4px);
}

.featured-product-grid {
  margin-bottom: 0;
}

/* ===================================
   CUSTOMER REVIEWS (product detail)
   =================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s;
}

.review-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
}

.review-stars {
  color: #D4AF37;
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.review-body {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.review-author {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 600px) {
  .review-card { padding: 20px 16px; }
}

/* ===================================
   FOOTER EMAIL SIGNUP
   =================================== */
.footer-email-signup {
  display: flex;
  gap: 0;
  margin-top: 20px;
  max-width: 280px;
}

.footer-email-input {
  flex: 1;
  padding: 10px 14px;
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  border-radius: 6px 0 0 6px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s;
}

.footer-email-input::placeholder { color: #888; }
.footer-email-input:focus { border-color: #D4AF37; }

.footer-email-btn {
  padding: 10px 18px;
  background: #D4AF37;
  color: #0A0A0A;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid #D4AF37;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.footer-email-btn:hover {
  background: #E5C14A;
  border-color: #E5C14A;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.2);
}

@media (max-width: 600px) {
  .footer-email-signup { max-width: 100%; }
}

/* ===================================
   FOOTER SOCIAL ICONS — gold on default
   =================================== */
.social-icon {
  color: #D4AF37;
  opacity: 0.7;
  transition: all 0.3s;
}

.social-icon:hover {
  color: #fff;
  opacity: 1;
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* ===================================
   AUTH PAGES — Login / Signup
   =================================== */
.auth-page {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--black);
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--gray-1);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 48px 40px;
}

.auth-header {
  text-align: center;
  margin-bottom: 36px;
}

.auth-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.auth-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.auth-sub {
  font-size: 14px;
  color: rgba(255,255,255,.45);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.auth-input {
  padding: 14px 16px;
  background: #111;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}

.auth-input:focus {
  border-color: var(--gold);
}

.auth-error {
  background: rgba(139,0,0,.15);
  border: 1px solid rgba(139,0,0,.3);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 13px;
  color: #ff6b6b;
}

.auth-btn {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: #0A0A0A;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, transform .1s;
}

.auth-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.auth-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.auth-terms {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  text-align: center;
  line-height: 1.6;
}

.auth-terms a {
  color: var(--gold);
  text-decoration: none;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  display: flex;
  justify-content: center;
  gap: 8px;
}

.auth-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.auth-link:hover {
  text-decoration: underline;
}

/* ===================================
   CHECKOUT PAGE
   =================================== */
.checkout-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
}

#cancelNotice {
  background: rgba(139, 0, 0, 0.12);
  border: 1px solid rgba(139, 0, 0, 0.3);
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 28px;
  text-align: center;
  font-size: 13px;
  color: #ff8080;
  letter-spacing: 0.04em;
}

.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.4;
}

.progress-step.active {
  opacity: 1;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.progress-step.active .step-num {
  border-color: var(--gold);
  color: var(--gold);
}

.step-label {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.progress-line {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 0 12px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.checkout-form-section {
  background: var(--gray-1);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 40px;
}

.checkout-section-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-field:last-child {
  margin-bottom: 0;
}

.form-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.form-input {
  padding: 14px 16px;
  background: #111;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}

.form-input:focus {
  border-color: var(--gold);
}

.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.shipping-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s;
}

.shipping-option input[type="radio"] {
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.shipping-option:has(input:checked) {
  border-color: rgba(212,175,55,.4);
  background: rgba(212,175,55,.04);
}

.shipping-option-content {
  flex: 1;
}

.shipping-option-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.shipping-option-desc {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-bottom: 4px;
}

.shipping-option-price {
  font-size: 12px;
  color: var(--gold);
}

.trust-badges {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

.checkout-cta-btn {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: #0A0A0A;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .2s, transform .1s;
  margin-top: 28px;
}

.checkout-cta-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.checkout-cta-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.checkout-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255,255,255,.3);
}

/* Order summary sidebar */
.order-summary-card {
  background: var(--gray-1);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 32px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.order-summary-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.order-summary-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  max-height: 320px;
  overflow-y: auto;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.summary-item-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.summary-item-info {
  flex: 1;
  min-width: 0;
}

.summary-item-name {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.summary-item-meta {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
}

.summary-item-price {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 14px;
  color: rgba(255,255,255,.6);
}

.order-summary-row span:last-child {
  font-weight: 500;
}

.order-summary-total {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-bottom: none;
  padding-top: 16px;
  margin-top: 4px;
}

.order-summary-note {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  text-align: center;
  margin-top: 16px;
  letter-spacing: .05em;
}

/* ===================================
   CHECKOUT SUCCESS PAGE
   =================================== */
.success-header {
  text-align: center;
  padding: 40px 0 48px;
}

.success-icon {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,.2); }
  50% { box-shadow: 0 0 0 12px rgba(212,175,55,0); }
}

.success-title {
  font-family: var(--font-display);
  font-size: clamp(36px,6vw,56px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.success-sub {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  margin-bottom: 32px;
}

.success-order-number {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 40px;
  padding: 12px 28px;
}

.order-num-label {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.order-num-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.success-card {
  background: var(--gray-1);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 40px;
  max-width: 640px;
  margin: 0 auto 40px;
}

.success-card-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.success-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.success-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.success-step-num {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.success-step-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.success-step-desc {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.success-btn-primary {
  padding: 14px 32px;
  background: var(--gold);
  color: #0A0A0A;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background .2s;
}

.success-btn-primary:hover {
  background: var(--gold-hover);
}

.success-btn-secondary {
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  transition: border-color .2s;
}

.success-btn-secondary:hover {
  border-color: rgba(255,255,255,.4);
}

.success-footer-quote {
  text-align: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,.25);
}

/* ===================================
   ACCOUNT PAGE
   =================================== */
.account-page {
  max-width: 900px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
}

.account-header {
  margin-bottom: 32px;
}

.account-title {
  font-family: var(--font-display);
  font-size: clamp(32px,5vw,48px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.account-welcome {
  font-size: 14px;
  color: rgba(255,255,255,.5);
}

.account-nav-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 36px;
  overflow-x: auto;
}

.account-tab {
  padding: 14px 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,.45);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s;
  white-space: nowrap;
}

.account-tab:hover {
  color: #fff;
}

.account-tab.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

.account-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.account-empty-state {
  text-align: center;
  padding: 60px 0;
  color: rgba(255,255,255,.35);
  font-size: 14px;
}

.account-empty-state a {
  color: var(--gold);
  text-decoration: none;
}

.order-card {
  background: var(--gray-1);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 28px;
}

.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.order-number {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.order-date {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
}

.order-status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.order-status--confirmed { background: rgba(34,197,94,.15); color: #22c55e; }
.order-status--pending { background: rgba(212,175,55,.15); color: var(--gold); }
.order-status--processing { background: rgba(59,130,246,.15); color: #60a5fa; }
.order-status--shipped { background: rgba(34,197,94,.15); color: #22c55e; }

.order-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

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

.order-item-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.order-item-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.order-item-meta {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
}

.order-item-price {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-left: auto;
  flex-shrink: 0;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.04);
  margin-top: 8px;
}

.order-shipping-address {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  padding: 12px 16px;
  background: rgba(255,255,255,.03);
  border-radius: 8px;
  margin-top: 12px;
}

.address-card {
  background: var(--gray-1);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}

.address-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 20px;
  padding: 4px 10px;
}

.address-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.address-line {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
}

.profile-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 480px;
}

.profile-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-field label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ===================================
   MINI CART DRAWER
   =================================== */
.mini-cart-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.mini-cart-drawer.open {
  display: block;
}

.mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}

.mini-cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(480px, 100vw);
  background: #0F0F0F;
  border-left: 1px solid rgba(212,175,55,.1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,.5);
}

.mini-cart-drawer.open .mini-cart-panel {
  transform: translateX(0);
}

.mini-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.mini-cart-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
}

.mini-cart-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  padding: 8px;
  transition: color .2s;
  border-radius: 6px;
  display: flex;
}

.mini-cart-close:hover {
  color: #fff;
  background: rgba(255,255,255,.05);
}

.mini-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mini-cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.mini-cart-item:last-child {
  border-bottom: none;
}

.mini-cart-item-img {
  width: 72px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #1A1A1A;
}

.mini-cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-cart-item-info {
  flex: 1;
  min-width: 0;
}

.mini-cart-item-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-cart-item-meta {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-bottom: 8px;
}

.mini-cart-item-price {
  font-size: 15px;
  font-weight: 600;
  color: #D4AF37;
}

.mini-cart-item-remove {
  background: none;
  border: none;
  color: rgba(255,255,255,.25);
  cursor: pointer;
  font-size: 16px;
  padding: 8px;
  transition: color .2s;
  flex-shrink: 0;
}

.mini-cart-item-remove:hover {
  color: #ff4444;
}

.mini-cart-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: #0F0F0F;
}

.mini-cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.mini-cart-subtotal-label {
  font-size: 14px;
  color: rgba(255,255,255,.5);
}

.mini-cart-subtotal-value {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.mini-cart-note {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  margin-bottom: 20px;
  text-align: center;
}

.mini-cart-cta {
  display: block;
  width: 100%;
  padding: 16px;
  background: #D4AF37;
  color: #0A0A0A;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: background .2s;
  margin-bottom: 12px;
}

.mini-cart-cta:hover {
  background: #E5C14A;
}

.mini-cart-continue {
  display: block;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  letter-spacing: .05em;
  transition: color .2s;
}

.mini-cart-continue:hover {
  color: #D4AF37;
}

.mini-cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 16px;
}

.mini-cart-empty-icon {
  font-size: 48px;
  color: #444;
}

.mini-cart-empty-text {
  font-size: 14px;
  color: rgba(255,255,255,.4);
}

/* ===================================
   LEGAL PAGES
   =================================== */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
}

.legal-header {
  text-align: center;
  margin-bottom: 56px;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(32px,5vw,48px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.legal-updated {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  letter-spacing: .05em;
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.legal-body p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
}

.legal-body ul {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-body li {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* ===================================
   RESPONSIVE — Checkout / Auth
   =================================== */
@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary-card {
    position: static;
    order: -1;
  }

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

@media (max-width: 600px) {
  .checkout-page {
    padding: calc(var(--nav-height) + 20px) 16px 60px;
  }

  .checkout-form-section {
    padding: 24px 20px;
  }

  .checkout-progress {
    gap: 0;
  }

  .progress-line {
    width: 24px;
  }

  .step-label {
    display: none;
  }

  .trust-badges {
    gap: 16px;
  }

  .checkout-cta-btn {
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 16px;
    width: auto;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0,0,0,.5);
  }

  .auth-card {
    padding: 32px 24px;
  }

  .success-actions {
    flex-direction: column;
    align-items: center;
  }

  .success-btn-primary,
  .success-btn-secondary {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .account-nav-tabs {
    gap: 0;
  }

  .account-tab {
    padding: 12px 16px;
    font-size: 11px;
  }
}