/* ═══════════════════════════════════════
   MEMEDRIP STORE — Design System
   ═══════════════════════════════════════ */

:root {
  --bg: #050505;
  --surface: #111111;
  --surface-hover: #181818;
  --accent: #c8ff00;
  --accent-dim: #a3cc00;
  --text: #f5f5f5;
  --text-muted: #888888;
  --border: #222222;
  --danger: #ff4444;
  --success: #00ff88;
  --radius: 0;
}

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

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

.noise {
  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: 1;
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--text);
  transition: color 0.2s;
}

.nav-logo:hover { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active { color: var(--accent); }

.nav-cart {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  transition: all 0.2s;
  font-family: 'Space Grotesk', sans-serif;
}

.nav-cart:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cart-count {
  font-size: 0.75rem;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
}

.cart-count.empty { background: var(--border); color: var(--text-muted); }

/* ═══════════════════════════════════════
   PAGE LAYOUT
   ═══════════════════════════════════════ */

main {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 60px);
  padding-top: 60px;
}

.page-header {
  padding: 4rem 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
  display: block;
}

.page-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

/* ═══════════════════════════════════════
   FILTER BAR
   ═══════════════════════════════════════ */

.filter-bar {
  padding: 0 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

/* ═══════════════════════════════════════
   PRODUCT GRID
   ═══════════════════════════════════════ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.product-card {
  background: var(--bg);
  display: block;
  transition: background 0.3s;
  cursor: pointer;
}

.product-card:hover { background: var(--surface); }

.product-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.product-placeholder::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(200, 255, 0, 0.03) 100%);
}

.product-placeholder.gradient-1 { background: linear-gradient(135deg, #111 0%, #1a1a00 100%); }
.product-placeholder.gradient-2 { background: linear-gradient(135deg, #111 0%, #001a1a 100%); }
.product-placeholder.gradient-3 { background: linear-gradient(135deg, #111 0%, #1a0011 100%); }
.product-placeholder.gradient-4 { background: linear-gradient(135deg, #111 0%, #0d1a00 100%); }
.product-placeholder.gradient-5 { background: linear-gradient(135deg, #0a0a0a 0%, #1a1100 100%); }

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

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  z-index: 2;
}

.product-badge.live {
  background: var(--accent);
  color: var(--bg);
}

.product-badge.upcoming {
  background: var(--surface);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.product-badge.sold-out {
  background: var(--danger);
  color: white;
}

.product-card-info {
  padding: 1.2rem 1.5rem;
  border-top: 1px solid var(--border);
}

.product-card-drop {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.product-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.product-card-price {
  font-size: 0.95rem;
  font-weight: 600;
}

.product-card-price .compare {
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
  font-weight: 400;
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════
   DROPS GRID
   ═══════════════════════════════════════ */

.drops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.drop-card {
  background: var(--bg);
  padding: 2.5rem;
  display: block;
  transition: background 0.3s;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.drop-card:hover { background: var(--surface); }

.drop-card-status {
  position: absolute;
  top: 2rem;
  left: 2.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.drop-card-status.live { color: var(--accent); }
.drop-card-status.upcoming { color: var(--text-muted); }
.drop-card-status.ended { color: var(--danger); }

.drop-card-count {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.drop-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  line-height: 1;
}

.drop-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.drop-card .countdown-inline {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.drop-card .countdown-inline.ended { color: var(--text-muted); }

/* ═══════════════════════════════════════
   DROP HERO
   ═══════════════════════════════════════ */

.drop-hero {
  padding: 5rem 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.drop-hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
}

.drop-hero-status.live {
  color: var(--accent);
  border-color: var(--accent);
}

.drop-hero-status .pulse {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.drop-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.drop-hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.drop-hero .countdown-large {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.countdown-unit {
  text-align: center;
}

.countdown-unit .value {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.countdown-unit .label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.drop-hero-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
  max-width: 1200px;
}

/* ═══════════════════════════════════════
   PRODUCT DETAIL
   ═══════════════════════════════════════ */

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 120px);
  border-bottom: 1px solid var(--border);
}

.product-gallery {
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.product-image-main {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.product-image-main .product-placeholder {
  font-size: 8rem;
}

.product-info {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-drop-link {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
  display: inline-block;
  transition: opacity 0.2s;
}

.product-drop-link:hover { opacity: 0.7; }

.product-info h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.product-price-display {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.product-price-display .compare {
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.75rem;
  font-weight: 400;
  font-size: 1.1rem;
}

.product-price-display .save-badge {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--success);
  margin-left: 0.75rem;
  font-weight: 600;
}

.product-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

.size-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.size-btn {
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0 0.75rem;
}

.size-btn:hover {
  border-color: var(--text-muted);
}

.size-btn.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.add-to-cart-btn {
  width: 100%;
  max-width: 400px;
  padding: 1rem 2rem;
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.add-to-cart-btn:hover {
  background: var(--accent-dim);
}

.add-to-cart-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.add-to-cart-btn.added {
  background: var(--success);
  color: var(--bg);
}

/* Related Products */
.related-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.related-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════
   CART PAGE
   ═══════════════════════════════════════ */

.cart-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.cart-empty {
  text-align: center;
  padding: 6rem 2rem;
}

.cart-empty h2 {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cart-empty p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cart-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--border);
  flex-shrink: 0;
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cart-item-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cart-item-price {
  font-weight: 600;
  font-size: 1.1rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.5rem;
  transition: color 0.2s;
  font-family: 'Space Grotesk', sans-serif;
}

.cart-item-remove:hover { color: var(--danger); }

.cart-summary {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-total-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cart-total-value {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.checkout-btn {
  width: 100%;
  padding: 1.2rem;
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: background 0.2s;
}

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

/* ═══════════════════════════════════════
   STORE FOOTER
   ═══════════════════════════════════════ */

.store-footer {
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.footer-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   TOAST
   ═══════════════════════════════════════ */

.toast {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  z-index: 1000;
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.toast.show { bottom: 2rem; }

/* ═══════════════════════════════════════
   LOADING STATE
   ═══════════════════════════════════════ */

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
}

.loading::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin-left: 1rem;
  animation: spin 0.8s linear infinite;
}

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

/* ═══════════════════════════════════════
   404 / EMPTY STATES
   ═══════════════════════════════════════ */

.empty-state {
  text-align: center;
  padding: 8rem 2rem;
}

.empty-state h2 {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.empty-state p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

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

.btn-outline {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 768px) {
  .nav { padding: 0 1rem; }
  .nav-logo { font-size: 0.9rem; }
  .nav-links { gap: 0.75rem; }
  .nav-link { font-size: 0.7rem; letter-spacing: 0.1em; }

  .page-header { padding: 3rem 1.5rem 2rem; }
  .filter-bar { padding: 0 1.5rem 1.5rem; }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .drops-grid {
    grid-template-columns: 1fr;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-gallery { border-right: none; border-bottom: 1px solid var(--border); }
  .product-info { padding: 2rem 1.5rem; }

  .drop-hero { padding: 3rem 1.5rem 2rem; }
  .drop-hero .countdown-large { gap: 1rem; }
  .countdown-unit .value { font-size: 1.8rem; }

  .cart-container { padding: 0 1.5rem 4rem; }
  .related-section { padding: 3rem 1.5rem; }

  .store-footer .footer-inner { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .nav-logo { font-size: 0.8rem; }
  .nav-links { gap: 0.5rem; }
}

/* ═══════════════════════════════════════
   CHECKOUT & ORDER CONFIRMATION
   ═══════════════════════════════════════ */

.cart-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.checkout-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.checkout-error {
  text-align: center;
  color: var(--danger);
  font-size: 0.9rem;
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.2);
}

/* Order Confirmation Page */

.order-loading {
  text-align: center;
  padding: 6rem 2rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 1rem;
  animation: spin 0.8s linear infinite;
}

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

.order-confirmation {
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  text-align: center;
}

.order-icon {
  width: 72px;
  height: 72px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.order-confirmation h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.order-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.order-card {
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: left;
  margin-bottom: 2rem;
}

.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.order-number {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.order-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.order-status-badge {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-pending, .status-processing { background: #333; color: #999; }
.status-paid, .status-confirmed { background: rgba(200, 255, 0, 0.15); color: var(--accent); }
.status-fulfilled { background: rgba(0, 150, 255, 0.15); color: #4da6ff; }
.status-shipped { background: rgba(0, 255, 136, 0.15); color: var(--success); }
.status-delivered { background: rgba(0, 255, 136, 0.25); color: var(--success); }
.status-cancelled { background: rgba(255, 68, 68, 0.15); color: var(--danger); }

.order-items-list {
  padding: 1rem 1.5rem;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

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

.order-item-name {
  font-weight: 600;
  display: block;
}

.order-item-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

.order-item-price {
  font-weight: 600;
  white-space: nowrap;
}

.order-totals {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.order-total-row.total {
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.order-tracking {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 255, 136, 0.05);
}

.order-tracking h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--success);
  margin-bottom: 0.5rem;
}

.order-email-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.order-actions {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .order-confirmation { padding: 3rem 1.5rem 4rem; }
  .order-card-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
