/* ============ RESET / BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0b;
  --bg-alt: #121214;
  --fg: #f2f1ea;
  --fg-dim: #9a9994;
  --accent: #c8ff3d;
  --accent-2: #ff3d6e;
  --line: rgba(242,241,234,0.14);
  --radius: 2px;
  --ease: cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  cursor: default;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* film grain overlay */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-dot {
  position: fixed;
  width: 26px;
  height: 26px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  transition: width .2s var(--ease), height .2s var(--ease), background .2s var(--ease), opacity .2s;
  mix-blend-mode: difference;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot { display: block; }
}
.cursor-dot.hover { width: 52px; height: 52px; background: var(--accent); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(10,10,11,0.75);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
}
.logo .dot { color: var(--accent); }

.main-nav { display: flex; gap: 36px; }
.main-nav a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.main-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 600;
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  transition: border-color .2s, background .2s;
}
.cart-btn:hover { border-color: var(--accent); }
.cart-icon { font-size: 15px; }
.cart-count {
  background: var(--accent);
  color: #0a0a0b;
  font-weight: 700;
  border-radius: 999px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.icon-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  transition: border-color .2s, background .2s;
}
.icon-btn:hover { border-color: var(--accent); }
.icon-glyph { font-size: 15px; line-height: 1; }
.icon-count {
  background: var(--accent);
  color: #0a0a0b;
  font-weight: 700;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.icon-account-label { text-transform: uppercase; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--fg);
  margin: 0 auto;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============ MOBILE NAV ============ */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .3s;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; }
.mobile-nav .modal-close { position: absolute; top: 26px; right: 26px; }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mnav-link {
  font-family: 'Anton', sans-serif;
  font-size: 44px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.mobile-nav-actions button {
  text-align: left;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.mobile-nav-actions button:hover { color: var(--accent); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-top: 48px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  background: var(--accent);
  color: #0a0a0b;
  transform: rotate(-1.2deg) scale(1.03);
  margin-bottom: 40px;
}
.marquee-track {
  display: inline-flex;
  animation: scroll-left 22s linear infinite;
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 0;
}
.marquee-track span { padding-right: 0; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-inner { padding: 40px 32px 120px; position: relative; }
.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 11vw, 148px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.hero-title .line { display: block; }
.hero-title .outline {
  -webkit-text-stroke: 1.5px var(--fg);
  color: transparent;
}
.hero-title .accent { color: var(--accent); }

.hero-sub {
  margin-top: 28px;
  max-width: 460px;
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  margin-top: 36px;
  background: var(--accent);
  color: #0a0a0b;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 18px 34px;
  border-radius: 999px;
  font-size: 14px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 0 0 0 rgba(200,255,61,0);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(200,255,61,0.25);
}
.btn-primary.full { width: 100%; text-align: center; }

.hero-num {
  position: absolute;
  right: 32px;
  top: 20px;
  font-family: 'Anton', sans-serif;
  font-size: 220px;
  line-height: 1;
  color: var(--bg-alt);
  z-index: -1;
  user-select: none;
}

/* ============ SHOP ============ */
.shop { padding: 120px 0 100px; }
.shop-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-head h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.5px;
}
.shop-count { color: var(--fg-dim); font-size: 14px; letter-spacing: 1px; }

.filters {
  display: flex;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.chip {
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--fg); }
.chip.active { background: var(--fg); color: #0a0a0b; border-color: var(--fg); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-card {
  background: var(--bg);
  padding: 28px 24px 24px;
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), background .3s;
}
.product-card.in-view { opacity: 1; transform: translateY(0); }
.product-card:hover { background: var(--bg-alt); }
.product-card.hidden-card { display: none; }

.card-tag {
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-dim);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}

.wish-toggle {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  font-size: 15px;
  color: var(--fg-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s, transform .2s;
}
.wish-toggle:hover { border-color: var(--accent-2); transform: scale(1.08); }
.wish-toggle.active { color: var(--accent-2); border-color: var(--accent-2); }

.shoe-mark {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3.2;
  margin: 36px 0 22px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.45));
  transition: transform .4s var(--ease);
}
.product-card:hover .shoe-mark { transform: translateY(-6px) scale(1.03) rotate(-2deg); }

.shoe-mark .sm-sole {
  position: absolute; inset: 0;
  clip-path: polygon(8% 94%, 92% 90%, 97% 100%, 4% 100%);
  background: #1c1c1e;
}
.shoe-mark .sm-upper {
  position: absolute; inset: 0;
  clip-path: polygon(6% 88%, 4% 60%, 15% 37%, 35% 21%, 58% 15%, 75% 24%, 91% 21%, 98% 42%, 94% 69%, 88% 87%, 58% 92%, 10% 92%);
}
.shoe-mark .sm-toe {
  position: absolute; inset: 0;
  clip-path: polygon(75% 24%, 91% 21%, 98% 42%, 94% 69%, 82% 71%, 78% 47%);
  mix-blend-mode: overlay;
  opacity: .55;
}
.shoe-mark .sm-lace {
  position: absolute;
  height: 2px;
  background: rgba(10,10,11,0.55);
  transform-origin: left center;
}

.card-title {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.card-sub {
  color: var(--fg-dim);
  font-size: 13px;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.card-price {
  font-size: 18px;
  font-weight: 700;
}
.card-open {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-card:hover .card-open { text-decoration: underline; }

/* ============ ABOUT ============ */
.about { padding: 140px 0; border-bottom: 1px solid var(--line); position: relative; }
.about-inner { max-width: 720px; position: relative; }
.about-num {
  font-family: 'Anton', sans-serif;
  color: var(--fg-dim);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.about h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.02;
  margin-bottom: 24px;
}
.about p { color: var(--fg-dim); font-size: 17px; line-height: 1.7; max-width: 560px; }

/* ============ FAQ ============ */
.faq { padding: 120px 0; border-bottom: 1px solid var(--line); }
.faq-head { max-width: 560px; margin-bottom: 48px; }
.faq-head h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.02;
}
.faq-list { max-width: 760px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 24px 4px;
  font-size: 17px;
  font-weight: 600;
}
.faq-plus {
  font-size: 20px;
  color: var(--accent);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p {
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.7;
  padding: 0 4px 24px;
  max-width: 620px;
}

/* ============ DROPS / NEWSLETTER ============ */
.drops { padding: 120px 0 140px; }
.drops-inner { text-align: center; }
.drops h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 6vw, 64px);
  margin-bottom: 36px;
}
.notify-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}
.notify-form input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 16px 20px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
}
.notify-form input:focus { outline: none; border-color: var(--accent); }
.notify-form button {
  background: var(--fg);
  color: #0a0a0b;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 13px;
  transition: background .2s;
}
.notify-form button:hover { background: var(--accent); }
.notify-msg { margin-top: 18px; color: var(--accent); font-size: 14px; min-height: 20px; }

/* ============ FOOTER ============ */
.site-footer { padding: 50px 0 40px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: var(--fg-dim);
  letter-spacing: 0.5px;
}
.footer-links a:hover { color: var(--accent); }
.footer-inner p { color: var(--fg-dim); font-size: 13px; }

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(6,6,7,0.8);
  backdrop-filter: blur(6px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
  padding: 24px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  max-width: 940px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(.98);
  transition: transform .35s var(--ease);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 5;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 16px;
  transition: border-color .2s, transform .2s;
}
.modal-close:hover { border-color: var(--accent); transform: rotate(90deg); }

.modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.modal-visual {
  background: var(--bg);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.modal-visual .shoe-mark { width: 100%; max-width: 420px; margin: 0; }
.modal-tag-big {
  position: absolute;
  bottom: -30px; left: -10px;
  font-family: 'Anton', sans-serif;
  font-size: 140px;
  color: var(--line);
  z-index: 0;
  text-transform: uppercase;
}
.modal-info { padding: 56px 44px; }
.modal-category {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.modal-title {
  font-family: 'Anton', sans-serif;
  font-size: 38px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 14px;
}
.modal-price { font-size: 22px; font-weight: 700; margin-bottom: 22px; }
.modal-desc { color: var(--fg-dim); line-height: 1.7; font-size: 15px; margin-bottom: 28px; }

.variant-label {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 12px; color: var(--fg-dim);
}
.variant-row {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
}
.variant-swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 3px;
  position: relative;
}
.variant-swatch::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--sw-bg);
}
.variant-swatch.selected { border-color: var(--fg); }
.variant-name {
  font-size: 12px;
  color: var(--fg-dim);
  margin: -14px 0 26px;
}

.size-label {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 12px; color: var(--fg-dim);
}
.size-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}
.size-opt {
  border: 1px solid var(--line);
  padding: 12px 0;
  text-align: center;
  font-size: 14px;
  border-radius: var(--radius);
  transition: all .15s;
}
.size-opt:hover { border-color: var(--fg); }
.size-opt.selected { background: var(--accent); color: #0a0a0b; border-color: var(--accent); font-weight: 700; }

.add-cart-btn {
  width: 100%;
  background: var(--fg);
  color: #0a0a0b;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 18px;
  border-radius: 999px;
  font-size: 14px;
  transition: background .2s, transform .2s;
}
.add-cart-btn:hover { background: var(--accent); }
.add-cart-btn:active { transform: scale(.98); }
.add-cart-btn.shake { animation: shake .4s; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

.modal-meta {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.5px;
}

/* ============ CART DRAWER ============ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(6,6,7,0.7);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: var(--bg-alt);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.cart-overlay.open .cart-drawer { transform: translateX(0); }

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 26px;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-family: 'Anton', sans-serif; font-size: 22px; letter-spacing: 1px; }
.cart-head .modal-close { position: static; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 10px 26px;
}
.cart-empty {
  color: var(--fg-dim);
  text-align: center;
  margin-top: 60px;
  font-size: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item .shoe-mark { width: 78px; aspect-ratio: 5/3.2; margin: 0; }
.cart-item-name { font-size: 14px; font-weight: 600; text-transform: uppercase; }
.cart-item-size { font-size: 12px; color: var(--fg-dim); margin-top: 2px; }
.cart-item-price { font-size: 13px; margin-top: 6px; font-weight: 700; }
.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
}
.qty-control button { font-size: 13px; width: 16px; }
.remove-btn {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.remove-btn:hover { color: var(--accent-2); }

.cart-footer { padding: 22px 26px 28px; border-top: 1px solid var(--line); }
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 18px;
  font-weight: 700;
}

.wishlist-item {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.wishlist-item .shoe-mark { width: 78px; aspect-ratio: 5/3.2; margin: 0; }

/* ============ ACCOUNT / PROFILE ============ */
.profile-blurb {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.6;
  padding: 20px 0 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.profile-signed-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.profile-signed-in strong { font-size: 15px; text-transform: uppercase; }
.profile-signed-in span { display: block; font-size: 12px; color: var(--fg-dim); margin-top: 2px; }
.sign-out-btn { font-size: 12px; letter-spacing: 1px; color: var(--accent-2); text-transform: uppercase; }

.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.form-field input, .form-field select {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 13px 14px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  width: 100%;
}
.form-field input:focus, .form-field select:focus { outline: none; border-color: var(--accent); }
.form-field input:disabled { opacity: 0.4; cursor: not-allowed; }
.form-field select { appearance: none; }

.orders-heading {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--fg-dim); margin: 30px 0 14px;
}
.order-card {
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.order-card-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}
.order-card-meta { font-size: 12px; color: var(--fg-dim); }
.no-orders { font-size: 13px; color: var(--fg-dim); text-align: center; padding: 30px 0; }

/* ============ CHECKOUT ============ */
.checkout-overlay {
  position: fixed; inset: 0;
  background: rgba(6,6,7,0.82);
  backdrop-filter: blur(6px);
  z-index: 320;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
  padding: 24px;
}
.checkout-overlay.open { opacity: 1; pointer-events: all; }

.checkout-panel {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 52px 44px 44px;
  transform: translateY(30px) scale(.98);
  transition: transform .35s var(--ease);
}
.checkout-overlay.open .checkout-panel { transform: translateY(0) scale(1); }

.checkout-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.checkout-title {
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.checkout-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.checkout-steps span {
  flex: 1;
  height: 3px;
  background: var(--line);
  border-radius: 2px;
}
.checkout-steps span.active { background: var(--accent); }

.checkout-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.checkout-actions .btn-primary { flex: 1; }
.btn-secondary {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 18px;
  transition: border-color .2s;
}
.btn-secondary:hover { border-color: var(--fg); }

.payment-note {
  display: flex;
  gap: 12px;
  background: var(--bg);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.6;
  margin-bottom: 22px;
}
.payment-note .lock { font-size: 18px; flex-shrink: 0; }

.review-summary { border-top: 1px solid var(--line); padding-top: 20px; margin-top: 4px; }
.review-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.review-line.total { font-weight: 700; font-size: 16px; border-bottom: none; padding-top: 16px; }
.review-item-name { font-weight: 600; }
.review-item-meta { font-size: 12px; color: var(--fg-dim); margin-top: 2px; }

.confirm-wrap { text-align: center; padding: 20px 0; }
.confirm-check {
  width: 70px; height: 70px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0b;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  font-weight: 700;
}
.confirm-order-id {
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.confirm-sub { color: var(--fg-dim); font-size: 14px; margin-bottom: 28px; }
.confirm-detail {
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 28px;
}

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--fg);
  color: #0a0a0b;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0;
  pointer-events: none;
  transition: all .35s var(--ease);
  z-index: 400;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============ RESPONSIVE ============ */

/* iOS safe-area support */
.site-header { padding-top: env(safe-area-inset-top); }
.mobile-nav { padding-top: max(40px, env(safe-area-inset-top)); }
.cart-drawer, .checkout-panel { padding-bottom: env(safe-area-inset-bottom); }

@media (max-width: 980px) {
  .about-inner, .drops-inner { padding: 0 4px; }
}

@media (max-width: 860px) {
  .modal-grid { grid-template-columns: 1fr; }
  .modal-visual { padding: 36px 28px; }
  .modal-info { padding: 40px 28px 44px; }
  .hero-num { display: none; }
  .checkout-panel { padding: 44px 28px 34px; }
}

@media (max-width: 780px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .icon-account-label { display: none; }
  .icon-btn { padding: 10px; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .header-inner { height: 68px; }
  .logo { font-size: 24px; }
  .cart-btn .cart-label { display: none; }
  .cart-btn { padding: 10px 12px; }

  .hero-inner { padding: 24px 20px 80px; }
  .hero-sub { font-size: 15px; }
  .marquee-track { font-size: 13px; }

  .shop { padding: 70px 0 60px; }
  .shop-head { flex-direction: column; align-items: flex-start; }
  .filters { gap: 8px; }
  .chip { padding: 9px 16px; font-size: 12px; }
  .product-grid { grid-template-columns: 1fr; }

  .about, .faq { padding: 70px 0; }
  .drops { padding: 70px 0 90px; }
  .notify-form { flex-direction: column; }
  .notify-form button { width: 100%; }

  .modal-title { font-size: 30px; }
  .modal-tag-big { font-size: 90px; }
  .size-grid { grid-template-columns: repeat(4, 1fr); }
  .form-row { grid-template-columns: 1fr; }

  .cart-drawer, .checkout-panel { width: 100%; }
  .checkout-panel { max-width: 100%; }
  .mnav-link { font-size: 34px; }

  .footer-top { flex-direction: column; align-items: flex-start; }

  .toast { width: calc(100% - 40px); text-align: center; white-space: normal; }
}

@media (max-width: 400px) {
  .cart-item, .wishlist-item { grid-template-columns: 60px 1fr auto; gap: 10px; }
  .cart-item .shoe-mark, .wishlist-item .shoe-mark { width: 60px; }
  .hero-title { font-size: clamp(46px, 13vw, 80px); }
}
