/* =========================================================
   FEW LIKE US — Design System
   Minimal, editorial, monochrome-first (navy/black/white)
   with the brand's signature orange reserved for campaign
   creative and the logo mark. Structural language follows a
   premium fashion-retail reference: tight grids, square
   swatches, text-first UI.
   ========================================================= */

:root {
  --navy: #0d1b3d;
  --navy-dark: #081025;
  --navy-soft: #16295c;
  --white: #ffffff;
  --off-white: #f6f7f9;
  --gray-100: #eef0f3;
  --gray-200: #e2e5ea;
  --gray-300: #d2d6dd;
  --gray-500: #8a8f9b;
  --gray-700: #565c67;
  --ink: #121212;
  --brick: #b35400;
  --orange: #ffa500;
  --red: #c8272c;
  --green: #1e7d4f;
  --font-body: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --header-h: 56px;
  --announce-h: 34px;
  --container: 1400px;
  --radius: 1px;
  --transition: 180ms ease;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.2px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--navy);
  color: var(--white); padding: 10px 16px; z-index: 10000;
}
.skip-link:focus { left: 0; }

/* ---------- Page loader ---------- */
.page-loader {
  position: fixed; inset: 0; z-index: 10001;
  background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  transition: opacity 300ms ease, visibility 300ms ease;
}
.page-loader img { width: 64px; height: 64px; object-fit: contain; }
.page-loader-text {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink);
}
.page-loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-dark); }
.btn-primary:disabled { background: var(--gray-300); color: var(--gray-500); cursor: not-allowed; }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-red { background: var(--navy); color: var(--white); }
.btn-red:hover { background: var(--navy-dark); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 11.5px; }

/* ---------- Announcement bar ---------- */
.announce-bar {
  height: var(--announce-h);
  background: var(--navy);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 12px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}
.hamburger {
  display: flex;
}
.logo {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.logo-img { height: 38px; width: auto; display: block; }

.main-nav { display: flex; align-items: center; gap: 0; height: 100%; margin-right: auto; flex-wrap: nowrap; min-width: 0; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; flex-shrink: 0; }
.nav-link {
  display: flex; align-items: center; height: 100%;
  padding: 0 9px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-item:hover .nav-link, .nav-link.active { border-bottom-color: var(--navy); }
.nav-link.sale-link { color: var(--brick); }

/* Persistent inline search */
.header-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--ink);
  padding: 4px 2px;
  width: 168px;
  transition: width var(--transition);
}
.header-search:focus-within { width: 220px; }
.header-search svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--ink); }
.header-search input {
  border: none; outline: none; font-size: 12.5px; width: 100%; background: transparent;
}
.header-search-results {
  position: absolute; top: calc(100% + 12px); right: 0;
  width: 340px; max-height: 420px; overflow-y: auto;
  background: var(--white); border: 1px solid var(--gray-200);
  box-shadow: 0 16px 32px rgba(13,27,61,0.12);
  padding: 8px 16px;
  display: none;
  z-index: 400;
}
.header-search-results.open { display: block; }
.search-result-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--gray-100); }
.search-result-item:last-child { border-bottom: none; }
.search-result-item img { width: 44px; height: 56px; object-fit: cover; background: var(--gray-100); flex-shrink: 0; }

.header-icons { display: flex; align-items: center; gap: 2px; }
.currency-select {
  height: 36px; border: none; background: transparent; color: var(--ink);
  font-size: 11.5px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  padding: 0 4px; margin-right: 4px; cursor: pointer; border-radius: 4px;
}
.currency-select:hover { background: var(--gray-100); }
.icon-btn {
  position: relative;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: none; color: var(--ink);
  border-radius: 50%;
}
.icon-btn:hover { background: var(--gray-100); }
.icon-btn svg { width: 19px; height: 19px; }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--navy); color: var(--white);
  font-size: 10px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Mega menu (hover dropdown from top nav) */
.mega-menu {
  position: absolute;
  top: 100%; left: 0;
  transform: translateY(6px);
  width: min(760px, 88vw);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 16px 32px rgba(13,27,61,0.12);
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.nav-item:hover .mega-menu, .nav-item:focus-within .mega-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.mega-col h4 {
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}
.mega-col ul li { margin-bottom: 10px; }
.mega-col ul li a { font-size: 13px; color: var(--gray-700); }
.mega-col ul li a:hover { color: var(--navy); text-decoration: underline; }
.mega-promo {
  background: var(--off-white);
  padding: 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.mega-promo strong { font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--navy); }
.mega-promo span { font-size: 12px; color: var(--gray-700); }
.mega-promo a { font-size: 12px; font-weight: 700; color: var(--brick); text-decoration: underline; }

/* Utility / nav drawer (hamburger) */
.mobile-drawer {
  position: fixed; top: 0; left: -320px; width: 300px; height: 100%;
  background: var(--white); z-index: 1000; transition: left var(--transition);
  overflow-y: auto; box-shadow: 2px 0 16px rgba(0,0,0,0.15);
  display: flex; flex-direction: column;
}
.mobile-drawer.open { left: 0; }
.mobile-drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 18px; border-bottom: 1px solid var(--gray-200); }
.mobile-drawer ul { padding: 8px 0; }
.drawer-nav-list > li > a, .drawer-nav-list > li > button {
  display: flex; width: 100%; justify-content: space-between; align-items: center;
  padding: 14px 18px; font-weight: 700; font-size: 13px; text-transform: uppercase;
  letter-spacing: .03em;
  border: none; background: none; text-align: left; color: var(--ink);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-submenu { display: none; background: var(--off-white); padding: 4px 18px 14px; }
.mobile-submenu.open { display: block; }
.mobile-submenu li a { display: block; padding: 8px 0; font-size: 13px; color: var(--gray-700); }
.drawer-utility {
  margin-top: auto;
  border-top: 1px solid var(--gray-200);
  padding: 8px 0 20px;
}
.drawer-utility li a {
  display: block; padding: 10px 18px; font-size: 12px; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: .04em;
}
.drawer-utility li a:hover { color: var(--navy); }
.scrim { position: fixed; inset: 0; background: rgba(8,16,37,0.5); z-index: 999; display: none; }
.scrim.open { display: block; }

/* ---------- Cart drawer ---------- */
.cart-drawer {
  position: fixed; top: 0; right: -420px; width: min(420px, 100vw); height: 100%;
  background: var(--white); z-index: 1000; transition: right var(--transition);
  display: flex; flex-direction: column; box-shadow: -2px 0 16px rgba(0,0,0,0.15);
}
.cart-drawer.open { right: 0; }
.cart-drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--gray-200); }
.cart-drawer-header h3 { margin: 0; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 20px; }
.cart-line { display: flex; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--gray-100); }
.cart-line img { width: 72px; height: 88px; object-fit: cover; background: var(--gray-100); }
.cart-line-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cart-line-title { font-size: 13px; font-weight: 700; text-transform: uppercase; }
.cart-line-meta { font-size: 11.5px; color: var(--gray-500); text-transform: uppercase; letter-spacing: .03em; }
.cart-line-qty { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.qty-btn { width: 22px; height: 22px; border: 1px solid var(--gray-300); background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 13px; }
.cart-line-remove { font-size: 11px; text-decoration: underline; color: var(--gray-500); margin-top: 4px; align-self: flex-start; text-transform: uppercase; }
.cart-line-price { font-size: 13px; font-weight: 700; white-space: nowrap; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--gray-500); }
.cart-drawer-footer { padding: 18px 20px; border-top: 1px solid var(--gray-200); }
.cart-subtotal { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 12px; font-size: 13px; text-transform: uppercase; letter-spacing: .03em; }

/* ---------- Hero (full-bleed campaign carousel) ---------- */
.hero {
  /* width is explicit (not auto) so height is always derived FROM width via
     aspect-ratio — never the reverse. Without this, `max-height` shrinks the
     box's width to preserve the ratio instead of just clipping height,
     leaving a blank gap on wide screens instead of staying full-bleed.
     Locked to the video's native 16:9 so `cover` needs zero cropping at
     normal desktop widths; max-height only clips (gracefully, via `cover`)
     on unusually wide monitors. */
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 900px;
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; text-align: center;
  opacity: 0; transition: opacity 500ms ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  background: var(--navy);
}
.hero-slide-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(0deg, rgba(8,16,37,.72), rgba(8,16,37,.28) 55%);
}
.hero-slide-content { position: relative; z-index: 1; padding: 0 24px; }
.hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.85; margin-bottom: 18px; }
.hero-slide h1 {
  font-size: clamp(40px, 7vw, 84px); line-height: 0.98; margin: 0;
  font-weight: 800; letter-spacing: -0.01em; text-transform: uppercase;
}
.hero-cta { margin-top: 26px; }
.hero .btn-outline { border-color: var(--white); color: var(--white); }
.hero .btn-outline:hover { background: var(--white); color: var(--navy); }
.hero-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.hero-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.5); border: none; padding: 0; cursor: pointer; }
.hero-dot.active { background: var(--white); }

/* ---------- Mission section ---------- */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.mission-photo { aspect-ratio: 4/3; overflow: hidden; background: var(--gray-100); }
.mission-photo img { width: 100%; height: 100%; object-fit: cover; }
.mission-text h2 { font-size: 28px; font-weight: 800; text-transform: uppercase; margin: 6px 0 18px; letter-spacing: 0.01em; }
.mission-text p { font-size: 14px; line-height: 1.7; color: var(--gray-700); margin: 0 0 14px; }
.mission-signature { font-weight: 700; color: var(--ink) !important; font-style: italic; }
.store-info { margin-top: 12px; font-size: 13px; color: var(--gray-700); }
.store-info p { margin: 0 0 4px; }
.store-info a { color: inherit; }
.store-info a:hover { color: var(--brick); }

/* ---------- Section headings ---------- */
.section { padding: 56px 0; }
.section-tight { padding: 36px 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; gap: 16px; flex-wrap: wrap; }
.section-head h2 { font-size: 20px; font-weight: 800; margin: 0; letter-spacing: 0.01em; text-transform: uppercase; }
.section-head .view-all { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; text-decoration: underline; }
.bg-off { background: var(--off-white); }

/* ---------- Category tiles ---------- */
.tile-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; align-items: start; }
.tile {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  display: flex; align-items: flex-end; padding: 16px;
  color: var(--white); background: var(--navy);
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.tile:hover img { transform: scale(1.05); }
.tile::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,16,37,0.65), rgba(8,16,37,0) 55%); }
.tile-label { position: relative; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }

/* ---------- Product grid / cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px 2px; background: var(--white); align-items: start; }
.product-card { position: relative; background: var(--white); padding-bottom: 14px; }
.product-media { display: block; position: relative; aspect-ratio: 3/4; background: var(--gray-100); overflow: hidden; margin-bottom: 10px; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: opacity 200ms ease; }
.product-media .img-alt { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .img-main { opacity: 0; }
.product-card:hover .img-alt { opacity: 1; }
.quick-add {
  position: absolute; right: 10px; bottom: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1; color: var(--ink);
  opacity: 0; transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
}
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }
.wishlist-btn {
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); cursor: pointer; padding: 0; z-index: 2;
}
.wishlist-btn svg { width: 16px; height: 16px; }
.wishlist-btn.active svg { fill: var(--brick); stroke: var(--brick); }
.wishlist-btn-pdp {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); cursor: pointer; flex-shrink: 0;
}
.wishlist-btn-pdp svg { width: 20px; height: 20px; }
.wishlist-btn-pdp.active svg { fill: var(--brick); stroke: var(--brick); }
.product-card-body { padding: 0 12px; }
.product-title { font-size: 11.5px; font-weight: 700; margin: 0 0 3px; text-transform: uppercase; letter-spacing: .02em; }
.product-fit { font-size: 10.5px; color: var(--gray-500); margin: 0 0 6px; text-transform: uppercase; letter-spacing: .03em; }
.product-price { display: flex; gap: 7px; align-items: center; font-size: 11.5px; font-weight: 600; flex-wrap: wrap; }
.price-old { text-decoration: line-through; color: var(--gray-500); font-weight: 400; }
.price-sale { color: var(--ink); font-weight: 700; }
.price-discount { color: var(--gray-500); }
.price-demand { color: var(--gray-500); font-weight: 600; font-style: italic; text-transform: uppercase; font-size: 0.9em; letter-spacing: 0.02em; }
.swatches { display: flex; gap: 5px; margin-top: 8px; }
.swatch {
  width: 14px; height: 14px; border-radius: 2px; border: 1px solid var(--gray-300);
  cursor: pointer; position: relative;
}
.swatch.selected::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 2px; background: var(--ink);
}

/* ---------- Carousel ---------- */
.carousel-track {
  display: flex; align-items: flex-start; gap: 2px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 8px; scrollbar-width: thin; background: var(--gray-200);
}
.carousel-track .product-card { flex: 0 0 240px; scroll-snap-align: start; }
.carousel-nav { display: flex; gap: 8px; }
.carousel-nav button {
  width: 34px; height: 34px; border: 1px solid var(--gray-300); background: var(--white);
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
}
.carousel-nav button:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ---------- Promo strip ---------- */
.promo-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.promo-panel {
  position: relative; min-height: 300px; display: flex; align-items: flex-end;
  padding: 26px; color: var(--white); overflow: hidden;
}
.promo-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-panel::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,16,37,0.7), transparent 60%); }
.promo-panel-content { position: relative; }
.promo-panel-content h3 { font-size: 19px; margin: 0 0 6px; font-weight: 800; text-transform: uppercase; }
.promo-panel-content p { margin: 0 0 14px; font-size: 12.5px; opacity: .9; }

.promo-slideshow { position: relative; width: 100%; aspect-ratio: 1600 / 500; overflow: hidden; background: var(--navy); }
.promo-slideshow-track { display: flex; width: 100%; height: 100%; transition: transform 500ms ease; }
.promo-slide { position: relative; flex: 0 0 100%; display: block; }
.promo-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.promo-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.7);
  background: rgba(8,16,37,.35); color: var(--white); display: flex; align-items: center;
  justify-content: center; font-size: 22px; line-height: 1; cursor: pointer;
  transition: background 150ms ease;
}
.promo-arrow:hover { background: rgba(8,16,37,.7); }
.promo-arrow-prev { left: 16px; }
.promo-arrow-next { right: 16px; }
.promo-slideshow-dots { bottom: 14px; }
@media (max-width: 720px) {
  .promo-slideshow { aspect-ratio: 4 / 3; }
  .promo-arrow { width: 32px; height: 32px; font-size: 18px; }
}

/* ---------- Trust bar ---------- */
.trust-bar { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; text-align: center; background: var(--gray-200); }
.trust-item { padding: 20px; background: var(--white); }
.trust-item svg { width: 26px; height: 26px; color: var(--navy); margin-bottom: 10px; }
.trust-item h4 { font-size: 12px; margin: 0 0 4px; text-transform: uppercase; letter-spacing: .04em; }
.trust-item p { font-size: 11.5px; color: var(--gray-500); margin: 0; }

/* ---------- Newsletter (footer top bar) ---------- */
.newsletter { background: var(--navy-dark); color: var(--white); padding: 40px 0; }
.newsletter .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.newsletter h2 { font-size: 20px; margin: 0; font-weight: 800; text-transform: uppercase; line-height: 1.15; }
.newsletter form { display: flex; width: 100%; max-width: 380px; gap: 0; border-bottom: 1px solid rgba(255,255,255,0.4); }
.newsletter input { flex: 1; padding: 10px 4px; border: none; background: transparent; color: var(--white); font-size: 13px; }
.newsletter input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter button { background: none; border: none; color: var(--white); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: 12px; padding: 10px 4px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: .03em; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { margin: 0 4px; }
.breadcrumbs .current { color: var(--ink); font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 0 0 20px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding: 40px 0 32px; border-bottom: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; gap: 24px; }
.footer-top .logo-img { height: 52px; }
.footer-links-row { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { color: var(--white); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 16px; }
.footer-col li { margin-bottom: 10px; font-size: 12.5px; text-align: right; }
.footer-col a:hover { text-decoration: underline; color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0 0; font-size: 11px; flex-wrap: wrap; gap: 10px; text-transform: uppercase; letter-spacing: .03em; }
.footer-bottom .credit { color: var(--gray-500); }
.footer-bottom .credit a { color: var(--orange); text-decoration: none; }
.footer-bottom .credit a:hover { text-decoration: underline; }
.payment-icons { display: flex; gap: 8px; align-items: center; }
.payment-icon { width: 40px; height: 26px; border-radius: 4px; display: block; }

.footer-info-row { display: flex; align-items: flex-start; justify-content: flex-end; gap: 8px; text-align: left; }
.footer-info-row svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 10px; justify-content: flex-end; margin-top: 16px; }
.social-icon {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-icon[hidden] { display: none; }
.social-icon svg { width: 15px; height: 15px; }
.social-icon:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.4); }

/* ---------- Shop / Listing page ---------- */
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--gray-200); gap: 12px; flex-wrap: wrap; }
.toolbar-icons { display: flex; align-items: center; gap: 4px; }
.view-toggle-btn, .filter-icon-btn {
  width: 34px; height: 34px; border: none; background: none; color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
}
.view-toggle-btn.active, .view-toggle-btn:hover, .filter-icon-btn:hover { color: var(--ink); }
.view-toggle-btn svg, .filter-icon-btn svg { width: 18px; height: 18px; }
.result-count { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: .03em; margin-left: 10px; }


/* Filter drawer (slide-in from right, all breakpoints) */
.filter-drawer {
  position: fixed; top: 0; right: -380px; width: min(380px, 100vw); height: 100%;
  background: var(--white); z-index: 1000; transition: right var(--transition);
  display: flex; flex-direction: column; box-shadow: -2px 0 16px rgba(0,0,0,0.15);
}
.filter-drawer.open { right: 0; }
.filter-drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--gray-200); }
.filter-drawer-header h3 { margin: 0; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.filter-drawer-body { flex: 1; overflow-y: auto; padding: 4px 20px; }
.filter-drawer-footer { padding: 16px 20px; border-top: 1px solid var(--gray-200); display: flex; gap: 10px; }
.sort-block { padding: 16px 0; border-bottom: 1px solid var(--gray-200); }
.sort-block label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.sort-select { width: 100%; padding: 10px 12px; border: 1px solid var(--gray-300); font-size: 13px; background: var(--white); }

.filter-group { border-bottom: 1px solid var(--gray-200); padding: 16px 0; }
.filter-group-head { display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; cursor: pointer; }
.filter-body { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; max-height: 220px; overflow-y: auto; }
.filter-group.collapsed .filter-body { display: none; }
.filter-check { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--gray-700); cursor: pointer; }
.filter-check input { accent-color: var(--navy); }
.filter-count { color: var(--gray-500); font-size: 11px; margin-left: auto; }
.color-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.color-chip {
  width: 20px; height: 20px; border-radius: 2px; border: 1px solid var(--gray-300); cursor: pointer; position: relative;
}
.color-chip.selected::after { content:""; position:absolute; left:0; right:0; bottom:-5px; height:2px; background: var(--ink); }
.price-inputs { display: flex; align-items: center; gap: 8px; }
.price-inputs input { width: 80px; padding: 8px; border: 1px solid var(--gray-300); font-size: 13px; }
.clear-filters { font-size: 11.5px; text-decoration: underline; color: var(--gray-500); margin-top: 14px; display: inline-block; text-transform: uppercase; letter-spacing: .03em; }

/* ---------- Product detail page ---------- */
.pdp-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; padding: 8px 0 60px; align-items: flex-start; }
.pdp-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.pdp-gallery-img { aspect-ratio: 3/4; background: var(--gray-100); overflow: hidden; cursor: zoom-in; }
.pdp-gallery-img img { width: 100%; height: 100%; object-fit: cover; }
.pdp-info { max-width: 460px; position: sticky; top: calc(var(--header-h) + 24px); }
.pdp-info h1 { font-size: 18px; font-weight: 800; margin: 0 0 4px; text-transform: uppercase; letter-spacing: .01em; }
.pdp-fit { color: var(--gray-500); font-size: 12px; margin: 0 0 16px; text-transform: uppercase; letter-spacing: .04em; }
.pdp-price { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.pdp-sku { font-size: 11px; color: var(--gray-500); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .03em; }
.pdp-block { margin-bottom: 24px; }
.pdp-block-label { display: flex; justify-content: space-between; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.pdp-block-label a { font-weight: 500; text-decoration: underline; text-transform: none; color: var(--gray-500); }
.pdp-color-name { text-transform: none; font-weight: 400; color: var(--gray-700); }
.size-grid { display: flex; flex-wrap: wrap; gap: 18px; }
.size-btn {
  padding: 0 0 4px; border: none; background: none;
  font-size: 13px; font-weight: 500; color: var(--ink);
  border-bottom: 2px solid transparent;
}
.size-btn.selected { border-bottom-color: var(--ink); font-weight: 700; }
.size-btn:disabled { color: var(--gray-300); text-decoration: line-through; cursor: not-allowed; }
.pdp-actions { display: flex; gap: 12px; margin-bottom: 10px; }
.pdp-note { font-size: 12px; color: var(--brick); min-height: 16px; margin-bottom: 6px; }
.pdp-description { font-size: 13px; color: var(--gray-700); margin: 22px 0; line-height: 1.6; }
.pdp-description p { margin: 0 0 10px; }
.pdp-model-note { font-size: 11.5px; color: var(--gray-500); }
.accordion-item { border-top: 1px solid var(--gray-200); }
.accordion-item:last-child { border-bottom: 1px solid var(--gray-200); }
.accordion-head {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 15px 0; background: none; border: none; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
}
.accordion-head .icon { transition: transform var(--transition); font-weight: 400; }
.accordion-item.open .accordion-head .icon { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 220ms ease; font-size: 12.5px; color: var(--gray-700); }
.accordion-item.open .accordion-panel { padding-bottom: 16px; }
.accordion-panel p { margin: 0 0 10px; }

/* ---------- Cart page ---------- */
.cart-page-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; padding: 24px 0 64px; align-items: flex-start; }
.cart-table-head { display: grid; grid-template-columns: 3fr 1fr 1fr; padding-bottom: 12px; border-bottom: 1px solid var(--gray-200); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); }
.cart-row { display: grid; grid-template-columns: 3fr 1fr 1fr; padding: 20px 0; border-bottom: 1px solid var(--gray-100); align-items: center; }
.cart-row-product { display: flex; gap: 14px; }
.cart-row-product img { width: 84px; height: 100px; object-fit: cover; background: var(--gray-100); }
.summary-box { background: var(--off-white); padding: 24px; }
.summary-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .02em; }
.summary-row.total { font-size: 15px; font-weight: 800; border-top: 1px solid var(--gray-300); padding-top: 14px; margin-top: 14px; }
.empty-state { text-align: center; padding: 100px 20px; }
.empty-state h2 { font-size: 20px; margin-bottom: 10px; text-transform: uppercase; }
.empty-state p { color: var(--gray-500); margin-bottom: 24px; }

/* ---------- Forms (auth / checkout / account) ---------- */
.form-page { max-width: 460px; margin: 0 auto; padding: 40px 0 80px; }
.form-page h1 { font-size: 20px; font-weight: 800; text-transform: uppercase; margin: 0 0 24px; }
.field-group { margin-bottom: 16px; }
.field-group label { display: block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; color: var(--gray-700); }
.field-group input, .field-group select, .field-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--gray-300); font-size: 13px; background: var(--white); font-family: inherit;
}
.field-group input:focus, .field-group select:focus, .field-group textarea:focus { outline: none; border-color: var(--navy); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-error { background: #fdeceb; color: var(--red); border: 1px solid #f3c9c6; padding: 12px 14px; font-size: 12.5px; margin-bottom: 16px; }
.form-note { font-size: 12.5px; color: var(--gray-500); margin-top: 16px; text-align: center; }
.form-note a { text-decoration: underline; color: var(--ink); }
.checkout-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; padding: 24px 0 64px; align-items: flex-start; }
.checkout-layout .form-page { max-width: none; margin: 0; padding: 0; }
.checkout-guest-toggle { display: flex; gap: 8px; margin-bottom: 20px; }

.auth-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%); padding: 56px 20px; display: flex; justify-content: center; }
.auth-card { background: var(--white); width: 100%; max-width: 420px; border-radius: 6px; box-shadow: 0 24px 60px rgba(0,0,0,.28); padding: 44px 36px; }
.auth-card .auth-logo { display: block; margin: 0 auto 18px; height: 60px; width: 60px; }
.auth-card h1 { text-align: center; font-size: 19px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; margin: 0 0 28px; }
.auth-field { position: relative; margin-bottom: 16px; }
.auth-field svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--gray-500); pointer-events: none; }
.auth-field input { width: 100%; padding: 12px 14px 12px 40px; border: 1px solid var(--gray-300); font-size: 13px; background: var(--white); font-family: inherit; }
.auth-field input:focus { outline: none; border-color: var(--navy); }
.auth-card .form-note { text-align: center; }
.auth-card .btn-block { margin-top: 6px; }
.checkout-guest-toggle button { flex: 1; padding: 10px; border: 1px solid var(--gray-300); background: var(--white); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; cursor: pointer; }
.checkout-guest-toggle button.active { border-color: var(--navy); background: var(--navy); color: var(--white); }
.account-nav { display: flex; gap: 4px; border-bottom: 1px solid var(--gray-200); margin-bottom: 24px; }
.account-nav button { padding: 10px 16px; border: none; background: none; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--gray-500); border-bottom: 2px solid transparent; cursor: pointer; }
.account-nav button.active { color: var(--ink); border-bottom-color: var(--ink); }
.order-row { border: 1px solid var(--gray-200); padding: 16px; margin-bottom: 12px; }
.order-row-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.order-row-head strong { font-size: 13px; }
.order-status-pill { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; padding: 3px 8px; border-radius: 20px; background: var(--gray-100); }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--navy); color: var(--white); padding: 14px 20px; font-size: 12.5px; border-radius: 1px; z-index: 1200; opacity: 0; transform: translateY(10px); transition: opacity 200ms, transform 200ms; display: flex; align-items: center; gap: 14px; text-transform: uppercase; letter-spacing: .03em; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast a { text-decoration: underline; font-weight: 700; white-space: nowrap; }

/* ---------- Polish / micro-interactions ---------- */
html { scroll-behavior: smooth; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
.icon-btn:focus-visible, .swatch:focus-visible, .color-chip:focus-visible {
  outline: 2px solid var(--navy); outline-offset: 2px;
}

/* Buttons: a touch of lift instead of a flat color swap */
.btn { transform: translateY(0); transition: background var(--transition), color var(--transition), border-color var(--transition), transform 150ms ease, box-shadow 150ms ease; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(13,27,61,0.22); }
.btn-outline:hover { transform: translateY(-1px); }

/* Nav underline eases in instead of snapping */
.nav-link { transition: border-color 200ms ease, color 200ms ease; }

/* Category tiles / promo panels lift on hover for a bit more depth */
.tile, .promo-panel {
  transition: box-shadow 220ms ease, transform 220ms ease;
}
.tile:hover, .promo-panel:hover {
  box-shadow: 0 18px 36px rgba(8,16,37,0.22);
  transform: translateY(-3px);
}
.tile-label { transition: transform 220ms ease; }
.tile:hover .tile-label { transform: translateX(2px); }

/* Product cards: subtle lift + slower, smoother image zoom */
.product-card { transition: box-shadow 220ms ease, transform 220ms ease; }
.product-card:hover { box-shadow: 0 16px 32px rgba(8,16,37,0.12); transform: translateY(-3px); }
.product-media img { transition: opacity 250ms ease, transform 500ms ease; }
.product-card:hover .product-media .img-main { transform: scale(1.045); }

/* Hero: gentle Ken Burns on video, staggered fade-up entrance for text */
.hero-slide-video { animation: heroKenBurns 12s ease-in-out infinite alternate; }
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero-slide-content > * { opacity: 0; transform: translateY(16px); animation: heroFadeUp 700ms ease forwards; }
.hero-slide-content .hero-eyebrow { animation-delay: 80ms; }
.hero-slide-content h1 { animation-delay: 160ms; }
.hero-slide-content .hero-cta { animation-delay: 260ms; }
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide-video { animation: none; }
  .hero-slide-content > * { animation: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* Section headings get a small accent mark for rhythm */
.section-head h2 { position: relative; padding-left: 14px; }
.section-head h2::before {
  content: ""; position: absolute; left: 0; top: 2px; bottom: 2px; width: 3px; background: var(--brick);
}

/* Trust bar + footer links: subtle color transitions instead of instant swaps */
.trust-item svg { transition: transform 220ms ease; }
.trust-item:hover svg { transform: translateY(-2px); }
.footer-col a, .drawer-utility li a, .breadcrumbs a { transition: color 150ms ease; }

/* Newsletter input: visible focus glow to match the rest of the form language */
.newsletter form { transition: border-color 200ms ease; }
.newsletter form:focus-within { border-bottom-color: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .tile-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .header-search { display: none; }
}
@media (max-width: 980px) {
  .mission-grid { grid-template-columns: 1fr; gap: 24px; }
  .promo-strip { grid-template-columns: 1fr; }
  .footer-links-row { gap: 32px; }
  .footer-col li { text-align: left; }
  .footer-info-row, .footer-social { justify-content: flex-start; }
  .trust-bar { grid-template-columns: repeat(2,1fr); }
  .pdp-layout { grid-template-columns: 1fr; gap: 28px; }
  .pdp-info { max-width: none; position: static; }
  .cart-page-layout { grid-template-columns: 1fr; }
  .newsletter .container { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 700px) {
  .main-nav { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  /* No fixed height here — the base rule's 16:9 aspect-ratio must keep
     governing height so the video/image crops match its native aspect
     instead of being squashed into an unrelated box. */
  .hero { min-height: 0; }
  .footer-top { flex-direction: column; }
  .footer-links-row { gap: 24px; }
  .footer-col li { text-align: left; }
  .footer-info-row, .footer-social { justify-content: flex-start; }
  .cart-table-head { display: none; }
  .cart-row { grid-template-columns: 1fr; gap: 10px; }
  .pdp-gallery { grid-template-columns: 1fr; }
}
