/* =============================================================
   YADEA Canada — local recreation
   Design tokens approximate the original Shopify theme (Montserrat,
   black/white/red brand accent, full-width hero & collection cards).
   ============================================================= */

:root {
  --c-bg: #ffffff;
  --c-fg: #0f0f10;
  --c-fg-muted: #4a4a4f;
  --c-border: #e7e7ea;
  --c-accent: #d55932;     /* sampled from Trooper hero pill */
  --c-accent-2: #ff5300;   /* "LOOKING FOR MODEL" pill */
  --c-soft: #f5f5f7;
  --c-dark: #111;
  --header-h: 72px;
  --max-w: 1480px;
  --radius: 14px;
  --ease: cubic-bezier(.4,0,.2,1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 28px rgba(0,0,0,.10);
  font-family: 'Montserrat', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  color: var(--c-fg);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-weight: 700; letter-spacing: 0.01em; margin: 0; }
h1 { font-size: clamp(2.5rem, 5.5vw, 5rem); line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); line-height: 1.15; }
h3 { font-size: 1.15rem; }
p  { margin: 0; }

/* ===================== ANNOUNCEMENT ===================== */
.announcement {
  background: var(--c-dark);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.announcement__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 28px;
  text-align: center;
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}
.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}
.logo__mark {
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.05em;
}
.logo__sub {
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  color: var(--c-fg-muted);
  margin-top: 2px;
}
.primary-nav { justify-self: center; }
.primary-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 8px;
}
.primary-nav .has-dropdown { position: relative; }
.nav-link {
  background: none; border: 0;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-fg);
  border-radius: 8px;
  transition: background .2s var(--ease);
}
.nav-link:hover { background: var(--c-soft); }

.dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translate(-50%, 6px);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}
.dropdown a:hover { background: var(--c-soft); }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.header__actions {
  display: flex;
  gap: 4px;
  align-items: center;
}
.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none; border: 0;
  border-radius: 50%;
  color: var(--c-fg);
  position: relative;
  transition: background .2s var(--ease);
}
.icon-btn:hover { background: var(--c-soft); }
.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--c-accent-2);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* hamburger */
.hamburger {
  display: none;
  width: 36px; height: 36px;
  border: 0; background: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-fg);
  transition: transform .25s var(--ease), opacity .25s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  border-top: 1px solid var(--c-border);
  padding: 8px 24px 24px;
  background: #fff;
}
.mobile-drawer details {
  border-bottom: 1px solid var(--c-border);
}
.mobile-drawer summary {
  list-style: none;
  padding: 14px 0;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.mobile-drawer summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
}
.mobile-drawer details[open] summary::after { content: '−'; }
.mobile-drawer a {
  display: block;
  padding: 8px 0 8px 14px;
  font-size: 0.95rem;
  color: var(--c-fg-muted);
}
.mobile-drawer .drawer-link {
  padding: 16px 0;
  display: block;
  font-weight: 600;
  border-bottom: 1px solid var(--c-border);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 76vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.hero video,
.hero--video > video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 60%);
  z-index: 1;
}
.hero__overlay--soft {
  background: linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.05));
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: fadeUp .9s var(--ease) both;
}
.hero__content h1 {
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero__pill {
  display: inline-block;
  padding: 14px 24px;
  background: rgba(213,89,50,.55);
  color: #fff;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 700;
  border-radius: 6px;
  backdrop-filter: blur(2px);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  cursor: pointer;
}
.btn--ghost {
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.85);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: #fff;
  color: var(--c-dark);
  transform: translateY(-1px);
}
.btn--solid {
  background: var(--c-dark);
  color: #fff;
}
.btn--solid:hover {
  background: var(--c-accent-2);
  transform: translateY(-1px);
}

/* ===================== SECTION SHELL ===================== */
.section {
  padding: clamp(56px, 8vw, 110px) 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section--light { background: var(--c-bg); }
.section--narrow { max-width: 1080px; }
.section__head {
  text-align: center;
  margin: 0 auto clamp(36px, 5vw, 64px);
  max-width: 760px;
}
.section__head h2 { margin-bottom: 14px; }
.section__head p { color: var(--c-fg-muted); }

/* ===================== COLLECTION GRID ===================== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.collection-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-soft);
  display: block;
  isolation: isolate;
}
.collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.collection-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}
.collection-card__label {
  position: absolute;
  left: 18px; bottom: 16px;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.collection-card:hover img { transform: scale(1.05); }

/* ===================== STAT BANNER ===================== */
.stat-banner {
  background: var(--c-dark);
  color: #fff;
  text-align: center;
  padding: clamp(56px, 8vw, 96px) 28px;
}
.stat-banner__inner { max-width: 920px; margin: 0 auto; }
.stat-banner h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  margin-bottom: 28px;
  font-weight: 600;
}
.stat-banner__num {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.stat-banner__num span {
  font-size: 0.55em;
  font-weight: 600;
  margin-left: 6px;
  opacity: .75;
}
.stat-banner__sub {
  font-size: 1rem;
  letter-spacing: 0.04em;
  opacity: .8;
  margin-top: 8px;
}

/* ===================== ABOUT BLOCK ===================== */
.about-block {
  text-align: center;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  line-height: 1.55;
  color: var(--c-fg);
  display: grid;
  gap: 1.2em;
}
.about-block p { font-weight: 500; }

/* ===================== PRODUCT GRID ===================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--c-soft);
  overflow: hidden;
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 8%;
  transition: transform .5s var(--ease);
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--c-dark);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  border-radius: 4px;
  z-index: 2;
}
.product-card__body {
  padding: 18px 18px 24px;
  text-align: center;
}
.product-card__body h3 {
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.product-card__body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color .15s ease;
}
.product-card__body h3 a:hover { color: var(--c-accent); }
.price-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: baseline;
}
.price {
  font-weight: 700;
  font-size: 1.05rem;
}
.price-compare {
  text-decoration: line-through;
  color: var(--c-fg-muted);
  font-size: 0.95rem;
}

/* ===================== CTA STRIP ===================== */
.cta-strip {
  padding: clamp(70px, 9vw, 130px) 28px;
  background: linear-gradient(135deg, #1d1d20 0%, #050505 100%);
  color: #fff;
  text-align: center;
}
.cta-strip__inner { max-width: 920px; margin: 0 auto; }
.cta-pill {
  display: inline-block;
  background: rgba(255, 83, 0, 0.81);
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.2;
}
.cta-strip p {
  margin: 28px 0 32px;
  font-size: 1.05rem;
  opacity: .9;
}

/* ===================== NEWSLETTER ===================== */
.newsletter {
  padding: clamp(60px, 7vw, 100px) 28px;
  background: var(--c-soft);
}
.newsletter__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.newsletter__copy h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-bottom: 8px;
}
.newsletter__copy p {
  color: var(--c-fg-muted);
  margin-bottom: 22px;
}
.newsletter__form {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  overflow: hidden;
  max-width: 520px;
  transition: border-color .2s var(--ease);
}
.newsletter__form:focus-within { border-color: var(--c-fg); }
.newsletter__form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 14px 22px;
  font: inherit;
  outline: none;
}
.newsletter__form button {
  border: 0;
  background: var(--c-dark);
  color: #fff;
  width: 48px; height: 48px;
  margin: 4px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease);
}
.newsletter__form button:hover { background: var(--c-accent-2); }

.newsletter__logo {
  width: 140px;
  height: 140px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--c-dark);
  color: #d8d8da;
  padding: 64px 28px 28px;
}
.site-footer__cols {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.site-footer a {
  font-size: 0.9rem;
  color: #b9b9bc;
  transition: color .2s var(--ease);
}
.site-footer a:hover { color: #fff; }

.site-footer__bottom {
  border-top: 1px solid #2a2a2d;
  margin-top: 56px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.78rem;
  color: #8b8b8e;
}

/* ===================== PRODUCT DETAIL PAGE ===================== */
.breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 22px 28px 0;
  font-size: 0.82rem;
  color: var(--c-fg-muted);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--c-fg); }
.breadcrumb span { color: #b7b7bb; }
.breadcrumb .current { color: var(--c-fg); font-weight: 600; }

.pdp {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 28px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.pdp__gallery {
  background: var(--c-soft);
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.pdp__gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6%;
  transition: transform .5s var(--ease);
}
.pdp__gallery:hover img { transform: scale(1.03); }

.pdp__info { padding-top: 8px; }
.pdp__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-fg-muted);
  margin-bottom: 12px;
}
.pdp__title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.pdp__price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
}
.pdp__price {
  font-size: 1.6rem;
  font-weight: 700;
}
.pdp__price-compare {
  text-decoration: line-through;
  color: var(--c-fg-muted);
  font-size: 1.05rem;
}
.pdp__save {
  background: rgba(255,83,0,.12);
  color: var(--c-accent-2);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.pdp__tax {
  font-size: 0.82rem;
  color: var(--c-fg-muted);
  margin-bottom: 26px;
}
.pdp__lede {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-fg);
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--c-border);
}

.pdp__opts { margin-bottom: 20px; }
.pdp__opt-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
  color: var(--c-fg-muted);
}
.swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1.5px solid var(--c-border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.swatch input { display: none; }
.swatch__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.1);
}
.swatch:hover { border-color: var(--c-fg); }
.swatch.is-selected,
.swatch:has(input:checked) {
  border-color: var(--c-fg);
  background: var(--c-soft);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 26px 0 22px;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--c-border);
  border-radius: 999px;
  overflow: hidden;
}
.qty button {
  width: 40px; height: 44px;
  border: 0; background: none;
  font-size: 1.1rem;
  color: var(--c-fg);
}
.qty button:hover { background: var(--c-soft); }
.qty input {
  width: 48px;
  text-align: center;
  border: 0;
  font: inherit;
  font-weight: 600;
  background: transparent;
  outline: none;
}

.pdp__cta {
  display: grid;
  gap: 12px;
}
.btn--block { width: 100%; justify-content: center; padding: 16px 24px; }
.btn--accent {
  background: var(--c-accent-2);
  color: #fff;
}
.btn--accent:hover { background: #e84800; transform: translateY(-1px); }
.btn--outline {
  background: #fff;
  color: var(--c-fg);
  border: 1.5px solid var(--c-fg);
}
.btn--outline:hover { background: var(--c-fg); color: #fff; }

.pdp__perks {
  margin-top: 26px;
  display: grid;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--c-fg-muted);
}
.pdp__perks li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pdp__perks li::before {
  content: '✓';
  color: var(--c-accent-2);
  font-weight: 700;
  flex-shrink: 0;
}

/* spec grid */
.spec-section {
  background: var(--c-soft);
  padding: clamp(48px, 6vw, 80px) 28px;
}
.spec-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.spec {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 18px;
  box-shadow: var(--shadow-sm);
}
.spec__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-fg);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.spec__num span {
  font-size: 0.55em;
  font-weight: 600;
  margin-left: 4px;
  color: var(--c-fg-muted);
}
.spec__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-fg-muted);
}

/* highlights section */
.highlights {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) 28px;
}
.highlights__head {
  text-align: center;
  margin-bottom: 48px;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.highlight {
  padding: 28px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.highlight:hover { border-color: var(--c-fg); transform: translateY(-2px); }
.highlight h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.highlight p {
  color: var(--c-fg-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* related products */
.related {
  background: #fff;
  padding: clamp(48px, 6vw, 80px) 28px;
  border-top: 1px solid var(--c-border);
}
.related__inner { max-width: var(--max-w); margin: 0 auto; }
.related h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
  text-align: center;
}

@media (max-width: 900px) {
  .pdp { grid-template-columns: 1fr; }
}

/* ===================== REVEAL ANIMATION ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1180px) {
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid    { grid-template-columns: repeat(3, 1fr); }
  .site-footer__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .primary-nav { display: none; }
  .hamburger { display: inline-flex; }
  .header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .logo { justify-self: start; margin-left: 4px; }
  .header__actions { gap: 0; }
  .mobile-drawer.is-open { display: block; }
  .product-grid    { grid-template-columns: repeat(2, 1fr); }
  .newsletter__inner { grid-template-columns: 1fr; text-align: center; }
  .newsletter__form { margin: 0 auto; }
  .newsletter__logo { margin: 0 auto; }
}
@media (max-width: 640px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-grid    { grid-template-columns: 1fr 1fr; gap: 14px; }
  .site-footer__cols { grid-template-columns: 1fr; gap: 24px; }
  .hero { height: 70vh; min-height: 460px; }
}

/* =============================================================
   Collection page
   ============================================================= */
.collection-hero {
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.collection-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.55) 100%);
}
.collection-hero__content {
  position: relative;
  padding: 40px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.collection-hero__content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.collection-hero__content p {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.5;
  opacity: .92;
}
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--c-fg-muted);
}
.empty-state .btn { margin-top: 16px; }

/* =============================================================
   Info pages (about, contact, support, warranty, etc.)
   ============================================================= */
.info-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}
.info-page__head {
  text-align: center;
  margin-bottom: 40px;
}
.info-page__head h1 {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.info-page__lede {
  color: var(--c-fg-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto;
}
.info-page__body h2 {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  margin: 32px 0 12px;
}
.info-page__body p {
  line-height: 1.65;
  color: var(--c-fg);
  margin-bottom: 12px;
}
.info-page__body ul,
.info-page__body ol {
  margin: 0 0 16px 20px;
  padding: 0;
}
.info-page__body li {
  line-height: 1.65;
  margin-bottom: 6px;
}
.info-page__body a {
  color: var(--c-accent);
  text-decoration: underline;
}
.info-page__body details {
  border-bottom: 1px solid #e7e7ea;
  padding: 14px 0;
}
.info-page__body details summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.info-page__body details summary::-webkit-details-marker { display: none; }
.info-page__body details summary::after {
  content: '+';
  float: right;
  font-weight: 400;
  font-size: 1.2rem;
}
.info-page__body details[open] summary::after { content: '−'; }
.info-page__body details p {
  padding-top: 10px;
  color: var(--c-fg-muted);
}
.info-page__small {
  font-size: 0.85rem;
  color: var(--c-fg-muted);
  font-style: italic;
  margin-top: 24px;
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.contact-card {
  border: 1px solid #ececef;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
}
.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.contact-card p {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--c-fg-muted);
}
.contact-card a { color: var(--c-accent); }
.contact-form {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin: 32px 0 0;
}
.contact-form h2 { margin-bottom: 4px; }
.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 12px;
  border: 1px solid #d8d8dd;
  border-radius: 6px;
  background: #fff;
}
.contact-form button { justify-self: start; padding: 10px 22px; }

/* news */
.news-item {
  border-bottom: 1px solid #e7e7ea;
  padding: 20px 0;
}
.news-item__date {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--c-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.news-item h2 {
  font-size: 1.2rem;
  margin: 4px 0 8px;
}
.news-item p {
  color: var(--c-fg-muted);
  line-height: 1.55;
}

/* auth */
.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
.auth-card {
  border: 1px solid #ececef;
  border-radius: 10px;
  padding: 24px;
  background: #fff;
}
.auth-card h2 { margin-bottom: 16px; font-size: 1.2rem; }
.auth-card form { display: grid; gap: 12px; }
.auth-card label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}
.auth-card input {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 12px;
  border: 1px solid #d8d8dd;
  border-radius: 6px;
  background: #fff;
}
.auth-card .btn { justify-self: start; padding: 10px 22px; }

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .auth-grid { grid-template-columns: 1fr; }
}
