/* National Star 2026 Catalogue — dark orange theme */

/* ── Nav logo override: replace small square logo + text with the horizontal logo PNG ── */
.brand img {
  width: auto !important;
  height: 34px !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  content: url('/img/logo-hero.png') !important;
}
.brand .name { display: none !important; }
/* Make brand link go to landing page */
.brand { cursor: pointer; }
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--teal: #1a1a1a;
--teal-dark: #0d0d0d;
--teal-light: rgba(249,115,22,0.12);
--orange: #f97316;
--orange-soft: rgba(249,115,22,0.12);
--ink: #f0ede8;
--muted: #9a9490;
--line: rgba(255,255,255,0.09);
--bg: #0d0d0d;
--card-bg: #161410;
--shadow-sm: 0 1px 2px rgba(0,0,0,.3), 0 1px 3px rgba(0,0,0,.4);
--shadow-md: 0 4px 12px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.3);
--shadow-lg: 0 20px 50px rgba(0,0,0,.7);
--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:
  radial-gradient(ellipse 900px 700px at 100% 0%, rgba(249,115,22,0.13), transparent 60%),
  radial-gradient(ellipse 600px 500px at 0% 100%, rgba(249,115,22,0.07), transparent 60%),
  #0d0d0d;
background-attachment: fixed;
line-height: 1.55;
-webkit-font-smoothing: antialiased;
min-height: 100vh;
}

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(13,13,13,0.88);
backdrop-filter: saturate(180%) blur(16px);
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;
color: #fff;
}
.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(--muted);
transition: background .15s ease, color .15s ease;
}
.nav a:hover { background: var(--teal-light); color: var(--orange); }
.nav a.active { background: var(--orange); color: #fff; }

/* ───── Hero ───── */
.hero {
position: relative;
padding: 64px 0 48px;
background: transparent;
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;
color: #fff;
}
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(--orange); color: #fff; }
.btn.primary:hover { background: #e06100; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(249,115,22,0.35); }
.btn.ghost { background: rgba(255,255,255,0.06); color: var(--ink); border-color: var(--line); }
.btn.ghost:hover { border-color: var(--orange); color: var(--orange); }

.hero-art {
position: relative;
border-radius: 18px;
overflow: hidden;
box-shadow: var(--shadow-lg);
aspect-ratio: 3/4.3;
background: var(--card-bg);
}
.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;
color: #fff;
}
.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: var(--card-bg);
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: 0 8px 32px rgba(249,115,22,0.15);
border-color: rgba(249,115,22,0.3);
}
.cat-card .thumb {
aspect-ratio: 4/3;
background: rgba(249,115,22,0.08);
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;
color: #fff;
}
.cat-card .arrow {
display: inline-flex; align-items: center; gap: 6px;
font-size: 13px; font-weight: 600;
color: var(--muted);
}
.cat-card:hover .arrow { color: var(--orange); }

/* ───── Category page ───── */
.cat-hero {
padding: 56px 0 32px;
border-bottom: 1px solid var(--line);
background: transparent;
}
.cat-hero .crumb {
font-size: 13px;
color: var(--muted);
margin-bottom: 12px;
}
.cat-hero .crumb a:hover { color: var(--orange); }
.cat-hero h1 {
font-size: clamp(32px, 4.4vw, 48px);
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.1;
color: #fff;
}
.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: rgba(255,255,255,0.04);
color: var(--muted);
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(--orange); color: var(--orange); background: var(--orange-soft); }
.pill.active {
background: var(--orange);
color: #fff;
border-color: var(--orange);
}
.pill .count {
display: inline-flex;
align-items: center;
justify-content: center;
background: rgba(0,0,0,.2);
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: var(--card-bg);
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: 0 8px 32px rgba(249,115,22,0.15);
border-color: rgba(249,115,22,0.3);
}
.product-card .thumb {
aspect-ratio: 1/1.42;
background: rgba(249,115,22,0.07);
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;
color: #fff;
}
.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(--orange);
background: rgba(249,115,22,0.12);
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(--muted);
display: inline-flex;
align-items: center;
gap: 6px;
}
.product-card:hover .view { color: var(--orange); }

/* ───── Lightbox ───── */
.lightbox {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, .92);
z-index: 100;
display: none;
align-items: center;
justify-content: center;
padding: 32px;
backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox img {
max-width: 100%;
max-height: 92vh;
border-radius: 8px;
box-shadow: 0 30px 80px rgba(0,0,0,.8);
}
.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(249,115,22,.5); }
.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(249,115,22,.5); }
.lightbox .prev { left: 24px; }
.lightbox .next { right: 24px; }

/* ───── Footer ───── */
footer {
background: #080808;
border-top: 1px solid var(--line);
color: rgba(255,255,255,.75);
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,.6);
}
footer a:hover { color: var(--orange); }
footer ul { list-style: none; }
footer .bottom {
border-top: 1px solid rgba(255,255,255,.08);
padding-top: 24px;
font-size: 13px;
color: rgba(255,255,255,.35);
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: #fff; 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(--orange);
letter-spacing: -0.02em;
}
.stat-strip .stat span {
font-size: 13px;
color: var(--muted);
text-transform: uppercase;
letter-spacing: .08em;
}
