@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-hover: #1a1a1a;
  --text: #f5f5f5;
  --text-muted: #888;
  --text-dim: #555;
  --accent: #e63946;
  --accent-dim: #a32832;
  --border: #222;
  --border-light: #333;
  --gold: #d4a017;
  --font: 'Inter', -apple-system, sans-serif;
  --max-w: 1280px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input { font-family: var(--font); }

.hidden { display: none !important; }

/* ─── NAVBAR ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo-img {
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 4px;
}

.logo-sub {
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--text-muted);
  font-weight: 500;
}

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

.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  cursor: pointer;
}

.nav-links a:hover { color: var(--text); }

.nav-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--text-muted);
}

.nav-icons svg { cursor: pointer; transition: color 0.2s; }
.nav-icons svg:hover { color: var(--text); }

.nav-icon-wrap {
  position: relative;
  display: inline-flex;
}

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

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--text-muted);
}

/* ─── MOBILE MENU ───────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}

.mobile-menu-header button {
  background: none;
  border: none;
  color: var(--text-muted);
}

.mobile-menu a {
  font-size: 18px;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  cursor: pointer;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 700;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-outline:hover { border-color: var(--text); }

.btn-accent {
  background: var(--accent);
  color: white;
}
.btn-accent:hover { background: var(--accent-dim); }

.btn-sm {
  padding: 10px 20px;
  font-size: 11px;
}

.btn-full { width: 100%; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.png') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── MARQUEE ───────────────────────────────────────────────── */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 25s linear infinite;
}

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

.marquee-item {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ─── SECTIONS ──────────────────────────────────────────────── */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.section h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-link {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}
.section-link:hover { color: var(--text); }

/* ─── PRODUCT GRID ──────────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
}
.card:hover { border-color: var(--border-light); }

.card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 700;
  padding: 4px 10px;
  background: var(--accent);
  color: white;
}

.card-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.card-heart:hover { color: var(--accent); }
.card-heart.active { color: var(--accent); }

.card-info { padding: 16px; }

.card-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-cat {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.card-price {
  font-size: 15px;
  font-weight: 700;
  margin-top: 8px;
}

/* ─── CATEGORY GRID ─────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.cat-card {
  position: relative;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cat-card:hover { border-color: var(--accent); }

.cat-eyebrow {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.cat-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cat-link {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--accent);
}

/* ─── COUNTDOWN ─────────────────────────────────────────────── */
.countdown-section {
  text-align: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
}

.countdown-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-num {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 4px;
}

.notify-input {
  display: flex;
  gap: 0;
  margin-top: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.notify-input input {
  flex: 1;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  font-size: 13px;
  outline: none;
}
.notify-input input::placeholder { color: var(--text-dim); }

/* ─── VALUES ────────────────────────────────────────────────── */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 60px;
  margin-top: 60px;
}

.value h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.value p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── NEWSLETTER ────────────────────────────────────────────── */
.newsletter {
  text-align: center;
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}

.newsletter h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
}

.newsletter p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

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

.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  font-size: 13px;
  outline: none;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 16px;
}

.footer h4 {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.footer a {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 10px;
  transition: color 0.2s;
  cursor: pointer;
}
.footer a:hover { color: var(--text); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
}

/* ─── CART DRAWER ───────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 300;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 100vw;
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 301;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 16px; font-weight: 700; }
.cart-header button { background: none; border: none; color: var(--text-muted); cursor: pointer; }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 0;
}
.cart-empty p { color: var(--text-muted); font-size: 14px; margin-bottom: 4px; }
.cart-empty span { color: var(--text-dim); font-size: 13px; }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item img { width: 80px; height: 100px; object-fit: cover; }

.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; }
.cart-item-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.cart-item-price { font-size: 14px; font-weight: 700; margin-top: 8px; }

.cart-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.cart-qty button {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.cart-qty span { font-size: 14px; font-weight: 600; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ─── SHOP PAGE ─────────────────────────────────────────────── */
.shop-header {
  padding: 60px 24px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.shop-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
}
.shop-header span {
  font-size: 13px;
  color: var(--text-muted);
}

.shop-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 600;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--text);
  color: var(--text);
}

.sort-select {
  padding: 8px 16px;
  font-size: 11px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font);
  cursor: pointer;
  outline: none;
}

/* ─── ABOUT PAGE ────────────────────────────────────────────── */
.about-hero {
  position: relative;
  height: 50vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0808 50%, #0a0a0a 100%);
}

.about-hero-content {
  text-align: center;
  z-index: 2;
  padding: 24px;
}

.about-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
}

.about-hero p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 20px auto 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
}

.about-card {
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.about-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.about-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── REWARDS PAGE ──────────────────────────────────────────── */
.rewards-header {
  text-align: center;
  padding: 80px 24px 40px;
  max-width: 700px;
  margin: 0 auto;
}
.rewards-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
}
.rewards-header p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.rewards-status {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  max-width: 500px;
  margin: 0 auto 60px;
}

.rewards-stat { text-align: center; }
.rewards-stat-label { font-size: 10px; letter-spacing: 2px; color: var(--text-muted); }
.rewards-stat-val { font-size: 24px; font-weight: 800; margin-top: 4px; }

.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 60px;
}

.tier {
  padding: 32px 24px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.tier-num { font-size: 10px; letter-spacing: 2px; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.tier h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.tier-pts { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.tier li {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rewards-how {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px 80px;
  border-top: 1px solid var(--border);
}
.rewards-how h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.rewards-how p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── PRODUCT DETAIL ────────────────────────────────────────── */
.pd {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px;
}

.pd-back {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  background: none;
  border: none;
  font-family: var(--font);
  transition: color 0.2s;
}
.pd-back:hover { color: var(--text); }

.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.pd-main-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid var(--border);
}

.pd-cat {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pd-name {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  margin-bottom: 8px;
}

.pd-price {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pd-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pd-label {
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pd-colors {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.pd-color {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}
.pd-color.active { border-color: var(--text); }

.pd-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.pd-size {
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.pd-size.active {
  border-color: var(--text);
  color: var(--text);
}

.pd-qty {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.pd-qty button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 18px;
}
.pd-qty span { font-size: 16px; font-weight: 600; min-width: 24px; text-align: center; }

.pd-actions {
  display: flex;
  gap: 12px;
}
.pd-actions .btn:first-child { flex: 1; }

.pd-perks {
  margin-top: 24px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.pd-perks li {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-size-chart-link {
  font-size: 11px;
  color: var(--accent);
  cursor: pointer;
  letter-spacing: 1px;
  background: none;
  border: none;
  font-family: var(--font);
}

/* ─── WISHLIST PAGE ─────────────────────────────────────────── */
.wishlist-empty {
  text-align: center;
  padding: 120px 24px;
}
.wishlist-empty h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; margin-top: 16px; }
.wishlist-empty p { color: var(--text-muted); }

/* ─── SIZE CHART MODAL ──────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}
.modal h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.modal p { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }

.modal table { width: 100%; border-collapse: collapse; font-size: 13px; }
.modal th, .modal td { padding: 10px 12px; border-bottom: 1px solid var(--border); text-align: left; }
.modal th { color: var(--text-muted); font-weight: 600; font-size: 11px; letter-spacing: 1px; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 20px;
}

/* ─── ANIMATIONS ────────────────────────────────────────────── */
.fade-in {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* ─── CHECKOUT PAGE ──────────────────────────────────────────── */
.checkout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px;
}

.checkout-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 32px;
}

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

.checkout-section {
  margin-bottom: 32px;
}

.checkout-section h3 {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.checkout-items {
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.checkout-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.checkout-item:last-child { border-bottom: none; }

.checkout-item img {
  width: 60px;
  height: 80px;
  object-fit: cover;
}

.checkout-item-info { flex: 1; }
.checkout-item-name { font-size: 14px; font-weight: 600; }
.checkout-item-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.checkout-item-qty { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.checkout-item-price { font-size: 14px; font-weight: 700; }

.checkout-form-group {
  margin-bottom: 12px;
}

.checkout-form-group input,
.checkout-form-group select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
}

.checkout-form-group input:focus,
.checkout-form-group select:focus {
  border-color: var(--accent);
}

.checkout-form-group input::placeholder {
  color: var(--text-dim);
}

.checkout-form-group select {
  cursor: pointer;
}

.checkout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-discount {
  display: flex;
  gap: 0;
}

.checkout-discount input {
  flex: 1;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  font-size: 13px;
  font-family: var(--font);
  outline: none;
}

.checkout-discount input:focus {
  border-color: var(--accent);
}

.checkout-totals {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
}

.checkout-total-row span:last-child {
  color: var(--text);
}

.checkout-total-row.total {
  font-weight: 700;
  font-size: 18px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 8px;
  color: var(--text);
}

.checkout-total-row.total span {
  color: var(--text);
}

.checkout-pay-btn {
  margin-top: 24px;
  padding: 18px 32px;
  font-size: 14px;
  letter-spacing: 2px;
}

/* ─── CONFIRMATION PAGE ──────────────────────────────────────── */
.confirmation {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.confirmation-details {
  text-align: left;
  margin-top: 40px;
}

.confirmation-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .pd-layout { grid-template-columns: 1fr; }
  .hero { height: 80vh; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .countdown-grid { gap: 16px; }
  .hero-btns { flex-direction: column; align-items: center; }
}
