/* National Star 2026 Catalogue — clean modern */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --teal: #2a4a4d;
  --teal-dark: #1e3537;
  --teal-light: #e7eeee;
  --orange: #f7941d;
  --orange-soft: #fff4e3;
  --ink: #14191b;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #fafafa;
  --shadow-sm: 0 1px 2px rgba(20,25,27,.04), 0 1px 3px rgba(20,25,27,.06);
  --shadow-md: 0 4px 12px rgba(20,25,27,.06), 0 8px 24px rgba(20,25,27,.06);
  --shadow-lg: 0 20px 50px rgba(20,25,27,.18);
  --radius: 12px;
  --radius-sm: 8px;
  --max: 1240px;
}

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-feature-settings: 'cv11', 'ss01';
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

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

/* ───── Header ───── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; }
.brand .name {
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 18px;
  line-height: 1.1;
}
.brand .name small {
  display: block;
  font-size: 10.5px;
  letter-spacing: .18em;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: background .15s ease, color .15s ease;
}
.nav a:hover { background: var(--teal-light); color: var(--teal); }
.nav a.active { background: var(--teal); color: white; }

/* ───── Hero ───── */
.hero {
  position: relative;
  padding: 64px 0 48px;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(247,148,29,.10), transparent 60%),
    linear-gradient(180deg, #fbfbfb, var(--bg));
  border-bottom: 1px solid var(--line);
}
.hero .grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) {
  .hero .grid { grid-template-columns: 1fr; gap: 32px; }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 6px 12px;
  background: var(--orange-soft);
  border-radius: 999px;
}
h1.hero-title {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px 0 18px;
}
h1.hero-title .accent { color: var(--orange); }
.hero p.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 28px;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn.primary { background: var(--teal); color: #fff; }
.btn.primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn.ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn.ghost:hover { border-color: var(--teal); color: var(--teal); }

.hero-art {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4.3;
  background: #fff;
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }

/* ───── Section heads ───── */
section { padding: 72px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.section-head p { color: var(--muted); max-width: 560px; }

/* ───── Category grid (home) ───── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.cat-card .thumb {
  aspect-ratio: 4/3;
  background: var(--teal-light);
  overflow: hidden;
}
.cat-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.cat-card:hover .thumb img { transform: scale(1.04); }
.cat-card .body { padding: 16px 18px 20px; }
.cat-card .label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}
.cat-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 6px 0 8px;
  letter-spacing: -0.01em;
}
.cat-card .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--teal);
}
.cat-card:hover .arrow { color: var(--orange); }

/* ───── Category page ───── */
.cat-hero {
  padding: 56px 0 32px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfbfb, var(--bg));
}
.cat-hero .crumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}
.cat-hero .crumb a:hover { color: var(--teal); }
.cat-hero h1 {
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cat-hero p.lede {
  font-size: 17px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 640px;
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 28px 0 8px;
}
.pill {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.pill:hover { border-color: var(--teal); color: var(--teal); }
.pill.active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.pill .count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.08);
  color: inherit;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
}
.pill.active .count { background: rgba(255,255,255,.22); }

.results-meta {
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 24px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 32px;
}
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.product-card .thumb {
  aspect-ratio: 1/1.42;
  background: var(--teal-light);
  overflow: hidden;
}
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card .body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.product-card .sub {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 4px;
}
.product-card h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-card .desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}
.product-card .sizes {
  font-size: 12px;
  color: var(--teal);
  background: var(--teal-light);
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}
.product-card .view {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-card:hover .view { color: var(--orange); }

/* ───── Lightbox ───── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 25, .88);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 92vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox .close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
.lightbox .close:hover { background: rgba(255,255,255,.2); }
.lightbox .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  color: #fff;
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
.lightbox .nav-btn:hover { background: rgba(255,255,255,.2); }
.lightbox .prev { left: 24px; }
.lightbox .next { right: 24px; }

/* ───── Footer ───── */
footer {
  background: var(--teal);
  color: rgba(255,255,255,.85);
  padding: 56px 0 28px;
  margin-top: 40px;
}
footer .grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 720px) { footer .grid { grid-template-columns: 1fr; gap: 32px; } }
footer h4 {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  font-weight: 600;
}
footer .tagline {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
footer p, footer a {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
}
footer a:hover { color: #fff; }
footer ul { list-style: none; }
footer .bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ───── Misc ───── */
.empty {
  text-align: center;
  padding: 80px 0;
  color: var(--muted);
}
.empty h3 { color: var(--ink); font-size: 18px; margin-bottom: 6px; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 40px;
}
@media (max-width: 720px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
.stat-strip .stat { text-align: center; padding: 16px; }
.stat-strip .stat strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
}
.stat-strip .stat span {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
