/* ── Fonts ────────────────────────────────────────────────────── */
@import url('https://use.typekit.net/oxo0xej.css');

/* ── Reset / Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:        #0A0A0A;
  --white:        #FFFFFF;
  --off-white:    #F7F7F7;
  --gray-100:     #F0F0F0;
  --gray-300:     #D4D4D4;
  --gray-500:     #888888;
  --gray-700:     #444444;
  --cobalt:       #2B6CB0;
  --glacier:      #5FA8C9;
  --deep-teal:    #1C4E5C;
  --font-sans:    'neue-haas-grotesk-display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-serif:   'sole-serif-variable', Georgia, serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* ── Typography ───────────────────────────────────────────────── */

/* Serif: thin accent only — pull-quotes, section statements */
.serif-accent {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* Sans display classes — used for all large headings */
.display-xl {
  font-family: var(--font-sans);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.display-lg {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-md {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ── Layout ───────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ── Navigation ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  height: 64px;
  display: flex;
  align-items: center;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo img { height: 22px; display: block; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray-700);
  transition: color 0.15s;
}
.nav__link:hover { color: var(--black); }
.nav__link--active { color: var(--black); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray-700);
  transition: color 0.15s;
}
.nav__cart-btn:hover { color: var(--black); }
.nav__cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: none;
}
.nav__cart-count.visible { display: inline-flex; }

/* ── Page wrapper ─────────────────────────────────────────────── */
.page { padding-top: 64px; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s, opacity 0.15s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--black);
  color: var(--white);
}
.btn--primary:hover { background: var(--gray-700); }
.btn--primary:disabled { opacity: 0.4; cursor: not-allowed; }
.btn--secondary {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn--secondary:hover { background: var(--black); color: var(--white); }
.btn--cobalt {
  background: var(--cobalt);
  color: var(--white);
}
.btn--cobalt:hover { background: var(--deep-teal); }
.btn--ghost {
  background: transparent;
  color: var(--gray-500);
  padding: 8px 0;
  font-size: 12px;
}
.btn--ghost:hover { color: var(--black); }
.btn--full { width: 100%; }
.btn--sm { padding: 10px 20px; font-size: 11px; }

/* ── Forms ────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
}
.form-input {
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  font-size: 14px;
  color: var(--black);
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus { border-color: var(--black); }
.form-input--error { border-color: #c0392b; }
.form-select {
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  font-size: 14px;
  color: var(--black);
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.form-select:focus { border-color: var(--black); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-error { font-size: 12px; color: #c0392b; }
.form-hint { font-size: 12px; color: var(--gray-500); }

/* ── Divider ──────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--gray-100);
  margin: 40px 0;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 80px;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--off-white);
}
.hero__image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
}
.hero__image-placeholder::after {
  content: 'IMAGE';
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gray-300);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-sans);
  font-size: clamp(4rem, 10vw, 9.5rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--black);
  margin-bottom: 40px;
}
.hero__subtitle {
  font-size: 18px;
  color: var(--gray-700);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.6;
}
.hero__actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* ── Marquee ──────────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 16px 0;
  white-space: nowrap;
  background: var(--white);
}
.marquee__track {
  display: inline-flex;
  gap: 64px;
  animation: marquee 24s linear infinite;
}
.marquee__item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 64px;
}
.marquee__item::after {
  content: '·';
  color: var(--gray-300);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Section ──────────────────────────────────────────────────── */
.section { padding: 120px 0; }
.section--sm { padding: 80px 0; }
.section--lg { padding: 160px 0; }
.section--bg { background: var(--off-white); }
.section__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.section__title {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.section__body {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.7;
  max-width: 600px;
}

/* ── Product card ─────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: var(--gray-100);
}
.product-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.product-card__image {
  aspect-ratio: 4/3;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}
.product-card__image img { width: 100%; height: 100%; object-fit: cover; }
.product-card__image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
}
.product-card__image-placeholder::after {
  content: 'PRODUCT IMAGE';
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gray-300);
}
.product-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-card__name { font-size: 18px; font-weight: 600; }
.product-card__price { font-size: 15px; color: var(--gray-700); }
.product-card__cta { margin-top: auto; padding-top: 20px; }

/* ── Product detail ───────────────────────────────────────────── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 60px 0 120px;
}
.product-detail__gallery {
  position: sticky;
  top: 80px;
}
.product-detail__main-image {
  aspect-ratio: 4/5;
  background: var(--gray-100);
  position: relative;
  margin-bottom: 8px;
}
.product-detail__main-image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail__main-image-placeholder::after {
  content: 'PRODUCT IMAGE';
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gray-300);
}
.product-detail__thumbs { display: flex; gap: 8px; }
.product-detail__thumb {
  width: 80px; height: 80px;
  background: var(--gray-100);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: border-color 0.15s;
}
.product-detail__thumb.active { border-color: var(--black); }
.product-detail__info { padding-top: 20px; }
.product-detail__category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 12px;
}
.product-detail__name {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.product-detail__price {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.product-detail__shipping {
  font-size: 13px;
  color: var(--cobalt);
  font-weight: 500;
  margin-bottom: 40px;
}
.product-detail__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 40px;
}
.product-detail__size-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.size-grid {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.size-btn {
  width: 64px; height: 48px;
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.04em;
}
.size-btn:hover { border-color: var(--black); }
.size-btn.selected { background: var(--black); color: var(--white); border-color: var(--black); }
.product-detail__features {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-100);
}
.feature-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 32px; height: 32px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.feature-item__text { font-size: 14px; line-height: 1.5; color: var(--gray-700); }
.feature-item__title { font-weight: 600; color: var(--black); margin-bottom: 2px; font-size: 14px; }

/* ── Cart ─────────────────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  padding: 60px 0 120px;
  align-items: start;
}
.cart-items { display: flex; flex-direction: column; }
.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: start;
}
.cart-item__image {
  width: 96px; height: 96px;
  background: var(--gray-100);
  flex-shrink: 0;
  position: relative;
}
.cart-item__image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray-300);
}
.cart-item__info { display: flex; flex-direction: column; gap: 4px; }
.cart-item__name { font-size: 15px; font-weight: 600; }
.cart-item__size { font-size: 13px; color: var(--gray-500); }
.cart-item__price { font-size: 15px; font-weight: 600; white-space: nowrap; }
.cart-item__remove {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
  cursor: pointer;
  transition: color 0.15s;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
}
.cart-item__remove:hover { color: var(--black); }
.cart-summary {
  position: sticky;
  top: 80px;
  padding: 32px;
  background: var(--off-white);
}
.cart-summary__title { font-size: 15px; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 24px; }
.cart-summary__row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 12px; }
.cart-summary__row--total { font-weight: 600; font-size: 16px; padding-top: 16px; margin-top: 4px; border-top: 1px solid var(--gray-300); margin-bottom: 0; }
.cart-summary__shipping { font-size: 13px; color: var(--cobalt); font-weight: 500; text-align: center; margin: 16px 0; }
.cart-empty {
  text-align: center;
  padding: 120px 0;
}
.cart-empty__title { font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.cart-empty__body { font-size: 15px; color: var(--gray-500); margin-bottom: 32px; }

/* ── Checkout ─────────────────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  padding: 60px 0 120px;
  align-items: start;
}
.checkout-form { display: flex; flex-direction: column; gap: 32px; }
.checkout-section-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}
.checkout-summary {
  position: sticky;
  top: 80px;
}
.checkout-summary__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.order-line {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: center;
}
.order-line__image {
  width: 64px; height: 64px;
  background: var(--gray-100);
  flex-shrink: 0;
}
.order-line__info { flex: 1; }
.order-line__name { font-size: 14px; font-weight: 500; }
.order-line__size { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.order-line__price { font-size: 14px; font-weight: 600; white-space: nowrap; }

/* Stripe Elements */
#stripe-payment-element {
  margin-bottom: 0;
}
#payment-element-container {
  padding: 20px;
  border: 1.5px solid var(--gray-300);
  transition: border-color 0.15s;
}
#payment-element-container:focus-within { border-color: var(--black); }

/* ── Auth ─────────────────────────────────────────────────────── */
.auth-page {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.auth-card {
  width: 100%;
  max-width: 440px;
}
.auth-card__title {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.auth-card__subtitle { font-size: 15px; color: var(--gray-500); margin-bottom: 40px; }
.auth-card__form { display: flex; flex-direction: column; gap: 16px; }
.auth-card__switch { font-size: 13px; color: var(--gray-500); text-align: center; margin-top: 24px; }
.auth-card__switch a { color: var(--black); font-weight: 500; text-decoration: underline; }

/* ── Account ──────────────────────────────────────────────────── */
.account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  padding: 60px 0 120px;
  align-items: start;
}
.account-nav { position: sticky; top: 80px; }
.account-nav__link {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.15s;
}
.account-nav__link:hover, .account-nav__link.active { color: var(--black); }
.account-section__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 32px;
}
.order-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
}
.order-row__id { font-size: 13px; font-weight: 600; font-family: monospace; color: var(--gray-700); }
.order-row__date { font-size: 13px; color: var(--gray-500); }
.order-row__items { font-size: 13px; color: var(--gray-700); }
.order-row__total { font-size: 14px; font-weight: 600; }
.status-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}
.status-badge--pending    { background: #FFF8E1; color: #9B6A00; }
.status-badge--processing { background: #E3F0FF; color: var(--cobalt); }
.status-badge--shipped    { background: #E3F9E5; color: #1A5C28; }
.status-badge--delivered  { background: #F0F0F0; color: var(--gray-700); }
.status-badge--cancelled  { background: #FDE8E8; color: #9B1A1A; }

/* ── Admin ────────────────────────────────────────────────────── */
.admin-layout { padding: 60px 0 120px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.admin-title {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-100);
  margin-bottom: 48px;
}
.stat-card {
  background: var(--white);
  padding: 24px;
}
.stat-card__label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 8px; }
.stat-card__value { font-size: 2rem; font-weight: 700; line-height: 1; }
.admin-filters { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}
.filter-btn.active { border-color: var(--black); background: var(--black); color: var(--white); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--off-white);
}
.admin-table td {
  padding: 16px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.admin-table tr:hover td { background: var(--off-white); }
.admin-table .mono { font-family: monospace; font-size: 12px; }

/* Order detail modal / slide */
.order-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 480px; height: 100%;
  background: var(--white);
  border-left: 1px solid var(--gray-100);
  z-index: 200;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 40px 32px;
}
.order-drawer.open { transform: translateX(0); }
.order-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 199;
  display: none;
}
.order-drawer__overlay.visible { display: block; }
.order-drawer__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: var(--gray-500);
  background: none;
  border: none;
  font-family: inherit;
}
.order-drawer__close:hover { color: var(--black); }
.order-drawer__id { font-size: 11px; font-family: monospace; color: var(--gray-500); margin-bottom: 4px; }
.order-drawer__title { font-size: 20px; font-weight: 600; margin-bottom: 32px; }
.drawer-section { margin-bottom: 32px; }
.drawer-section__label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 12px; }
.drawer-row { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px solid var(--gray-100); }
.drawer-row:last-child { border-bottom: none; }
.tracking-form { display: flex; flex-direction: column; gap: 12px; }

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--gray-100);
  padding: 48px 0;
  background: var(--white);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__logo img { height: 18px; }
.footer__slogan { font-size: 13px; color: var(--gray-500); }
.footer__links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer__link { font-size: 13px; color: var(--gray-500); transition: color 0.15s; }
.footer__link:hover { color: var(--black); }
.footer__copy { font-size: 12px; color: var(--gray-300); margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--gray-100); }

/* ── Toast ────────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  padding: 14px 20px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  min-width: 240px;
  animation: toastIn 0.2s ease;
}
.toast--error { background: #c0392b; }
.toast--success { background: var(--deep-teal); }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Utility ──────────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.text-muted { color: var(--gray-500); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.loading { opacity: 0.5; pointer-events: none; }
.spinner {
  width: 20px; height: 20px;
  border: 2px solid var(--gray-300);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Two-column text/image split ──────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse .split__image { order: -1; }
.split__image {
  aspect-ratio: 3/4;
  background: var(--gray-100);
  position: relative;
}
.split__image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.split__image-placeholder::after {
  content: 'IMAGE';
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gray-300);
}
.split__content { padding: 40px 0; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-detail { grid-template-columns: 1fr; gap: 40px; }
  .product-detail__gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .account-layout { grid-template-columns: 1fr; }
  .account-nav { position: static; display: flex; gap: 0; overflow-x: auto; }
  .account-nav__link { white-space: nowrap; border-bottom: none; border-right: 1px solid var(--gray-100); padding: 12px 20px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__image { order: 0; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .order-drawer { width: 100%; border-left: none; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .hero { padding: 0 24px 60px; }
  .hero__title { font-size: clamp(3rem, 12vw, 5rem); letter-spacing: -0.035em; }
  .cart-item { grid-template-columns: 72px 1fr; }
  .cart-item__price { display: none; }
  .order-row { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .admin-table { font-size: 12px; }
  .admin-table th, .admin-table td { padding: 10px 8px; }
}
