/* ============================================================
   California Umbrella — front-end reference build
   All token values measured from the live site (computed styles
   via Chrome DevTools, June 2026). Source of truth for redesign.
   ============================================================ */

/* ── Fonts (local copies; live site serves these via Adobe Fonts) ── */
@font-face { font-family:'brandon-grotesque'; src:url('../fonts/Brandon_Grotesque_regular.otf') format('opentype'); font-weight:400; font-display:swap; }
@font-face { font-family:'brandon-grotesque'; src:url('../fonts/Brandon_Grotesque_medium.otf') format('opentype'); font-weight:500; font-display:swap; }
@font-face { font-family:'brandon-grotesque'; src:url('../fonts/Brandon_Grotesque_bold.otf') format('opentype'); font-weight:600 900; font-display:swap; }
@font-face { font-family:'proxima-nova'; src:url('../fonts/Proxima Nova Regular.ttf') format('truetype'); font-weight:400; font-display:swap; }
@font-face { font-family:'proxima-nova'; src:url('../fonts/Proxima Nova Semibold.ttf') format('truetype'); font-weight:600; font-display:swap; }

/* ── Design tokens (measured) ── */
:root {
  --slate:        #5e819c;   /* rgb(94,129,156)  header, footer, buttons, section titles */
  --slate-light:  #6c8ba3;   /* rgb(108,139,163) hover / secondary slate */
  --slate-trans:  rgba(94,129,156,.9);  /* hero & banner buttons over imagery */
  --orange:       #f68d21;   /* rgb(246,141,33)  CTA accent, filters, newsletter */
  --orange-light: #f5a623;   /* rgb(245,166,35)  hover */
  --sale-red:     #dc2626;   /* rgb(220,38,38)   SALE nav item */
  --ink:          #37393a;   /* rgb(55,57,58)    body text & dark headings */
  --ink-soft:     #555a5e;
  --line:         #e4e4e4;
  --bg:           #ffffff;

  --font-display: 'brandon-grotesque', sans-serif;
  --font-body:    'proxima-nova', sans-serif;

  --container:    1572px;  /* live content measures 1524px wide at 1920 viewport */
  --gutter:       24px;
  --radius:       5px;
}

/* ── Reset / base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;           /* 24px — measured */
  letter-spacing: .3px;       /* measured */
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input { font: inherit; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ============================================================
   BUTTONS  (.shop-btn measured: 18px/600/3px, pad 15/30, r5)
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: var(--slate);
  padding: 15px 30px;
  border-radius: var(--radius);
  transition: background .2s ease;
}
.btn:hover { background: var(--slate-light); }
.btn--block { display: block; width: 100%; }
.btn--overlay { background: var(--slate-trans); border-radius: 6px; }
.btn--overlay:hover { background: var(--slate); }
.btn--orange { background: var(--orange); }
.btn--orange:hover { background: var(--orange-light); }
.btn--sm { font-size: 15px; letter-spacing: 2.25px; padding: 13px 26px; }

/* ============================================================
   HEADER  (bg #5e819c, two rows, sticky)
   ============================================================ */
.site-header {
  background: var(--slate);
  position: sticky;
  top: 0;
  z-index: 500;
}
.header-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
}
.header-logo img { height: 24px; width: auto; }

.header-burger {
  display: none;
  position: absolute;
  left: 20px;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.header-burger span { display: block; width: 22px; height: 2px; background: #fff; }

.header-icons {
  position: absolute;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.header-icon img { height: 22px; width: 22px; filter: brightness(0) invert(1); }
.header-icon:hover img { opacity: .8; }

.header-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  height: 46px;
}
.header-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.1px;       /* measured */
  text-transform: uppercase;
  color: #fff;
  transition: opacity .15s;
  padding: 14px 0;
}
.header-nav a:hover { opacity: .82; }
.header-nav a.is-sale { color: var(--sale-red); }

/* ── Mega menu ── */
.mega-panel {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: #fff;
  box-shadow: 0 18px 30px rgba(0,0,0,.18);
  z-index: 490;
}
.mega-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 44px 24px 48px 96px;
  position: relative;
}
.mega-close {
  position: absolute;
  left: 32px;
  top: 40px;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
}
.mega-close:hover { color: var(--slate); }
.mega-cols {
  display: flex;
  gap: 56px;
  justify-content: space-between;
}
.mega-col { min-width: 150px; }
.mega-group + .mega-group { margin-top: 40px; }
.mega-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #1e2021;
  margin-bottom: 20px;
}
.mega-group ul li { margin-bottom: 14px; }
.mega-group ul a {
  font-family: var(--font-body);
  font-size: 15px;            /* Figma spec */
  color: var(--slate);        /* measured */
  transition: color .15s;
}
.mega-group ul a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.mega-feature {
  position: relative;
  display: block;
  width: 285px;
  flex-shrink: 0;
  overflow: hidden;
}
.mega-feature img { width: 100%; height: auto; }
.mega-feature-text {
  position: absolute;
  inset: auto 0 0 0;
  padding: 48px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.72), transparent);
}
.mega-feature-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #fff;
}
.mega-feature-body {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.85);
  margin-top: 4px;
}

/* ── Mobile drawer ── */
.mobile-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(320px, 85vw);
  background: #fff;
  z-index: 600;
  transform: translateX(-100%);
  transition: transform .25s ease;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--slate);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.mobile-drawer-close { font-size: 26px; color: #fff; line-height: 1; }
.mobile-drawer-list a {
  display: block;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink);
}
.mobile-drawer-list a.is-sale { color: var(--sale-red); }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 590;
}

/* ============================================================
   SECTION HEADINGS  (h2.container-title measured:
   #5e819c, 28px, 600, ls 2.8px, full-width rule below)
   ============================================================ */
.container-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--slate);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--slate);
  margin-bottom: 36px;
}
.section { padding-top: 64px; }

/* Centered statement heading (dark variant) */
.statement-band { text-align: center; padding: 64px 24px 56px; }
.statement-band h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.statement-band p { max-width: 900px; margin-inline: auto; }

/* Chevron divider between sections */
.wave-divider { line-height: 0; }
.wave-divider img { width: 100%; height: auto; }

/* ============================================================
   HERO  (h1 measured: 55px/700/5.5px white; btn 20px ls2 r6)
   ============================================================ */
.hero {
  position: relative;
  height: clamp(420px, 35.8vw, 688px); /* hero asset is 1905x688 */
  overflow: hidden;
}
.hero { background: #3c4a55; }
.hero-slide { position: absolute; inset: 0; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  gap: 26px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 3.6vw, 55px);
  letter-spacing: 5.5px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0,0,0,.25);
}
.hero-sub {
  font-size: 16px;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
  max-width: 640px;
}
.hero .btn--overlay {
  font-size: 20px;
  letter-spacing: 2px;
  padding: 16px 56px;
  min-width: min(560px, 80vw);
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  color: var(--ink);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background .15s;
}
.hero-arrow:hover { background: #fff; }
.hero-arrow--prev { left: 22px; }
.hero-arrow--next { right: 22px; }

/* ── Brand logo strip ── */
.brand-strip {
  padding: 44px 24px 36px;
  background: #fff;
}
.brand-strip-row {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px 48px;
}
.brand-strip img {
  height: 44px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

/* ============================================================
   HOME — BEST SELLERS
   ============================================================ */
.bestseller-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card-img {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-eyebrow { font-size: 14px; color: var(--ink); margin-top: 14px; }
.product-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 2px;
}
.product-card-price { font-size: 14px; color: var(--ink-soft); margin-top: 2px; }
.product-card .btn { margin-top: 14px; font-size: 16px; letter-spacing: 2.4px; padding: 13px 20px; }

/* ============================================================
   HOME — EXPLORE BANNERS
   ============================================================ */
.explore-banner {
  display: block;             /* <a> is inline by default — height is ignored without this */
  position: relative;
  background: #3c4a55;        /* fallback if hotlinked image fails */
  height: 413px;             /* rec*.webp measured 1524x413 */
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 26px;
}
.explore-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.explore-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}
.explore-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 42px;
  max-width: 640px;
}
.explore-banner-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: #fff;
}
.explore-banner-body { font-size: 14px; color: rgba(255,255,255,.92); margin-top: 10px; }
.explore-banner .btn { margin-top: 20px; }

/* ============================================================
   HOME — SHOP BY FEATURE
   ============================================================ */
.feature-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 38px 0 20px;
}
.feature-label::before { content: ''; width: 32px; height: 1px; background: var(--ink-soft); }

.feature-grid { display: grid; gap: 26px; }
.feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid--4 { grid-template-columns: repeat(4, 1fr); }
.feature-card {
  display: block;
  position: relative;
  background: #3c4a55;        /* fallback if hotlinked image fails */
  height: 360px;             /* feature*.webp measured 360px tall */
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.feature-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-card-text {
  position: absolute;
  inset: auto 0 0 0;
  padding: 70px 18px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.82), transparent);
}
.feature-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #fff;
}
.feature-card-body { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.9); margin-top: 6px; }

/* ============================================================
   HOME — MAKE SHADE A STATEMENT (lookbook tiles)
   ============================================================ */
.look-row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}
.look-row--a { grid-template-columns: 1fr 2fr; }
.look-row--b { grid-template-columns: 2fr 1fr; }
.look-tile {
  display: block;
  position: relative;
  background: #3c4a55;        /* fallback if hotlinked image fails */
  height: 473px;             /* l*.webp measured 473px tall */
  border-radius: 4px;
  overflow: hidden;
}
.look-tile > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.look-tile:hover > img { transform: scale(1.03); }
.look-tile-text {
  position: absolute;
  inset: auto auto 14px 16px;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.look-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 45%);
  z-index: 1;
}
.look-tile-eyebrow { font-size: 12px; color: #fff; }
.look-tile-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
}
.look-tile-cta {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   HOME — FABRIC CTA BAND
   ============================================================ */
.fabric-cta {
  position: relative;
  background: #3c4a55;        /* fallback if hotlinked image fails */
  height: 540px;             /* l7.webp measured 1524x540 */
  border-radius: 4px;
  overflow: hidden;
  margin: 6px 0 70px;
}
.fabric-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fabric-cta-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.fabric-cta-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.fabric-cta-body {
  font-size: 14px;
  color: #fff;
  max-width: 460px;
  margin-top: 10px;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.fabric-cta .btn { margin-top: 24px; font-size: 14px; letter-spacing: 2.1px; }

/* ============================================================
   COLLECTION PAGE
   ============================================================ */
.page-hero { text-align: center; padding: 64px 24px 0; }
.page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 3.6vw, 55px);
  letter-spacing: 5.5px;
  text-transform: uppercase;
  color: var(--ink);
}
.page-sub { font-size: 16px; margin-top: 10px; }

.filter-bar {
  max-width: 1120px;
  margin: 48px auto 0;
  padding: 0 24px;
}
.filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.filter-row-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  color: var(--ink);
  margin-right: 8px;
}
.filter-pill {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 22px;
  padding: 10px 24px;
  transition: all .15s;
}
.filter-pill:hover { border-color: var(--slate); }
.filter-pill.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.filter-options {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.filter-options.is-open { display: flex; }
.filter-opt {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .3px;
  color: var(--ink);
  background: #f4f4f4;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 7px 16px;
  transition: all .15s;
}
.filter-opt:hover { border-color: var(--slate); }
.filter-opt.is-active { background: var(--slate); color: #fff; }
.filter-divider {
  border: none;
  border-top: 1px solid rgba(94,129,156,.45);
  margin-top: 26px;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 36px;
}
.series-card {
  display: flex;
  flex-direction: column;
  background: #f4f5f5;          /* Figma: light gray card body */
  border-radius: 8px;
  overflow: hidden;
}
.series-card.is-hidden { display: none; }
.series-card-img {
  display: block;
  position: relative;
  aspect-ratio: 7 / 6;
  background: linear-gradient(140deg, #6c8ba3 0%, #5e819c 55%, #4d6b84 100%);
}
.series-card-img > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.series-card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.series-card-img-placeholder img { height: 40px; opacity: .55; filter: brightness(0) invert(1); }
.series-card-dots {
  position: absolute;
  bottom: 12px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.series-card-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.55); }
.series-card-dots span.is-active { background: #fff; }

.series-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.series-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--ink);
}
.series-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.series-card-features {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  gap: 16px;
  margin-top: 16px;
  padding-bottom: 2px;
}
.series-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
}
.series-feature img { width: 16px; height: 16px; }

.series-card-features { border-bottom: 1px solid #d8dcdf; padding-bottom: 14px; }
.series-card-coverage {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 18px;
}
.series-card-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.series-size-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: var(--slate);
  border-radius: 6px;
  min-width: 118px;
  padding: 13px 24px;
  transition: background .15s;
}
.series-size-btn:hover { background: var(--slate-light); }
.series-card .btn--learn {
  margin-top: auto;
  padding-top: 14px;
}
.series-card .btn {
  margin-top: 18px;
  font-size: 15px;
  letter-spacing: 2.25px;
  padding: 14px 20px;
}

/* ============================================================
   LOGIN PAGE  (form measured: 572px, btn 50px h, r5, 18px/600/3px)
   ============================================================ */
.login-wrap {
  max-width: 572px;
  margin-inline: auto;
  padding: 64px 24px 120px;
  text-align: center;
}
.login-form { margin-top: 44px; text-align: left; }
.login-form__group { margin-bottom: 22px; }
.login-form__input {
  width: 100%;
  height: 50px;
  padding: 12px 16px;
  font-size: 16px;
  letter-spacing: .3px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c9d2d9;
  border-radius: 4px;
}
.login-form__input::placeholder { color: #6b7280; }
.login-form__input:focus {
  outline: none;
  border-color: var(--slate);
  box-shadow: 0 0 0 3px rgba(94,129,156,.15);
}
.login-form__forgot-link {
  display: block;
  text-align: right;
  font-size: 14px;
  color: var(--slate);
  margin-top: 8px;
}
.login-form__forgot-link:hover { text-decoration: underline; }
.login-form__actions { margin-top: 30px; }
.btn-standard {
  display: block;
  width: 100%;
  height: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  background: var(--slate);
  border-radius: var(--radius);
  transition: background .2s;
}
.btn-standard:hover { background: var(--slate-light); }
.login-signup { font-size: 14px; margin-top: 26px; text-align: left; }
.login-signup a { color: var(--slate); }
.login-signup a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER  (bg #5e819c; titles 18px ls1.8 + orange underline;
   links brandon 14px ls1.4 uppercase white — measured)
   ============================================================ */
.footer-divider { background: #fff; line-height: 0; }
.footer-divider img { width: 100%; height: 25px; object-fit: cover; }

.site-footer {
  background: var(--slate);
  padding: 48px 0 24px;
}
.footer-logo { height: 26px; width: auto; margin-bottom: 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 1fr 1.3fr;
  gap: 44px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 8px;
  margin-bottom: 18px;
  position: relative;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 38px;
  height: 2px;
  background: var(--orange);
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a, .footer-connect-line, .footer-connect-line a {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #fff;
}
.footer-col ul a:hover { opacity: .8; }
.footer-connect-line { margin-bottom: 9px; }
.footer-social { display: flex; gap: 16px; margin-top: 18px; }
.footer-social img { height: 20px; width: 20px; filter: brightness(0) invert(1); }
.footer-social a:hover img { opacity: .8; }

.footer-newsletter { margin-top: 14px; }
.footer-newsletter input {
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  font-size: 14px;
  border: none;
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
}
.footer-newsletter input::placeholder { color: #8a8f94; }
.footer-newsletter button {
  width: 100%;
  margin-top: 16px;
  height: 46px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  border-radius: 4px;
  transition: background .15s;
}
.footer-newsletter button:hover { background: var(--orange-light); }
.footer-copy {
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,.9);
  margin-top: 52px;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  background: #fff;
  box-shadow: 0 -6px 24px rgba(0,0,0,.16);
  z-index: 700;
  padding: 20px 24px;
}
.cookie-inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.cookie-title { font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: 1px; margin-bottom: 4px; }
.cookie-text p:last-child { font-size: 13px; color: var(--ink-soft); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 11px 18px;
  border-radius: 4px;
  transition: all .15s;
}
.cookie-btn--ghost { border: 1px solid #c9d2d9; color: var(--ink); }
.cookie-btn--ghost:hover { border-color: var(--slate); color: var(--slate); }
.cookie-btn--solid { background: var(--slate); color: #fff; }
.cookie-btn--solid:hover { background: var(--slate-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .bestseller-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .series-grid { grid-template-columns: repeat(2, 1fr); }
  .mega-feature { display: none; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-burger { display: flex; }
  .header-top { height: 58px; }
  .hero { height: 470px; }
  .hero .btn--overlay { min-width: 0; font-size: 16px; padding: 14px 28px; }
  .bestseller-grid { grid-template-columns: 1fr; }
  .feature-grid--3, .feature-grid--4 { grid-template-columns: 1fr; }
  .look-row--a, .look-row--b { grid-template-columns: 1fr; }
  .series-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .explore-banner-content { padding: 0 22px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .mega-panel { display: none !important; }
}
