/** Shopify CDN: Minification failed

Line 22:13 Expected identifier but found whitespace
Line 22:15 Unexpected "{"
Line 22:25 Expected ":"
Line 23:15 Expected identifier but found whitespace
Line 23:17 Unexpected "{"
Line 23:27 Expected ":"
Line 24:17 Expected identifier but found whitespace
Line 24:19 Unexpected "{"
Line 24:29 Expected ":"
Line 25:23 Expected identifier but found whitespace
... and 28 more hidden warnings

**/
/* ================================================
   YOUR BRAND — Shopify Theme
   All customizable via Shopify Theme Editor settings
   ================================================ */

:root {
  --color-bg: {{ settings.color_bg }};
  --color-text: {{ settings.color_text }};
  --color-accent: {{ settings.color_accent }};
  --color-accent-hover: {{ settings.color_accent | color_darken: 15 }};
  --color-muted: #777777;
  --color-border: #e8e8e8;
  --color-sale: #c0392b;
  --font-main: 'Inter', {{ settings.font_body.family }}, {{ settings.font_body.fallback_families }}, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Inter', {{ settings.font_heading.family }}, {{ settings.font_heading.fallback_families }}, -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-height: 60px;
  --ticker-height: 32px;
  --border-radius: {{ settings.border_radius }}px;
}

{{ settings.font_body | font_face: font_display: 'swap' }}
{{ settings.font_heading | font_face: font_display: 'swap' }}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1,h2,h3,h4,h5 { font-family: var(--font-heading); }

/* ================================================
   TICKER
   ================================================ */
.ticker-wrap {
  height: var(--ticker-height);
  overflow: hidden;
  display: flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 24s linear infinite;
}
.ticker-track span { padding-right: 60px; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ================================================
   HEADER
   ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
.nav-right { justify-content: flex-end; }
.nav-left a, .nav-right a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: opacity 0.2s;
}
.nav-left a:hover, .nav-right a:hover { opacity: 0.5; }
.logo {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  flex: 1;
}
.logo img { display: inline-block; }
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  position: relative;
  transition: opacity 0.2s;
}
.icon-btn:hover { opacity: 0.5; }
.nav-link-sm {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.cart-count {
  position: absolute;
  top: -4px; right: -6px;
  background: var(--color-accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-count.visible { display: flex; }

/* Search bar */
.search-bar { display: none; align-items: center; gap: 8px; padding: 10px 24px; border-top: 1px solid var(--color-border); }
.search-bar.open { display: flex; }
.search-bar input { flex: 1; padding: 8px 12px; border: 2px solid var(--color-border); font-family: inherit; font-size: 13px; outline: none; border-radius: var(--border-radius); transition: border-color 0.2s; }
.search-bar input:focus { border-color: var(--color-text); }
.search-bar button { padding: 8px 16px; background: var(--color-accent); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; border-radius: var(--border-radius); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 60px 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 560px;
}
.hero-align-center { margin: 0 auto; text-align: center; }
.hero-align-right   { margin-left: auto; text-align: right; }
.hero-sub { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; opacity: 0.8; }
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-detail { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7; margin-bottom: 28px; }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--border-radius);
  transition: background 0.22s ease, color 0.22s ease,
              border-color 0.22s ease, box-shadow 0.22s ease,
              transform 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}

/* Primary — solid dark, always-visible white text */
.btn-primary {
  background: #111111;
  color: #ffffff;
  border: 2px solid #111111;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.btn-primary:hover {
  background: #333333;
  border-color: #333333;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(0,0,0,0.12); }

/* Outline — always-visible dark text and border */
.btn-outline {
  background: transparent;
  color: #111111;
  border: 2px solid #111111;
}
.btn-outline:hover {
  background: #111111;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
  transform: translateY(-1px);
}
.btn-outline:active { transform: translateY(0); box-shadow: none; }

/* Add-to-cart — solid dark, always-visible white text */
.btn-add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 16px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: #111111;
  color: #ffffff;
  border: 2px solid #111111;
  border-radius: var(--border-radius);
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.18s ease;
  margin-top: 12px;
  cursor: pointer;
}
.btn-add:hover {
  background: #333333;
  border-color: #333333;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transform: translateY(-1px);
}
.btn-add:active { transform: translateY(0); box-shadow: none; }
.btn-add:disabled { opacity: 0.35; cursor: not-allowed; transform: none; box-shadow: none; background: #111111; }

.btn-full { display: flex; width: 100%; }

/* ================================================
   PRODUCTS SECTION
   ================================================ */
.products-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px;
}
.section-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 36px;
  border-bottom: 1.5px solid var(--color-text);
  padding-bottom: 14px;
  color: var(--color-text);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols, 3), 1fr);
  gap: 24px;
}
.view-all-wrap { text-align: center; margin-top: 40px; }
.empty-state { color: var(--color-muted); font-size: 13px; padding: 40px 0; }

/* Product card */
.product-card { display: flex; flex-direction: column; }
.product-img-link { position: relative; display: block; aspect-ratio: 3/4; overflow: hidden; background: #f2f2f2; border-radius: var(--border-radius); }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.product-img-link:hover .product-img { transform: scale(1.05); }
.product-img--placeholder, .product-img--placeholder svg { width: 100%; height: 100%; }
.badge { position: absolute; top: 10px; left: 10px; background: var(--color-accent); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: 0.12em; padding: 4px 9px; text-transform: uppercase; border-radius: 2px; }
.badge.sale { background: var(--color-sale); }
.product-info { padding: 14px 0 4px; }
.product-name { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 5px; line-height: 1.4; }
.product-price { font-size: 13px; font-weight: 500; color: var(--color-muted); letter-spacing: 0.02em; }
.price-sale { color: var(--color-sale); font-weight: 700; margin-right: 8px; }
.price-original { color: var(--color-muted); text-decoration: line-through; font-size: 12px; }

/* ================================================
   COLLECTION PAGE
   ================================================ */
.collection-header { margin-bottom: 40px; }
.collection-header .section-title { margin-bottom: 10px; }
.collection-desc { font-size: 13px; color: var(--color-muted); margin-top: 10px; line-height: 1.7; max-width: 560px; }
.collection-empty {
  text-align: center;
  padding: 80px 24px;
}
.collection-empty p {
  font-size: 13px;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ================================================
   PRODUCT PAGE
   ================================================ */
.product-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-gallery { display: flex; flex-direction: column; gap: 8px; }
.product-main-img { aspect-ratio: 3/4; background: #f4f4f4; overflow: hidden; border-radius: var(--border-radius); }
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.product-thumb { width: 80px; height: 100px; object-fit: cover; cursor: pointer; opacity: 0.6; transition: opacity 0.2s; border: 2px solid transparent; border-radius: var(--border-radius); }
.product-thumb.active, .product-thumb:hover { opacity: 1; border-color: var(--color-accent); }
.product-details { position: sticky; top: calc(var(--nav-height) + var(--ticker-height) + 20px); }
.product-details .product-name { font-size: 22px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px; }
.product-details .product-price { font-size: 20px; font-weight: 500; margin-bottom: 24px; }
.variant-group { margin-bottom: 20px; }
.size-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.size-grid { display: flex; flex-wrap: wrap; gap: 8px; }
/* Size / colour buttons — always visible, never disappear */
.size-btn {
  padding: 9px 18px;
  background: #f0f0f0;
  color: #666666;
  border: 2px solid #d4d4d4;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
  border-radius: var(--border-radius);
}
.size-btn:hover:not(.selected):not(.unavailable) {
  background: #e0e0e0;
  color: #333333;
  border-color: #b0b0b0;
}
.size-btn.selected {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}
/* Unavailable — greyed out, stays visible, strikethrough */
.size-btn.unavailable {
  opacity: 0.38;
  text-decoration: line-through;
  text-decoration-color: #999;
  cursor: not-allowed;
}
.size-btn.unavailable:hover {
  background: #f0f0f0;
  color: #666666;
  border-color: #d4d4d4;
  transform: none;
  box-shadow: none;
}
.product-desc { font-size: 13px; color: var(--color-muted); line-height: 1.7; margin-bottom: 28px; }
.product-meta { font-size: 11px; color: var(--color-muted); letter-spacing: 0.06em; text-transform: uppercase; border-top: 1px solid var(--color-border); padding-top: 20px; margin-top: 20px; }
.product-meta p { margin-bottom: 6px; }

/* ================================================
   CART DRAWER
   ================================================ */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; top: 0; right: 0; width: 400px; max-width: 100vw; height: 100vh; background: #fff; z-index: 201; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); box-shadow: -4px 0 24px rgba(0,0,0,0.12); }
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--color-border); }
.cart-header h3 { font-size: 14px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { text-align: center; padding: 40px 0; }
.cart-empty p { color: var(--color-muted); margin-bottom: 20px; font-size: 13px; }
.cart-item { display: flex; gap: 14px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--color-border); }
.cart-item-img { width: 72px; height: 90px; object-fit: cover; background: #f4f4f4; flex-shrink: 0; border-radius: var(--border-radius); }
.cart-item-img--placeholder { width: 72px; height: 90px; background: #f4f4f4; flex-shrink: 0; }
.cart-item-details { flex: 1; }
.cart-item-name { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }
.cart-item-variant { font-size: 11px; color: var(--color-muted); margin-bottom: 4px; }
.cart-item-price { font-size: 13px; color: var(--color-muted); margin-bottom: 10px; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; }
.cart-item-qty button { width: 24px; height: 24px; border: 1px solid var(--color-border); font-size: 14px; display: flex; align-items: center; justify-content: center; transition: background 0.15s; border-radius: var(--border-radius); }
.cart-item-qty button:hover { background: var(--color-border); }
.cart-item-qty span { font-size: 13px; min-width: 20px; text-align: center; }
.cart-item-remove { font-size: 11px; color: var(--color-muted); text-decoration: underline; cursor: pointer; background: none; border: none; margin-top: 6px; display: block; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--color-border); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.cart-note { font-size: 11px; color: var(--color-muted); margin-bottom: 16px; }
.cart-footer .btn { margin-bottom: 8px; }

/* ================================================
   CART PAGE (no-JS fallback)
   ================================================ */
.cart-page { max-width: 900px; margin: 0 auto; padding: 60px 24px; }
.cart-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.cart-table th { text-align: left; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 2px solid var(--color-text); padding-bottom: 12px; }
.cart-table td { padding: 16px 0; border-bottom: 1px solid var(--color-border); vertical-align: middle; font-size: 13px; }
.cart-table-product { display: flex; gap: 12px; align-items: center; }
.cart-table-img { width: 64px; height: 80px; object-fit: cover; border-radius: var(--border-radius); flex-shrink: 0; }
.cart-page-footer { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.cart-page-total { min-width: 280px; }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-page { max-width: 600px; margin: 0 auto; padding: 80px 24px; }
.contact-page h1 { font-size: 28px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.contact-page .subtitle { font-size: 13px; color: var(--color-muted); margin-bottom: 40px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; color: var(--color-muted); }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 2px solid var(--color-border); font-family: inherit; font-size: 14px; outline: none; transition: border-color 0.22s ease; border-radius: var(--border-radius); background: #fff; color: var(--color-text); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--color-text); }
.form-group textarea { height: 140px; resize: vertical; }
.form-success, .newsletter-success { padding: 16px; background: #f0faf0; border: 1px solid #b0ddb0; font-size: 13px; color: #2a7a2a; margin-bottom: 16px; border-radius: var(--border-radius); }
.form-errors { padding: 16px; background: #fff0f0; border: 1px solid #ddb0b0; font-size: 13px; color: #7a2a2a; margin-bottom: 16px; border-radius: var(--border-radius); }
.contact-info { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--color-border); }
.contact-info h3 { font-size: 13px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.contact-info p { font-size: 13px; color: var(--color-muted); margin-bottom: 8px; }
.contact-info a { color: var(--color-text); text-decoration: underline; }

/* ================================================
   FOOTER
   ================================================ */
.site-footer { background: var(--color-text); color: #fff; padding: 60px 24px 32px; }
.footer-newsletter { max-width: 480px; margin: 0 auto 56px; text-align: center; }
.footer-newsletter h4 { font-size: 18px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px; }
.footer-newsletter p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input { flex: 1; padding: 10px 14px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-family: inherit; font-size: 13px; outline: none; border-radius: var(--border-radius); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form .btn-primary { background: #fff; color: #111; border-color: #fff; white-space: nowrap; }
.newsletter-form .btn-primary:hover { background: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.85); }
.footer-links { display: flex; justify-content: center; gap: 64px; margin-bottom: 48px; flex-wrap: wrap; }
.footer-col h5 { font-size: 11px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 14px; color: rgba(255,255,255,0.5); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  .product-grid { --grid-cols: 2 !important; }
  .footer-links { gap: 36px; }
  .product-page { grid-template-columns: 1fr; gap: 32px; }
  .product-details { position: static; }
  .cart-page-footer { flex-direction: column; }
}
@media (max-width: 600px) {
  .nav-inner { padding: 0 16px; }
  .nav-left { display: none; }
  .logo { text-align: left; }
  .hero { padding: 40px 20px; }
  .product-grid { --grid-cols: 2 !important; gap: 12px; }
  .products-section { padding: 40px 16px; }
  .newsletter-form { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 32px; align-items: center; text-align: center; }
  .cart-drawer { width: 100vw; }
}

/* ================================================
   CUSTOMER PAGES  (login · register · account)
   ================================================ */
.customer-page {
  max-width: 480px;
  margin: 0 auto;
  padding: 72px 24px 80px;
}
.customer-page--wide {
  max-width: 860px;
}

.customer-heading {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--color-text);
  margin-bottom: 36px;
}

.customer-subheading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.customer-recover-text {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.customer-divider {
  border: none;
  border-top: 1.5px solid var(--color-border);
  margin: 32px 0;
}

.customer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.customer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}

.customer-link-sm {
  font-size: 12px;
  color: var(--color-text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.customer-link-sm:hover { opacity: 0.55; }

/* Name row (first + last on same line) */
.customer-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) { .customer-name-row { grid-template-columns: 1fr; } }

/* Account dashboard */
.account-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.account-welcome {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 4px;
}
.account-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 760px) { .account-grid { grid-template-columns: 1fr; } }

.account-section { }
.account-section-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--color-border);
}
.account-section--details {
  background: #f9f9f9;
  padding: 24px;
  border-radius: var(--border-radius);
  border: 1.5px solid var(--color-border);
}
.account-detail {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 4px;
}
.account-empty { text-align: center; padding: 32px 0; }
.account-empty p { font-size: 13px; color: var(--color-muted); }

/* Order list */
.order-list { display: flex; flex-direction: column; gap: 0; }
.order-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 13px;
}
.order-number { font-weight: 700; font-size: 13px; letter-spacing: 0.04em; }
.order-date { font-size: 11px; color: var(--color-muted); margin-top: 2px; letter-spacing: 0.04em; }
.order-col--total { font-weight: 600; }
.order-view-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.order-view-link:hover { opacity: 0.5; }
.order-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  background: #f0f0f0;
  color: var(--color-muted);
}
.order-status--fulfilled { background: #e6f4ea; color: #1e6e34; }
.order-status--unfulfilled { background: #fff4e5; color: #a05c00; }
.order-status--refunded { background: #fce8e8; color: #991b1b; }
@media (max-width: 600px) {
  .order-row { grid-template-columns: 1fr auto; }
  .order-col--total, .order-view-link { display: none; }
}

/* ================================================
   404 PAGE
   ================================================ */
.error-page {
  min-height: calc(100vh - var(--nav-height) - var(--ticker-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
}
.error-page-inner {
  max-width: 480px;
  animation: pw-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.error-code {
  font-family: var(--font-heading);
  font-size: clamp(80px, 18vw, 140px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-text);
  opacity: 0.06;
  margin-bottom: -20px;
  user-select: none;
}
.error-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.error-divider {
  width: 36px;
  height: 1.5px;
  background: var(--color-border);
  margin: 0 auto 20px;
}
.error-message {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

/* ================================================
   PASSWORD PAGE
   ================================================ */
.password-page {
  background: #ffffff;
  min-height: 100vh;
  margin: 0;
}

/* Outer shell */
.pw-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

/* ---- Header ---- */
.pw-header {
  width: 100%;
  max-width: 640px;
  padding: 44px 0 0;
  text-align: center;
}
.pw-logo {
  max-height: 48px;
  width: auto;
  display: inline-block;
}
.pw-brand-name {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #111111;
}

/* ---- Main ---- */
.pw-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 600px;
  width: 100%;
  padding: 56px 0 48px;
}

.pw-heading {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-size: clamp(40px, 9vw, 80px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #111111;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.pw-sub {
  font-size: 14px;
  color: #888888;
  letter-spacing: 0.02em;
  line-height: 1.65;
  margin-bottom: 44px;
  max-width: 360px;
}

/* ---- Countdown timer ---- */
.pw-timer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 44px;
}
.pw-timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 76px;
}
.pw-timer-num {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-size: clamp(42px, 9vw, 68px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #111111;
}
.pw-timer-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #bbbbbb;
  margin-top: 9px;
  font-weight: 600;
}
.pw-timer-sep {
  font-size: clamp(30px, 6vw, 50px);
  font-weight: 300;
  color: #dddddd;
  line-height: 1;
  padding: 0 2px;
  margin-top: 6px;
  user-select: none;
}
.pw-launched {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #111111;
}

/* ---- Divider ---- */
.pw-divider {
  width: 40px;
  height: 1.5px;
  background: #e8e8e8;
  margin: 0 auto 36px;
}

/* ---- Error ---- */
.pw-error {
  font-size: 11px;
  color: #c0392b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ---- Form ---- */
.pw-form {
  display: flex;
  align-items: stretch;
  border: 2px solid #111111;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  transition: box-shadow 0.22s;
}
.pw-form:focus-within {
  box-shadow: 0 0 0 3px rgba(17,17,17,0.1);
}
.pw-input {
  flex: 1;
  background: #ffffff;
  border: none;
  outline: none;
  padding: 15px 18px;
  font-family: var(--font-main, 'Inter', sans-serif);
  font-size: 13px;
  color: #111111;
  min-width: 0;
}
.pw-input::placeholder {
  color: #cccccc;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.pw-submit {
  flex-shrink: 0;
  padding: 15px 24px;
  background: #111111;
  color: #ffffff;
  font-family: var(--font-main, 'Inter', sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.pw-submit:hover { background: #333333; }

/* ---- Footer ---- */
.pw-footer {
  padding: 20px 0 32px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cccccc;
  text-align: center;
}

/* ---- Mobile ---- */
@media (max-width: 480px) {
  .pw-timer-unit { min-width: 56px; }
  .pw-form { max-width: 100%; }
  .pw-main { padding: 40px 0 36px; }
}
