  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'ArcticFox';
  src: url('ArcticFox-Italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'ArcticFox';
  src: url('ArcticFox-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'ArcticFox Bold';
  src: url('ArcticFox-Bold.woff2') format('woff2');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'ACaslonPro';
  src: url('ACaslonPro-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'ACaslonPro';
  src: url('ACaslonPro-Italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'ACaslonPro';
  src: url('ACaslonPro-Semibold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'ACaslonPro';
  src: url('ACaslonPro-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ── Reset & base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
/* `overflow-x: hidden` here would silently break `position: sticky` on any
 * descendant (sticky ancestors become unable to find a scroll container).
 * `overflow-x: clip` prevents horizontal scroll the same way but does NOT
 * establish a scroll container — sticky elements keep working. */
html, body { overflow-x: clip; max-width: 100%; }
:root { --wc-content-bg: #f4f4f4; }
body,
body.woocommerce,
body.woocommerce-page,
body .wp-site-blocks,
body .is-layout-flow,
.site-main,
.woocommerce {
  background: #f4f4f4 !important;
}
body {
  font-family: 'ArcticFox', sans-serif;
  color: #222222;
  background: #f4f4f4;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Announcement bar ───────────────────────────────────────────────────── */
.announcement-bar {
  background: #222222;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 10px 20px;
  font-family: 'ArcticFox', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ── Site header / nav ──────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  height: 80px;
}

.nav-left { display: flex; align-items: center; }

.nav-links { display: flex; gap: 28px; }

.nav-links a {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #222;
  transition: color 0.18s;
  white-space: nowrap;
}

.nav-links a:hover { color: #B93228; }
.nav-links a.sale { color: #B93228; }

.nav-center a { display: block; line-height: 0; }
.nav-center img { width: 128px; height: auto; }

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.nav-giftcard {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #222;
  text-decoration: none;
  padding: 8px 10px;
  white-space: nowrap;
  transition: color 0.18s;
}
.nav-giftcard:hover { color: #B93228; }

.icon-btn {
  background: none;
  border: none;
  padding: 10px;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.18s;
  border-radius: 2px;
}

.icon-btn:hover { color: #B93228; }
.icon-btn svg { width: 20px; height: 20px; }
.hamburger-btn { display: none; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.site-hero {
  position: relative;
  height: calc(100vh - 105px);
  min-height: 480px;
  max-height: 900px;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
}

/* Video hero — same layer as .hero-img, so .hero-shade (z-index 1) and
   .hero-content (z-index 2) stack over it unchanged. The poster attribute
   carries the first frame, so the hero is never blank while the mp4 loads. */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.06) 0%,
    rgba(0,0,0,0.28) 50%,
    rgba(0,0,0,0.60) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 72px;
  left: 72px;
  color: #fff;
  max-width: 560px;
}

.hero-eyebrow {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}

.hero-headline {
  font-family: 'ArcticFox Headline', sans-serif;
  font-weight: normal;
  font-size: clamp(40px, 5.5vw, 76px);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 36px;
}

/* Supporting line between the headline and the CTA, for the bottom-left hero.
   Scoped to .home so it can't reach the landing pages — page-hoja-rattavarustus
   and page-fjallraven-seljakotid-ja-koolikotid style .hero-subtitle themselves
   for a CENTRED hero, and a stray max-width here would break their layout. */
.home .hero-headline:has(+ .hero-subtitle) { margin-bottom: 18px; }

.home .hero-subtitle {
  font-family: 'ArcticFox', sans-serif;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin: 0 0 32px;
}

.hero-cta {
  display: inline-block;
  padding: 18px 40px;
  background: #fff;
  color: #000;
  border-radius: 4px;
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
  transition: all 0.2s ease;
  user-select: none;
}

.hero-cta:hover { background: #f4f4f4; color: #B93228; }

/* ── Section shared ─────────────────────────────────────────────────────── */
.section-label {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #999;
  text-align: center;
  margin-bottom: 44px;
}

/* ── Category grid ──────────────────────────────────────────────────────── */
.section-categories {
  padding: 80px 32px;
  max-width: 1440px;
  margin: 0 auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cat-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: block;
  border-radius: 8px;
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-card:hover .cat-card-bg { transform: scale(1.04); }

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.58) 0%,
    rgba(0,0,0,0.10) 55%,
    rgba(0,0,0,0.00) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 28px;
}

.cat-name {
  font-family: 'ArcticFox Headline', sans-serif;
  font-weight: normal;
  font-size: clamp(26px, 2.4vw, 38px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 14px;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'ArcticFox', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  transition: color 0.18s, gap 0.2s;
}

.cat-card:hover .cat-link { color: #fff; gap: 12px; }
.cat-link svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Editorial ──────────────────────────────────────────────────────────── */
.section-editorial { background: #ffffff; overflow: hidden; }

.editorial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1440px;
  margin: 0 auto;
}

.editorial-img {
  min-height: 580px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

/* Front page: square corners, matching the Hoja and bags landing pages, which
   both override .editorial-img to border-radius 0 in their own page styles. */
.home .editorial-img { border-radius: 0; }

.editorial-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px;
}

.editorial-eyebrow {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #B93228;
  margin-bottom: 28px;
}

.editorial-headline {
  font-family: 'ArcticFox Headline', sans-serif;
  font-weight: normal;
  font-size: clamp(32px, 3vw, 52px);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #222;
  margin-bottom: 28px;
}

.editorial-body {
  font-family: 'ArcticFox', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #666;
  margin-bottom: 44px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 15px 25px;
  background: #fff;
  color: #000;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
  transition: all 0.2s ease;
  user-select: none;
}

.btn-dark:hover {
  color: #B93228;
  background: #f4f4f4;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

/* ── USP strip ──────────────────────────────────────────────────────────── */
.section-usp {
  padding: 24px 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 52px 40px;
  border-right: 1px solid #e8e8e8;
}

.usp-item:last-child { border-right: none; }

.usp-icon {
  width: 36px; height: 36px;
  margin-bottom: 18px;
  color: #B93228;
  flex-shrink: 0;
}

.usp-title {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 10px;
}

.usp-desc {
  font-family: 'ArcticFox', sans-serif;
  font-size: 15px;
  color: #999;
  line-height: 1.6;
}

/* ── Newsletter ─────────────────────────────────────────────────────────── */
.section-newsletter {
  padding: 96px 32px 104px;
  text-align: center;
}

.newsletter-inner { max-width: 640px; margin: 0 auto; }

.newsletter-eyebrow {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #B93228;
  margin-bottom: 24px;
}

.newsletter-headline {
  font-family: 'ArcticFox Headline', sans-serif;
  font-weight: normal;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #222;
  margin-bottom: 20px;
}

.newsletter-body {
  font-family: 'ArcticFox', sans-serif;
  font-size: 17px;
  color: #999;
  line-height: 1.7;
  margin-bottom: 52px;
}

/* ── Product cards ──────────────────────────────────────────────────────── */
.section-new-arrivals-bg { background: #f4f4f4; }

.section-new-arrivals {
  padding: 80px 12px 88px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.new-arrivals-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.new-arrivals-title {
  font-family: 'ArcticFox Headline', sans-serif;
  font-weight: normal;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #222;
  line-height: 1;
}

.new-arrivals-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #222;
  transition: color 0.18s, gap 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid #222;
  white-space: nowrap;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.new-arrivals-link:hover { color: #B93228; border-bottom-color: #B93228; gap: 11px; }
.new-arrivals-link svg { width: 13px; height: 13px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e8e8;
  transition: box-shadow 0.2s, border-color 0.2s;
  color: inherit;
  text-decoration: none;
}

.product-card:hover {
  border-color: #d0d0d0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
  padding: 18px;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.product-card:hover .product-img-wrap img { transform: scale(1.05); transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: #e0e0e0;
  color: #111;
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 1;
}

.product-info {
  padding: 16px 14px 20px;
  text-align: center;
}

.product-name {
  font-family: 'ArcticFox', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #222;
  line-height: 1.35;
  margin-bottom: 6px;
}

.product-price {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #222;
  letter-spacing: 0.02em;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { background: #222222; color: rgba(255,255,255,0.7); }

.footer-main {
  display: flex;
  gap: 48px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 32px 64px;
}
.footer-brand { width: 380px; flex-shrink: 0; }
.footer-main .footer-col { margin-left: auto; }
.footer-main .footer-col + .footer-col { margin-left: 48px; }

.footer-brand-logo {
  width: 120px; height: auto;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.footer-brand-desc {
  font-family: 'ArcticFox', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.48);
  margin-bottom: 36px;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.55);
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover { border-color: rgba(255,255,255,0.65); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }

.footer-col-title {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 22px;
}

.footer-links { display: flex; flex-direction: column; gap: 14px; }

.footer-links li,
.footer-links a {
  font-family: 'ArcticFox', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.48);
  transition: color 0.18s;
}

.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.1); }

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px 32px;
}

.footer-bottom-inner p,
.footer-bottom-inner a {
  font-family: 'ArcticFox', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-inner a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom-links { display: flex; gap: 24px; }

/* ── Mobile nav overlay ─────────────────────────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 300;
  padding: 24px 32px;
  flex-direction: column;
  overflow-y: auto;
}

.nav-overlay.is-open { display: flex; }

.nav-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.nav-overlay-header img { width: 110px; }

.nav-overlay-close {
  background: none; border: none;
  padding: 8px; color: #222; cursor: pointer;
}

.nav-overlay-links { display: flex; flex-direction: column; gap: 0; }

.nav-overlay-links a {
  font-family: 'ArcticFox Headline', sans-serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #222;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.18s;
}

.nav-overlay-links a:hover { color: #B93228; }

/* ── Mobile nav drawer ──────────────────────────────────────────────────── */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 299;
  opacity: 0;
  transition: opacity 0.28s ease;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-backdrop[hidden] { display: none; }
.mobile-nav-backdrop.is-open { opacity: 1; }

.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 88vw);
  background: #fff;
  z-index: 300;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}
.mobile-nav-logo { display: block; line-height: 0; }
.mobile-nav-logo img { width: 96px; height: auto; }

.mobile-nav-close {
  background: none;
  border: none;
  padding: 10px;
  margin: -10px;
  color: #222;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav-close:hover,
.mobile-nav-close:active { background: #f4f4f4; color: #B93228; }

.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0 32px;
}

.mobile-nav-label {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #999;
  padding: 14px 24px 10px;
  margin: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}

.mobile-nav-links li { margin: 0; }

.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'ArcticFox', sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #222;
  padding: 16px 24px;
  min-height: 56px;
  border-bottom: 1px solid #f2f2f2;
  transition: color 0.18s, background 0.18s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-links a svg {
  width: 18px;
  height: 18px;
  color: #bbb;
  flex-shrink: 0;
  transition: color 0.18s, transform 0.18s;
}
.mobile-nav-links a:hover,
.mobile-nav-links a:active { color: #B93228; background: #fafafa; }
.mobile-nav-links a:hover svg,
.mobile-nav-links a:active svg { color: #B93228; transform: translateX(2px); }
.mobile-nav-links a[aria-current="page"] { color: #B93228; font-weight: 600; }

/* Body scroll lock when drawer is open */
body.mobile-nav-open { overflow: hidden; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { gap: 20px; }
  .editorial-text { padding: 60px 48px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-giftcard { display: none; }
  .hamburger-btn { display: flex; }

  .hero-content { bottom: 40px; left: 28px; right: 28px; }
  /* A full-height hero forces `cover` to scale the 16:9 video until its HEIGHT
     fills the portrait viewport, cropping most of the width away — that is what
     reads as "zoomed in". A shorter hero needs far less scaling. Matches the
     bags landing page, where the same clip sits at 74vh. */
  .home .site-hero { height: 74vh; min-height: 460px; }
  /* Front page only: lift the text clear of the bottom edge — at 40px the CTA
     sat under the browser's own UI bars on mobile and could be missed. The
     landing pages centre their hero instead (bottom:auto), so leave them be. */
  /* Measured up from the hero's bottom edge: larger % sits higher. */
  .home .hero-content { bottom: 15%; }
  .home .hero-subtitle { font-size: 15px; line-height: 1.55; max-width: none; margin-bottom: 24px; }
  /* Portrait crops the 16:9 frame hard and the bag sits centre-low in it, so
     bias the crop up a little to keep it clear of the text block above.
     Kept mild — a hard bias reads as "zoomed in" once the video is playing. */
  .hero-video { object-position: center 30%; }

  .section-categories { padding: 56px 20px; }
  .category-grid { grid-template-columns: 1fr; gap: 12px; }
  .cat-card { aspect-ratio: 4 / 3; }

  .editorial-inner { grid-template-columns: 1fr; }
  .editorial-img { min-height: 360px; }
  .editorial-text { padding: 48px 28px; }

  .usp-grid { grid-template-columns: 1fr; }
  .usp-item { border-right: none; border-bottom: 1px solid #e8e8e8; padding: 40px 28px; }
  .usp-item:last-child { border-bottom: none; }

  .section-newsletter { padding: 72px 24px 80px; }
  .section-new-arrivals { padding: 48px 20px 56px; }
  .new-arrivals-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

  .section-event-inner { padding: 56px 24px !important; max-width: 100% !important; }

  .footer-main { display: grid; grid-template-columns: 1fr 1fr; padding: 56px 24px 48px; gap: 36px; }
  .footer-brand { width: auto; grid-column: 1 / -1; }
  .footer-main .footer-col { margin-left: 0; }
  .footer-main .footer-col + .footer-col { margin-left: 0; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

@media (max-width: 480px) {
  .nav-container { padding: 0 20px; }
  .hero-headline { font-size: clamp(34px, 9vw, 48px); }
  .footer-main { grid-template-columns: 1fr; padding: 48px 20px 40px; }
  .footer-bottom-inner { padding: 18px 20px; }
  .product-grid { gap: 10px; }
}

/* ── Collection page ─────────────────────────────────────────────────────── */

.coll-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px 0;
  font-family: 'ArcticFox', sans-serif;
  font-size: 12px;
  color: #999;
}
.coll-breadcrumb a { color: #999; }
.coll-breadcrumb a:hover { color: #222; }
.coll-breadcrumb span[aria-current] { color: #555; }

.coll-mobile-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid #e8e8e8;
}

.coll-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 9px 16px;
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #222;
  cursor: pointer;
}

.coll-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 299;
}
.coll-overlay.is-open { display: block; }

.coll-page {
  display: grid;
  grid-template-columns: 240px 1fr;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 32px 80px;
  gap: 48px;
  align-items: start;
}

/* ── Sidebar ────────────────────────────────────────────────────────────── */
.coll-sidebar {
  align-self: flex-start;
}

.coll-sidebar-head {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #e8e8e8;
}

.coll-sidebar-title {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #222;
}

.coll-sidebar-close {
  background: none;
  border: none;
  padding: 4px;
  color: #222;
  cursor: pointer;
}

.coll-sidebar-body { padding-bottom: 24px; }

/* ── Category nav (hierarchical) ────────────────────────────────────────── */
.cat-nav { gap: 0 !important; padding-bottom: 8px !important; }

.cat-nav-top {
  display: block;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  cursor: pointer;
  font-family: 'ArcticFox', sans-serif;
  font-size: 14.5px;
  color: #444;
  padding: 5px 0 10px;
  margin-bottom: 6px;
}
.cat-nav-top:hover { color: #111; }
.cat-nav-top.is-active { color: #B93228; font-family: 'ArcticFox Bold', sans-serif; }

.cat-active-label {
  display: block;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  cursor: pointer;
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 14.5px;
  color: #B93228;
  padding: 4px 0 10px;
  margin-bottom: 6px;
}
.cat-active-label::after { content: ' ×'; font-size: 13px; color: #999; }

.cat-group { margin-bottom: 2px; }

.cat-group-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.cat-group-label {
  flex: 1;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 14.5px;
  color: #222;
  padding: 5px 0;
  display: block;
}
.cat-group-label:hover:not(.is-unavailable) { color: #000; }
.cat-group-label.is-active { color: #B93228; }
.cat-group-label.is-unavailable { color: #bbb; cursor: default; }

.cat-group-expand {
  background: none;
  border: none;
  padding: 4px 2px;
  color: #888;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.18s;
}
.cat-group.is-open .cat-group-expand { transform: rotate(180deg); }

.cat-subs {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 12px;
  margin-bottom: 4px;
}

.cat-sub-link {
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  width: 100%;
  font-family: 'ArcticFox', sans-serif;
  font-size: 14px;
  color: #666;
  padding: 4px 0;
  display: block;
}
.cat-sub-link:hover:not(.is-unavailable) { color: #222; }
.cat-sub-link.is-active { color: #B93228; font-family: 'ArcticFox Bold', sans-serif; }
.cat-sub-link.is-unavailable { color: #ccc; cursor: default; }

/* ── Colour swatches ─────────────────────────────────────────────────────── */
.colour-swatch-body { padding-bottom: 12px !important; }

.colour-swatch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 8px;
  padding-top: 4px;
}

.colour-group-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.colour-swatch-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: outline-color 0.15s, border-color 0.15s;
}
.colour-swatch-btn:hover { outline-color: #bbb; }
.colour-swatch-btn.is-active {
  border-color: #fff;
  outline-color: #222;
}

.colour-group-label {
  font-family: 'ArcticFox', sans-serif;
  font-size: 13.5px;
  color: #555;
  white-space: nowrap;
  cursor: pointer;
}

/* Filter groups */
.filter-group {
  border-bottom: 1px solid #e8e8e8;
}

.filter-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #222;
  cursor: pointer;
  text-align: left;
}

.filter-chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: #B93228;
  stroke: #B93228;
}
.filter-group.is-open .filter-chevron { transform: rotate(180deg); }

.filter-group-body {
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-family: 'ArcticFox', sans-serif;
  font-size: 14.5px;
  color: #444;
  cursor: pointer;
  user-select: none;
}

.filter-option input[type="checkbox"] { display: none; }

.filter-checkmark {
  width: 16px;
  height: 16px;
  border: 1.5px solid #bbb;
  border-radius: 3px;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}

.filter-option input:checked + .filter-checkmark {
  background: #222;
  border-color: #222;
}

.filter-option input:checked + .filter-checkmark::after {
  content: '';
  position: absolute;
  top: 2px; left: 4px;
  width: 5px; height: 8px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.filter-clear-btn {
  background: none;
  border: none;
  margin-top: 20px;
  font-family: 'ArcticFox', sans-serif;
  font-size: 13px;
  color: #999;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.filter-clear-btn:hover { color: #222; }

/* Active filter chips */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.active-filter-chip {
  display: inline-flex;
  align-items: center;
  background: #f4f4f4;
  border: 1px solid #e0e0e0;
  border-radius: 100px;
  padding: 6px 14px;
  font-family: 'ArcticFox', sans-serif;
  font-size: 12.5px;
  color: #444;
  cursor: pointer;
  transition: background 0.15s;
  text-transform: capitalize;
}
.active-filter-chip:hover { background: #e8e8e8; }

/* ── Toolbar ─────────────────────────────────────────────────────────────── */
.coll-main { min-width: 0; }

.coll-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.coll-count {
  font-family: 'ArcticFox', sans-serif;
  font-size: 14px;
  color: #999;
}

.coll-sort {
  font-family: 'ArcticFox', sans-serif;
  font-size: 13.5px;
  color: #222;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 12px;
  background: #fff;
  cursor: pointer;
}

.coll-grid {
  grid-template-columns: repeat(3, 1fr);
}

.coll-empty {
  font-family: 'ArcticFox', sans-serif;
  font-size: 16px;
  color: #999;
  padding: 40px 0;
}

.coll-empty-reset {
  background: none;
  border: none;
  color: #222;
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}

/* ── Product card swatches (collection) ─────────────────────────────────── */
.product-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 14px;
}

.swatch-dot {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.18);
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  transition: box-shadow 0.15s;
}

.swatch-dot.is-active {
  box-shadow: 0 0 0 1.5px #fff, 0 0 0 3px var(--swatch-bg, #222), inset 0 0 0 1px rgba(0,0,0,0.1);
}

.swatch-more {
  font-family: 'ArcticFox', sans-serif;
  font-size: 11px;
  color: #999;
  line-height: 18px;
}

/* ── Product detail page ─────────────────────────────────────────────────── */

.pdp-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px 80px;
  align-items: start;
}

/* ── Gallery ─────────────────────────────────────────────────────────────── */
.pdp-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Main large image */
.pdp-gallery-main {
  margin-bottom: 10px;
}
.pdp-gallery-main .pdp-img-btn {
  display: block;
  width: 100%;
  background: #fff;
  border: none;
  padding: 16px;
  cursor: zoom-in;
  border-radius: 4px;
  overflow: visible;
  position: relative;
}

.pdp-main-photo {
  width: 100%;
  display: block;
  object-fit: contain;
}

/* 2×2 grid */
.pdp-gallery-grid,
.pdp-gallery-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.pdp-grid-item {
  display: block;
  background: #fff;
  border: none;
  padding: 10px;
  cursor: zoom-in;
  border-radius: 4px;
  overflow: hidden;
}

.pdp-grid-item img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.pdp-grid-item img.img-fit-contain { object-fit: contain; }

/* Main image fit helpers */
.img-fit-contain { object-fit: contain; }
.img-fit-cover   { object-fit: cover; }

/* Expand button */
.pdp-all-photos-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 14px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555;
  cursor: pointer;
  margin-top: 2px;
  transition: border-color 0.15s, color 0.15s;
}
.pdp-all-photos-btn:hover { border-color: #222; color: #222; }
.pdp-photo-count { font-family: 'ArcticFox', sans-serif; letter-spacing: 0; }

/* ── Lightbox ────────────────────────────────────────────────────────────── */
.pdp-lightbox {
  position: fixed;
  inset: 0;
  background: #F6F5F4;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-lb-img-wrap {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.pdp-lb-img {
  width: 100%;
  height: auto;
  display: block;
}

.pdp-lb-thumbs {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  z-index: 502;
}

.pdp-lb-thumb {
  width: 54px;
  height: 54px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 2px;
  opacity: 0.45;
  transition: opacity 0.15s, border-color 0.15s;
  display: block;
  flex-shrink: 0;
  background: #fff;
}
.pdp-lb-thumb:hover { opacity: 0.8; }
.pdp-lb-thumb.is-active { opacity: 1; border-color: #222; }

.pdp-lb-close {
  position: fixed;
  top: 16px; right: 20px;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
  z-index: 501;
}
.pdp-lb-close:hover { background: #ddd; }

.pdp-zoom-icon {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  color: #333;
}

/* ── Info column ─────────────────────────────────────────────────────────── */
.pdp-info { min-width: 0; }

.pdp-breadcrumb {
  position: absolute;
  top: -36px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'ArcticFox', sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #999;
  white-space: nowrap;
  overflow: hidden;
}

.pdp-breadcrumb a {
  color: #999;
  text-decoration: none;
  transition: color 0.15s;
}
.pdp-breadcrumb a:hover { color: #B93228; }
.pdp-breadcrumb-sep { color: #ccc; font-size: 14px; line-height: 1; flex-shrink: 0; }
.pdp-breadcrumb-current {
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.pdp-type {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 13.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
  margin-top: 6px;
}

.pdp-title {
  font-family: 'ArcticFox Headline', sans-serif;
  font-weight: normal;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #222;
  line-height: 1.1;
  margin-bottom: 0;
}

.pdp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 0;
}
.pdp-badge {
  display: inline-block;
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  line-height: 1.3;
}
.pdp-badge--material {
  background: #222;
  color: #fff;
}
.pdp-badge--fit {
  background: #f0f0f0;
  color: #333;
}

.pdp-icon-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 16px;
  margin: 16px 0;
}
.pdp-icon-features__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pdp-icon-features__item img {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
.pdp-icon-features__item span {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #222;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .pdp-icon-features { grid-template-columns: repeat(2, 1fr); }
}

.pdp-price {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 26px;
  color: #222;
  margin-top: 12px;
  margin-bottom: 8px;
}

.pdp-compare-price { color: #bbb; margin-right: 8px; }
.pdp-sale-price { color: #B93228; }

/* ── Option groups ───────────────────────────────────────────────────────── */
.pdp-option-group { margin-bottom: 24px; }

.pdp-option-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 12px;
}

.pdp-option-label strong {
  font-family: 'ArcticFox', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: #222;
}

.pdp-size-guide-link {
  font-family: 'ArcticFox', sans-serif;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #999;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
}

/* ── Size guide modal ────────────────────────────────────────────────────── */
.sg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.sg-modal {
  background: #fff;
  border-radius: 6px;
  max-width: 960px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px 48px;
  position: relative;
}

.sg-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  padding: 6px;
  transition: color 0.15s;
}
.sg-close:hover { color: #000; }

.sg-title {
  font-family: 'ArcticFox Headline', sans-serif;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 4px;
}

.sg-subtitle {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 32px;
}

.sg-section-title {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #444;
  margin: 28px 0 12px;
}
.sg-subtitle + .sg-section-title { margin-top: 0; }

.sg-table-wrap {
  overflow-x: auto;
}

.sg-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'ArcticFox', sans-serif;
  font-size: 13px;
  white-space: nowrap;
}

.sg-table th,
.sg-table td {
  padding: 9px 14px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.sg-table th {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  background: #f7f7f7;
  color: #444;
}

.sg-table td:first-child {
  text-align: left;
  font-family: 'ArcticFox', sans-serif;
}
.sg-table th:first-child {
  text-align: left;
}

.sg-notes {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sg-notes li {
  font-family: 'ArcticFox', sans-serif;
  font-size: 13px;
  color: #333;
  line-height: 1.55;
  padding-left: 14px;
  position: relative;
}

.sg-notes li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #aaa;
}

.sg-note-en {
  color: #999;
}

@media (max-width: 600px) {
  .sg-modal { padding: 28px 20px; }
}

/* ── Color swatches (PDP) ────────────────────────────────────────────────── */
.pdp-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 2px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.15s;
  flex-shrink: 0;
}

.color-swatch:hover { border-color: var(--swatch-border, #aaa); }
.color-swatch.is-selected { border-color: var(--swatch-border, #222); }

.color-swatch-inner {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

/* Dual-tone swatch: second half rendered as a diagonal triangle overlay.
 * Lets each side be a flat color OR a gradient. CSS forbids nesting a
 * gradient inside another gradient as a color-stop, so we layer instead.
 * Rainbow uses conic-gradient anchored at the triangle's bottom-right
 * corner so the full spectrum fans across the visible half. */
.color-swatch-inner.is-dual::before,
.swatch-dot.is-dual::before {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background: var(--swatch-bg-2);
  border-radius: inherit;
}
.swatch-dot { position: relative; overflow: hidden; }

/* ── Size buttons ────────────────────────────────────────────────────────── */
.pdp-size-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-btn {
  min-width: 52px;
  padding: 10px 14px;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  background: #fff;
  font-family: 'ArcticFox', sans-serif;
  font-size: 14px;
  color: #222;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-align: center;
}

.size-btn:hover:not(.is-unavailable) { border-color: #222; }
.size-btn.is-selected { border-color: #222; background: #222; color: #fff; }

.size-btn.is-unavailable {
  display: none;
}

/* ── Add to cart button ──────────────────────────────────────────────────── */
.pdp-add-btn {
  width: 100%;
  padding: 18px;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 20px;
  margin-bottom: 28px;
}

.pdp-add-btn:hover:not(:disabled) { background: #111; }
.pdp-add-btn:disabled { background: #ccc; cursor: not-allowed; }
.pdp-add-btn.is-loading { background: #444; cursor: wait; }

.pdp-added-actions {
  display: flex; gap: 10px; width: 100%;
}
.pdp-btn-continue, .pdp-btn-cart {
  flex: 1; padding: 16px; border-radius: 4px;
  font-family: 'ArcticFox Bold', sans-serif; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-align: center; text-decoration: none; cursor: pointer;
  transition: background 0.15s;
}
.pdp-btn-continue {
  background: #fff; color: #222; border: 1.5px solid #222;
}
.pdp-btn-continue:hover { background: #f4f4f4; }
.pdp-btn-cart {
  background: #222; color: #fff; border: 1.5px solid #222;
}
.pdp-btn-cart:hover { background: #111; color: #fff; }

/* Spinner */
.btn-spinner {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.6s linear infinite;
  vertical-align: middle; margin-right: 4px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Cart drawer ─────────────────────────────────────────────────────────── */
.cart-drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4); z-index: 999;
}
.cart-drawer-overlay.is-active { display: block; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 90vw); background: #fff; z-index: 1000;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
}
.cart-drawer.is-open {
  transform: translateX(0);
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}

.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid #e8e8e8;
}
.cart-drawer-title {
  font-family: 'ArcticFox Bold', sans-serif; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase; color: #222;
}
.cart-drawer-close { background: none; border: none; padding: 4px; color: #222; cursor: pointer; }

.cart-drawer-body {
  flex: 1; overflow-y: auto; padding: 16px 24px;
  -webkit-overflow-scrolling: touch;
}
.cart-drawer-empty {
  font-family: 'ArcticFox', sans-serif; font-size: 15px; color: #999;
  text-align: center; padding: 40px 0;
}

.cart-drawer-item {
  display: flex; gap: 12px; padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-drawer-item-img { width: 72px; flex-shrink: 0; }
.cart-drawer-item-img img { width: 100%; height: auto; border-radius: 4px; background: #f4f4f4; }
.cart-drawer-item-info { flex: 1; min-width: 0; }
.cart-drawer-item-name {
  font-family: 'ArcticFox Bold', sans-serif; font-size: 13px;
  color: #222; margin-bottom: 4px; line-height: 1.3;
}
.cart-drawer-item-qty {
  font-family: 'ArcticFox', sans-serif; font-size: 13px; color: #888;
}
.cart-drawer-item-right {
  display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between;
}
.cart-drawer-remove { background: none; border: none; color: #bbb; cursor: pointer; padding: 2px; }
.cart-drawer-remove:hover { color: #666; }
.cart-drawer-item-price {
  font-family: 'ArcticFox Bold', sans-serif; font-size: 14px; color: #222;
}

.cart-drawer-footer {
  padding: 16px 24px 24px; border-top: 1px solid #e8e8e8;
}
.cart-drawer-total {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'ArcticFox Bold', sans-serif; font-size: 16px; color: #222;
  margin-bottom: 16px;
}
.cart-drawer-checkout {
  display: block; width: 100%; padding: 16px; background: #222; color: #fff;
  border: none; border-radius: 4px; text-align: center; text-decoration: none;
  font-family: 'ArcticFox Bold', sans-serif; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 8px;
}
.cart-drawer-checkout:hover { background: #111; color: #fff; }
.cart-drawer-viewcart {
  display: block; text-align: center; font-family: 'ArcticFox', sans-serif;
  font-size: 13px; color: #666; text-decoration: underline;
}
.cart-drawer-viewcart:hover { color: #222; }

/* ── USP mini strip ──────────────────────────────────────────────────────── */
.pdp-usps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 32px;
}

.pdp-usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'ArcticFox', sans-serif;
  font-size: 13.5px;
  color: #666;
}

.pdp-usp-item svg { flex-shrink: 0; color: #B93228; }

/* ── Tabs ────────────────────────────────────────────────────────────────── */
.pdp-tabs { margin-top: 4px; }

.pdp-tab-nav {
  display: flex;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 24px;
  gap: 28px;
}

.pdp-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 14px 0;
  margin-bottom: -1px;
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.pdp-tab-btn:hover { color: #222; }
.pdp-tab-btn.is-active { color: #222; border-bottom-color: #222; }

.pdp-tab-panel { display: none; }
.pdp-tab-panel.is-active { display: block; }

.pdp-short-desc {
  font-family: 'ArcticFox', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #666;
  margin-top: 16px;
  margin-bottom: 24px;
}

.pdp-tab-content {
  font-family: 'ArcticFox', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.pdp-tab-content ul { padding-left: 20px; list-style: disc; }
.pdp-tab-content li { margin-bottom: 6px; }

/* body_html rendered content — tables, headings from enrichment script */
.pdp-body-html p {
  font-family: 'ArcticFox', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.pdp-body-html h3 {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #222;
  margin: 28px 0 14px;
}

.pdp-body-html ul {
  padding-left: 18px;
  list-style: disc;
  margin-bottom: 20px;
}

.pdp-body-html li {
  font-family: 'ArcticFox', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 6px;
}

.pdp-body-html table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-family: 'ArcticFox', sans-serif;
  font-size: 16px;
}

.pdp-body-html td {
  padding: 9px 0;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: top;
  color: #555;
  line-height: 1.5;
}

.pdp-body-html td:first-child {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  width: 160px;
  padding-right: 16px;
  padding-top: 11px;
}

.pdp-tab-empty {
  font-family: 'ArcticFox', sans-serif;
  font-size: 15px;
  color: #bbb;
}

.pdp-meta-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-family: 'ArcticFox', sans-serif;
  font-size: 15px;
}

.pdp-meta-row:first-child { padding-top: 0; }

.pdp-meta-key {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #999;
  padding-top: 2px;
}

.pdp-meta-val { color: #444; line-height: 1.6; }

/* ── Collection responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .coll-page { grid-template-columns: 200px 1fr; gap: 32px; }
  .coll-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .coll-mobile-bar { display: flex; }
  .coll-page { grid-template-columns: 1fr; padding: 16px 20px 60px; gap: 0; }

  .coll-sidebar {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: min(320px, 88vw);
    background: #fff;
    z-index: 300;
    display: flex;
    flex-direction: column;
    overflow-y: hidden;
    transform: translateX(-110%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    padding: 0;
    max-height: none;
    align-self: stretch;
  }

  .coll-sidebar.is-open {
    transform: translateX(0);
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
  }

  .coll-sidebar-head { display: flex; flex-shrink: 0; }
  .coll-sidebar-body { padding: 16px 24px 32px; flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }

  .coll-toolbar { display: none; }
  .coll-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

  /* Logo left on mobile */
  .nav-container { grid-template-columns: auto 1fr auto; padding: 0 16px; height: 60px; }
  .nav-center { order: -1; }
  .nav-center img { width: 100px; }
  .nav-search-input { display: none !important; }
  .nav-search { border: none !important; }
}

@media (max-width: 480px) {
  .coll-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
}

/* ── Product page responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pdp-page { gap: 40px; padding: 32px 24px 64px; }
  .pdp-gallery { grid-template-columns: 60px 1fr; gap: 10px; }
}

@media (max-width: 768px) {
  .pdp-page { grid-template-columns: 1fr; padding: 24px 20px 60px; gap: 32px; }
  .pdp-gallery { display: flex; flex-direction: column; gap: 6px; }
  .pdp-tab-btn { padding: 12px 0; font-size: 9.5px; }
  .pdp-tab-nav { gap: 20px; }
  .pdp-lightbox { padding: 48px 16px; }
  .pdp-lb-thumb { width: 40px; height: 40px; }
  .pdp-breadcrumb { position: static; margin-bottom: 12px; flex-wrap: wrap; }
}

/* ── Badge modifiers ─────────────────────────────────────────────────────── */
.product-badge--sale { background: #B93228; color: #fff; }
.product-badge--new  { background: #e0e0e0; color: #111; }
.pdp-gallery .product-badge { font-size: 11px; padding: 5px 10px; z-index: 2; }

/* ── Blog cards ──────────────────────────────────────────────────────────── */
.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card:hover .blog-card-read { color: #B93228; }
.blog-card-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-tag {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #B93228;
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: 'ArcticFox Headline', sans-serif;
  font-weight: normal;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #222;
  line-height: 1.2;
  margin-bottom: 12px;
}
.blog-card-excerpt {
  font-family: 'ArcticFox', sans-serif;
  font-size: 14.5px;
  color: #777;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.blog-card-read {
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #222;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  align-self: flex-start;
  transition: color 0.15s;
}
/* ── Featured blog section ───────────────────────────────────────────────── */
.featured-blog-section {
  background: #F6F5F4;
  padding: 80px 32px;
}
.featured-blog-inner { max-width: 1440px; margin: 0 auto; }
.featured-blog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.featured-blog-title {
  font-family: 'ArcticFox Headline', sans-serif;
  font-weight: normal;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #222;
  line-height: 1;
}
.featured-blog-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'ArcticFox Bold', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #222;
  border-bottom: 1px solid #222;
  padding-bottom: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-bottom: 4px;
  text-decoration: none;
}
.featured-blog-all:hover { color: #B93228; border-color: #B93228; }
.featured-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .featured-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .featured-blog-section { padding: 56px 20px; }
  .featured-blog-grid { grid-template-columns: 1fr; }
  .featured-blog-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ── Article page ────────────────────────────────────────────────────────── */
.article-hero { width: 100%; max-height: 480px; overflow: hidden; }
.article-hero img { width: 100%; height: 480px; object-fit: cover; object-position: center center; display: block; }
@media (max-width: 600px) { .article-hero img { height: 260px; } }

.article-body-wrap { max-width: 760px; margin: 0 auto; padding: 64px 32px 96px; }

.article-tag { font-family: 'ArcticFox Bold', sans-serif; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: #B93228; margin-bottom: 16px; }

.article-title { font-family: 'ArcticFox Headline', sans-serif; font-weight: normal; font-size: clamp(22px, 2.8vw, 34px); letter-spacing: 0.06em; text-transform: uppercase; color: #222; line-height: 1.15; margin-bottom: 16px; }

.article-meta { font-family: 'ArcticFox', sans-serif; font-size: 13px; color: #999; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid #e8e8e8; }

.article-content { font-family: 'ArcticFox', sans-serif; font-size: 18px; line-height: 1.75; color: #333; }
.article-content h2, .article-content h3 { font-family: 'ArcticFox Headline', sans-serif; font-weight: normal; text-transform: uppercase; letter-spacing: 0.06em; color: #222; margin: 40px 0 16px; }
.article-content h2 { font-size: clamp(22px, 2.5vw, 30px); }
.article-content h3 { font-size: clamp(18px, 2vw, 24px); }
.article-content p { margin-bottom: 20px; }
.article-content img { max-width: 100%; border-radius: 2px; }
.article-content a { color: #B93228; }

.article-footer { margin-top: 64px; padding-top: 32px; border-top: 1px solid #e8e8e8; }

.article-back { display: inline-flex; align-items: center; gap: 8px; font-family: 'ArcticFox Bold', sans-serif; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: #222; text-decoration: none; border-bottom: 1px solid #222; padding-bottom: 2px; }
.article-back:hover { color: #B93228; border-color: #B93228; }

/* ── Blog index page ─────────────────────────────────────────────────────── */
.blog-page { padding: 64px 32px 96px; background: #F6F5F4; min-height: 60vh; }
.blog-page-inner { max-width: 1440px; margin: 0 auto; }
.blog-page-header { margin-bottom: 48px; }
.blog-page-title { font-family: 'ArcticFox Headline', sans-serif; font-weight: normal; font-size: clamp(28px, 3vw, 44px); letter-spacing: 0.07em; text-transform: uppercase; color: #222; }
.blog-pagination { margin-top: 56px; display: flex; justify-content: center; gap: 8px; font-family: 'ArcticFox', sans-serif; font-size: 14px; }

@media (max-width: 600px) {
  .article-hero { max-height: 260px; }
  .article-body-wrap { padding: 40px 20px 64px; }
  .blog-page { padding: 40px 20px 64px; }
}

/* ── Header search ───────────────────────────────────────────────────────── */
.nav-search { display: flex; align-items: center; }
.nav-search-form { display: flex; align-items: center; border-bottom: 1.5px solid transparent; transition: border-color 0.2s; }
.nav-search.is-open .nav-search-form { border-color: #222; }
.nav-search-input { width: 0; padding: 0; border: none; outline: none; background: transparent; font-family: 'ArcticFox', sans-serif; font-size: 13px; color: #222; transition: width 0.3s ease, padding 0.3s ease; overflow: hidden; }
.nav-search-input::placeholder { color: #aaa; }
.nav-search.is-open .nav-search-input { width: 180px; padding: 4px 8px 4px 0; }
.nav-search-submit { background: none; border: none; padding: 0; cursor: pointer; display: flex; align-items: center; color: #222; width: 24px; height: 24px; transition: color 0.15s; }
.nav-search-submit:hover { color: #B93228; }
.nav-search-submit svg { width: 20px; height: 20px; }

/* ── Mobile search bar ───────────────────────────────────────────────────── */
.mobile-search-bar { border-top: 1px solid #e8e8e8; background: #fff; padding: 10px 16px; }
.mobile-search-form { display: flex; align-items: center; gap: 10px; border: 1.5px solid #222; border-radius: 4px; padding: 0 12px; height: 44px; }
.mobile-search-input { flex: 1; border: none; outline: none; font-family: 'ArcticFox', sans-serif; font-size: 16px; color: #222; background: transparent; }
.mobile-search-input::placeholder { color: #aaa; }
.mobile-search-close { background: none; border: none; padding: 0; cursor: pointer; color: #888; display: flex; align-items: center; }

/* ── Price range slider ──────────────────────────────────────────────────── */
.price-range-wrap { padding: 8px 2px 4px; }
.price-range-track { position: relative; height: 4px; background: #ddd; border-radius: 2px; margin: 18px 0 10px; }
.price-range-fill { position: absolute; top: 0; height: 4px; background: #222; border-radius: 2px; pointer-events: none; }
.price-range-input { position: absolute; top: 50%; width: 100%; height: 4px; -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none; transform: translateY(-50%); margin: 0; }
.price-range-input::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 16px; height: 16px; border-radius: 50%; background: #222; border: 2px solid #fff; box-shadow: 0 0 0 1px #222; pointer-events: all; cursor: pointer; }
.price-range-input::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: #222; border: 2px solid #fff; box-shadow: 0 0 0 1px #222; pointer-events: all; cursor: pointer; }
.price-range-labels { display: flex; justify-content: space-between; font-size: 12px; color: #555; }
.price-apply-btn { display: block; width: 100%; margin-top: 12px; padding: 8px; background: #222; color: #fff; border: none; border-radius: 4px; font-size: 12px; cursor: pointer; font-family: inherit; }
.price-apply-btn:hover { background: #444; }

/* ── Size filter ─────────────────────────────────────────────────────────── */
.filter-group-body.filter-size-grid { display: flex; flex-direction: row; flex-wrap: wrap; gap: 6px; padding: 4px 0; }
.filter-option--size { display: inline-flex; margin: 0; padding: 0; width: auto; }
.filter-option--size .size-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 32px; padding: 0 8px; border: 1px solid #ccc; border-radius: 4px; font-size: 12px; cursor: pointer; white-space: nowrap; transition: border-color 0.15s, background 0.15s; }
.filter-option--size input:checked + .size-btn { border-color: #222; background: #222; color: #fff; }

/* ── Category nav buttons (reset browser defaults) ───────────────────────── */
.cat-nav-top { display: block; width: 100%; background: none; border: none; border-bottom: 1px solid #f0f0f0; text-align: left; cursor: pointer; font-family: 'ArcticFox', sans-serif; font-size: 14.5px; color: #444; padding: 5px 0 10px; margin-bottom: 6px; }
.cat-nav-top:hover { color: #111; }
.cat-group-label { flex: 1; background: none; border: none; text-align: left; cursor: pointer; font-family: 'ArcticFox Bold', sans-serif; font-size: 14.5px; color: #222; padding: 5px 0; display: block; }
.cat-group-label:hover { color: #000; }
.cat-group-label.is-active { color: #B93228; }
.cat-sub-link { background: none; border: none; text-align: left; cursor: pointer; width: 100%; font-family: 'ArcticFox', sans-serif; font-size: 14px; color: #666; padding: 4px 0; display: block; }
.cat-sub-link:hover { color: #222; }
.cat-sub-link.is-active { color: #B93228; font-family: 'ArcticFox Bold', sans-serif; }

/* ── Search page ─────────────────────────────────────────────────────────── */
.search-page { max-width: 1200px; margin: 0 auto; padding: 48px 24px 80px; }
.search-header { margin-bottom: 48px; }
.search-form { max-width: 600px; margin: 0 auto; }
.search-input-wrap { display: flex; align-items: center; border: 1.5px solid #222; border-radius: 4px; overflow: hidden; background: #fff; }
.search-input-icon { flex-shrink: 0; margin: 0 12px; color: #888; }
.search-input { flex: 1; border: none; outline: none; padding: 14px 8px 14px 0; font-family: 'ArcticFox', sans-serif; font-size: 15px; color: #222; background: transparent; }
.search-input::placeholder { color: #aaa; }
.search-submit { background: #222; color: #fff; border: none; padding: 0 24px; height: 50px; font-family: 'ArcticFox Bold', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: background 0.15s; }
.search-submit:hover { background: #B93228; }
.search-count { font-family: 'ArcticFox', sans-serif; font-size: 13px; color: #888; margin-bottom: 24px; text-align: center; }
.search-no-results { font-family: 'ArcticFox', sans-serif; font-size: 15px; color: #555; text-align: center; margin-top: 40px; }

/* ── Page content (privacy, terms etc.) ─────────────────────────────────── */
.page-content-wrap { max-width: 720px; margin: 0 auto; padding: 56px 32px 80px; }
.page-content-title { font-family: 'ArcticFox Headline', sans-serif; font-weight: normal; font-size: clamp(28px, 5vw, 44px); letter-spacing: 0.1em; text-transform: uppercase; color: #222; margin-bottom: 8px; }
.page-content-date { font-family: 'ArcticFox', sans-serif; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(0,0,0,0.4); margin-bottom: 48px; }
.page-content-body { font-family: 'ACaslonPro', Georgia, serif; font-size: 17px; line-height: 1.75; color: rgba(0,0,0,0.72); }
.page-content-body p { margin-bottom: 14px; }
.page-content-body h2 { font-family: 'ArcticFox Bold', sans-serif; font-weight: normal; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: #222; margin-top: 40px; margin-bottom: 14px; }
.page-content-body h3 { font-family: 'ArcticFox Bold', sans-serif; font-weight: normal; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #222; margin-top: 16px; margin-bottom: 4px; }
.page-content-body a { color: #222; text-decoration: underline; }
.page-content-body a:hover { color: #B93228; }
.page-content-body hr { border: none; border-top: 1px solid #e0e0e0; margin: 48px 0 0; }
.page-content-body ul, .page-content-body ol { padding-left: 20px; margin-bottom: 14px; }
.page-content-body li { margin-bottom: 6px; }
.page-info-block { background: #fff; border: 1px solid #e4e4e4; border-radius: 4px; padding: 20px 24px; margin: 16px 0 4px; font-size: 16px; line-height: 1.6; }


/*
 * Forever Nature — WooCommerce custom CSS
 * Design tokens and overrides for Elementor/Hello theme
 *
 * Add this via Appearance → Customize → Additional CSS
 * or enqueue via functions.php
 */

/* ─── Design tokens ─────────────────────────────────────────────── */
:root {
  --color-red:    #B93228;
  --color-black:  #222222;
  --color-paper:  #F6F5F4;
  --color-white:  #ffffff;
  --color-border: #e8e8e8;

  --font-headline: 'ArcticFox Headline', Georgia, serif;
  --font-body:     'ArcticFox', system-ui, sans-serif;

  --letter-spacing-nav: 0.12em;
  --letter-spacing-label: 0.18em;
}

/* ─── Base ──────────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  color: var(--color-black);
  background: var(--color-white);
  font-size: 14px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.woocommerce-loop-product__title,
.product_title {
  font-family: var(--font-headline);
}

a {
  color: var(--color-black);
  text-decoration: none;
}
a:hover {
  color: var(--color-red);
}

/* ─── WooCommerce buttons ───────────────────────────────────────── */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .cart .button,
.woocommerce .cart_totals .checkout-button {
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  border-radius: 0;
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 14px 24px;
  transition: background 0.15s;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .cart .button:hover,
.woocommerce .cart_totals .checkout-button:hover {
  background: var(--color-red);
  color: var(--color-white);
}

/* ─── Cart page (Fjällräven design) ────────────────────────────── */
.fn-cart-page {
  display: grid; grid-template-columns: 1fr 380px; gap: 32px;
  max-width: 1200px; margin: 0 auto; padding: 0 32px 80px;
  align-items: start;
}
.fn-cart-heading {
  font-family: 'ArcticFox Headline', sans-serif; font-size: 28px;
  font-weight: normal; color: #222; margin-bottom: 8px;
  max-width: 1200px; margin-left: auto; margin-right: auto; padding: 40px 32px 0;
}
.fn-cart-notice {
  max-width: 1200px; margin: 0 auto 24px; padding: 0 32px;
}
.fn-cart-notice {
  font-family: 'ArcticFox', sans-serif; font-size: 14px; color: #888;
  margin-bottom: 24px;
}
.fn-cart-card {
  background: #fff; border: 1px solid #e8e8e8; border-radius: 6px;
  overflow: hidden;
}
.fn-cart-card-head {
  font-family: 'ArcticFox Bold', sans-serif; font-size: 12px;
  letter-spacing: 0.14em; color: #222; padding: 18px 24px;
  border-bottom: 1px solid #e8e8e8;
}
.fn-cart-item {
  display: flex; gap: 20px; padding: 24px;
  border-bottom: 1px solid #f0f0f0;
}
.fn-cart-item:last-child { border-bottom: none; }
.fn-cart-item-img { width: 100px; flex-shrink: 0; }
.fn-cart-item-img img { width: 100%; height: auto; object-fit: contain; border-radius: 4px; }
.fn-cart-item-details { flex: 1; min-width: 0; }
.fn-cart-item-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.fn-cart-item-info { flex: 1; }
.fn-cart-item-name { margin-bottom: 4px; }
.fn-cart-item-name a {
  font-family: 'ArcticFox Bold', sans-serif; font-size: 15px;
  color: #222; text-decoration: none;
}
.fn-cart-item-name a:hover { color: #B93228; }
.fn-cart-item-color {
  font-family: 'ArcticFox', sans-serif; font-size: 13px; color: #666;
  display: flex; align-items: center; gap: 6px; margin-bottom: 2px;
}
.fn-cart-item-swatch {
  display: inline-block; width: 14px; height: 14px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15);
}
.fn-cart-item-size {
  font-family: 'ArcticFox', sans-serif; font-size: 13px; color: #666;
}
.fn-cart-item-price {
  font-family: 'ArcticFox Bold', sans-serif; font-size: 16px; color: #222;
  margin: 12px 0;
}
.fn-cart-item-bottom { display: flex; align-items: center; justify-content: space-between; }
.fn-cart-item-qty {
  display: inline-flex; align-items: center; border: 1px solid #ddd; border-radius: 4px;
  overflow: hidden;
}
.fn-qty-btn {
  width: 36px; height: 36px; background: #f4f4f4; border: none;
  font-size: 18px; color: #222; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
}
.fn-qty-btn:hover { background: #e8e8e8; }
.fn-qty-input {
  width: 40px; height: 36px; border: none; text-align: center;
  font-family: 'ArcticFox', sans-serif; font-size: 14px;
  -moz-appearance: textfield;
}
.fn-qty-input::-webkit-inner-spin-button,
.fn-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.fn-remove-btn { color: #bbb; }
.fn-remove-btn:hover { color: #B93228; }
.fn-cart-update { display: none; } /* Hidden, triggered by JS */

/* Order Summary */
.fn-cart-summary-card {
  background: #fff; border: 1px solid #e8e8e8; border-radius: 6px;
  padding: 24px; position: sticky; top: 24px;
}
.fn-cart-summary-title {
  font-family: 'ArcticFox Bold', sans-serif; font-size: 18px;
  color: #222; margin-bottom: 20px; font-weight: normal;
}
.fn-cart-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'ArcticFox', sans-serif; font-size: 14px; color: #444;
  padding: 10px 0; border-bottom: 1px solid #f0f0f0;
}
.fn-cart-summary-total {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'ArcticFox Bold', sans-serif; font-size: 18px; color: #222;
  padding: 16px 0 8px;
}
.fn-cart-summary-note {
  font-family: 'ArcticFox', sans-serif; font-size: 13px; color: #2E7D32;
  margin: -2px 0 8px; padding: 0; text-align: right;
}
.fn-cart-summary-vat {
  font-family: 'ArcticFox', sans-serif; font-size: 12px; color: #999;
  text-align: right; margin-bottom: 16px;
}
/* WooCommerce notices */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  font-family: 'ArcticFox', sans-serif; font-size: 14px; color: #222;
  background: #f4f4f4; border: none; border-left: 3px solid #222;
  padding: 14px 20px; margin-bottom: 24px; border-radius: 0;
  line-height: 1.5;
}
.woocommerce-message { border-left-color: #2E7D32; }
.woocommerce-error { border-left-color: #B93228; }
.woocommerce-message a, .woocommerce-info a, .woocommerce-error a {
  color: #222; font-family: 'ArcticFox Bold', sans-serif; text-decoration: underline;
}
.woocommerce-message a:hover, .woocommerce-info a:hover { color: #B93228; }
.woocommerce-message::before, .woocommerce-info::before, .woocommerce-error::before { display: none; }

.fn-checkout-btn {
  display: block; width: 100%; padding: 16px; background: #222; color: #fff;
  border-radius: 4px; text-align: center; text-decoration: none;
  font-family: 'ArcticFox Bold', sans-serif; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.fn-checkout-btn:hover { background: #111; color: #fff; }
.fn-cart-update {
  display: none;
}
.fn-cart-summary-card .wc-proceed-to-checkout a {
  display: block; width: 100%; padding: 16px; background: #222; color: #fff;
  border-radius: 4px; text-align: center; text-decoration: none;
  font-family: 'ArcticFox Bold', sans-serif; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.fn-cart-summary-card .wc-proceed-to-checkout a:hover { background: #111; color: #fff; }

@media (max-width: 768px) {
  .fn-cart-page { grid-template-columns: 1fr; padding: 20px 16px 60px; }
  .fn-cart-summary-card { position: static; }
}


/* ─── Checkout page ────────────────────────────────────────────── */
.fn-checkout-page { max-width: 1200px; margin: 0 auto; padding: 40px 32px 80px; }
.fn-checkout-heading { font-family: 'ArcticFox Headline', sans-serif; font-size: 28px; font-weight: normal; color: #222; margin-bottom: 32px; }
.fn-checkout-empty { font-family: 'ArcticFox', sans-serif; font-size: 16px; color: #999; margin: 24px 0; }
.fn-checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.fn-checkout-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 6px; margin-bottom: 16px; overflow: visible; }
.fn-card-head { padding: 18px 24px; border-bottom: 1px solid #e8e8e8; }
.fn-card-head h2 { font-family: 'ArcticFox Bold', sans-serif; font-size: 17px; font-weight: normal; color: #222; margin: 0; }
.fn-card-body { padding: 24px; }
.fn-checkout-left .col-1, .fn-checkout-left .col-2 { width: 100% !important; float: none !important; padding: 0 !important; }
.fn-checkout-left .woocommerce-billing-fields h3, .fn-checkout-left .woocommerce-shipping-fields h3 { display: none; }
.fn-checkout-page .form-row { margin-bottom: 14px !important; padding: 0 !important; width: 100% !important; float: none !important; }
.fn-checkout-page .form-row-first, .fn-checkout-page .form-row-last { width: 48% !important; display: inline-block !important; }
.fn-checkout-page .form-row-first { margin-right: 4% !important; }
.fn-checkout-page .form-row label { font-family: 'ArcticFox', sans-serif; font-size: 13px; color: #666; margin-bottom: 4px; display: block; }
.fn-checkout-page .form-row label .required { color: #B93228; }
.fn-checkout-page .form-row input.input-text, .fn-checkout-page .form-row textarea, .fn-checkout-page .form-row select { width: 100% !important; padding: 14px 16px !important; border: 1px solid #ddd !important; border-radius: 4px !important; font-family: 'ArcticFox', sans-serif !important; font-size: 14px !important; color: #222 !important; box-sizing: border-box !important; }
.fn-checkout-page .form-row input:focus, .fn-checkout-page .form-row textarea:focus { border-color: #222 !important; outline: none !important; box-shadow: none !important; }
.fn-checkout-page .form-row .woocommerce-input-wrapper { display: block; width: 100%; }
.fn-checkout-page .select2-container { width: 100% !important; }
.fn-checkout-page .select2-container .select2-selection--single { height: 48px !important; border: 1px solid #ddd !important; border-radius: 4px !important; padding: 0 16px !important; outline: none !important; box-shadow: none !important; }
.fn-checkout-page .select2-container--focus .select2-selection--single { border-color: #222 !important; }
.fn-checkout-page .select2-container .select2-selection__rendered { line-height: 48px !important; padding: 0 !important; font-family: 'ArcticFox', sans-serif; font-size: 14px; color: #222; }
.fn-checkout-page .select2-container--default .select2-selection--single .select2-selection__arrow { height: 48px !important; right: 12px !important; }
.fn-checkout-page .form-row select { padding-right: 40px !important; -webkit-appearance: none !important; appearance: none !important; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important; background-repeat: no-repeat !important; background-position: right 16px center !important; background-size: 16px !important; }
/* Hide product table in transport card */
.fn-transport-body .shop_table thead, .fn-transport-body .shop_table .cart_item, .fn-transport-body .shop_table .cart-subtotal, .fn-transport-body .shop_table .cart-discount, .fn-transport-body .shop_table .fee, .fn-transport-body .shop_table .tax-rate, .fn-transport-body .shop_table .tax-total, .fn-transport-body .shop_table .order-total { display: none !important; }
.fn-transport-body .shop_table, .fn-transport-body .shop_table tfoot, .fn-transport-body .shop_table tr, .fn-transport-body .shop_table td, .fn-transport-body .shop_table th { display: block !important; width: 100% !important; border: none !important; padding: 0 !important; background: none !important; }
.fn-transport-body .woocommerce-shipping-totals th { display: none !important; }
.fn-transport-body tr.montonio-pickup-point { display: block !important; }
.fn-transport-body tr.montonio-pickup-point td { display: block !important; width: 100% !important; padding: 16px 0 0 !important; }
/* Shipping methods rows */
.fn-checkout-page .woocommerce-shipping-methods { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.fn-checkout-page .woocommerce-shipping-methods li { display: flex !important; align-items: center !important; padding: 0 !important; margin-bottom: 6px !important; border: 1px solid #e8e8e8 !important; border-radius: 4px !important; cursor: pointer !important; }
.fn-checkout-page .woocommerce-shipping-methods li:has(input:checked) { border-color: #222 !important; }
.fn-checkout-page .woocommerce-shipping-methods input[type="radio"] { margin: 0 0 0 16px !important; flex-shrink: 0 !important; }
.fn-checkout-page .woocommerce-shipping-methods label { display: block !important; cursor: pointer !important; padding: 14px 16px 14px 12px !important; font-family: 'ArcticFox', sans-serif !important; font-size: 14px !important; color: #222 !important; margin: 0 !important; flex: 1 !important; }
/* Montonio parcel point */
.fn-checkout-page .montonio-pickup-point__label { font-family: 'ArcticFox Bold', sans-serif !important; font-size: 14px !important; color: #222 !important; margin: 0 0 8px !important; display: block !important; }
.fn-checkout-page .montonio-pickup-point__label abbr { text-decoration: none !important; border-bottom: none !important; color: #B93228; }
.fn-checkout-page .montonio-pickup-point__search { width: 100% !important; border: 1px solid #ddd !important; border-radius: 4px !important; }
.fn-checkout-page .montonio-pickup-point__search-input { font-family: 'ArcticFox', sans-serif !important; font-size: 14px !important; padding: 14px 16px 14px 65px !important; width: 100% !important; border: none !important; box-sizing: border-box !important; }
/* Payment */
.fn-checkout-page .wc_payment_methods { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.fn-checkout-page .wc_payment_method { padding: 0 !important; margin-bottom: 6px !important; border: 1px solid #e8e8e8 !important; border-radius: 4px !important; background: #fff !important; }
.fn-checkout-page .wc_payment_method > input[type="radio"] { display: none !important; }
.fn-checkout-page .wc_payment_method > label { font-family: 'ArcticFox', sans-serif !important; font-size: 14px !important; color: #222 !important; cursor: pointer !important; display: flex !important; align-items: center !important; flex-wrap: wrap !important; gap: 8px 10px !important; padding: 14px 16px !important; margin: 0 !important; }
.fn-checkout-page .wc_payment_method > label img { height: 24px !important; width: auto !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; vertical-align: middle !important; border: none !important; box-shadow: none !important; display: inline-block !important; }
.fn-checkout-page .wc_payment_method > label a,
.fn-checkout-page .wc_payment_method > label img.payment-icons { flex-shrink: 0; }

/* Montonio bank picker — larger logos, tighter tiles */
.fn-checkout-page .montonio-bank-payments-form .montonio-bank-items { gap: 8px !important; }
.fn-checkout-page .montonio-bank-payments-form .montonio-bank-items .montonio-bank-item {
  width: 92px !important;
  height: 72px !important;
  padding: 10px !important;
  border-radius: 6px !important;
}
.fn-checkout-page #montonio-payments-description.montonio-bank-items .montonio-bank-item-img,
.fn-checkout-page #payment #montonio-payments-description.montonio-bank-items .montonio-bank-item-img {
  max-height: 44px !important;
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}
.fn-checkout-page .wc_payment_method > label::before { content: '' !important; display: block !important; width: 18px !important; height: 18px !important; min-width: 18px !important; border-radius: 50% !important; border: 2px solid #ccc !important; background: #fff !important; flex-shrink: 0 !important; box-sizing: border-box !important; }
.fn-checkout-page .wc_payment_method > input[type="radio"]:checked + label::before { border-color: #222 !important; background: radial-gradient(circle, #222 4px, transparent 4px) #fff !important; }
.fn-checkout-page .wc_payment_method:has(input:checked) { border-color: #222 !important; }
.fn-checkout-page .payment_box { font-family: 'ArcticFox', sans-serif !important; font-size: 13px !important; color: #666 !important; padding: 12px 16px 16px 48px !important; background: #fff !important; border-top: 1px solid #f0f0f0 !important; margin: 0 !important; }
.fn-checkout-page .payment_box::before { display: none !important; }
.fn-checkout-page #payment, .fn-checkout-page .woocommerce-checkout-payment, .fn-checkout-page #payment .place-order { background: transparent !important; }
.fn-checkout-page #place_order { width: 100%; padding: 18px; background: #222; color: #fff; border: none; border-radius: 4px; font-family: 'ArcticFox Bold', sans-serif; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; margin-top: 16px; }
.fn-checkout-page #place_order:hover { background: #111; }
.fn-checkout-page .woocommerce-terms-and-conditions-wrapper { font-family: 'ArcticFox', sans-serif; font-size: 12px; color: #888; margin-top: 12px; }
.fn-checkout-page .woocommerce-NoticeGroup { margin-bottom: 16px; }
/* Hide WC default coupon toggle and form */
.fn-checkout-page .woocommerce-form-coupon-toggle { display: none !important; }
.fn-checkout-page .checkout_coupon { display: none !important; }
/* Our custom coupon section */
.fn-coupon-body { display: flex; flex-direction: column; gap: 8px; }
.fn-code-row { display: flex; gap: 0; width: 100%; }
.fn-code-row .input-text {
  flex: 1; padding: 14px 16px !important; border: 1px solid #ddd !important;
  border-radius: 4px 0 0 4px !important; font-family: 'ArcticFox', sans-serif !important; font-size: 14px !important;
  box-sizing: border-box; border-right: none !important;
}
.fn-code-row .fn-coupon-btn,
.fn-coupon-body .fn-coupon-btn {
  padding: 14px 24px; background: #222; color: #fff;
  border: none; border-radius: 0 4px 4px 0;
  font-family: 'ArcticFox Bold', sans-serif; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
}
.fn-coupon-body .fn-coupon-btn:hover { background: #111; }
#fn-coupon-body:not([hidden]) { border-top: 1px solid #e8e8e8; }
/* WC notices */
.woocommerce-message, .woocommerce-info, .woocommerce-error { font-family: 'ArcticFox', sans-serif; font-size: 14px; color: #222; background: #f4f4f4; border: none; border-left: 3px solid #222; padding: 14px 20px; margin-bottom: 24px; border-radius: 0; line-height: 1.5; }
.woocommerce-message { border-left-color: #2E7D32; }
.woocommerce-error { border-left-color: #B93228; }
.woocommerce-message::before, .woocommerce-info::before, .woocommerce-error::before { display: none; }
/* Right sidebar */
.fn-checkout-right { position: sticky; top: 90px; align-self: start; }
.fn-summary-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f0f0f0; align-items: center; }
.fn-summary-item:last-child { border-bottom: none; }
.fn-summary-item + .fn-summary-totals { margin-top: 0; }
.fn-summary-item-img { width: 56px; flex-shrink: 0; }
.fn-summary-item-img img { width: 100%; height: auto; border-radius: 4px; }
.fn-summary-item-info { flex: 1; }
.fn-summary-item-name { font-family: 'ArcticFox Bold', sans-serif; font-size: 13px; color: #222; margin-bottom: 2px; }
.fn-summary-item-qty { font-family: 'ArcticFox', sans-serif; font-size: 12px; color: #888; }
.fn-summary-item-price { font-family: 'ArcticFox Bold', sans-serif; font-size: 14px; color: #222; white-space: nowrap; }
.fn-summary-totals { margin-top: 16px; border-top: 1px solid #e8e8e8; padding-top: 12px; }
.fn-summary-row { display: flex; justify-content: space-between; font-family: 'ArcticFox', sans-serif; font-size: 14px; color: #444; padding: 8px 0; }
.fn-summary-total { display: flex; justify-content: space-between; font-family: 'ArcticFox Bold', sans-serif; font-size: 18px; color: #222; padding: 12px 0 4px; border-top: 1px solid #e8e8e8; margin-top: 8px; }
.fn-summary-vat { font-family: 'ArcticFox', sans-serif; font-size: 12px; color: #999; text-align: right; }
/* Billing toggle */
.fn-billing-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; cursor: pointer; }
#fn-billing-body:not([hidden]),
#fn-gc-recipient-body:not([hidden]) { border-top: 1px solid #e8e8e8; }
.fn-toggle-plus { font-size: 22px; color: #222; font-family: 'ArcticFox', sans-serif; }
.fn-billing-note { font-family: 'ArcticFox', sans-serif; font-size: 13px; color: #888; margin-top: 12px; }

/* Mobile sticky total bar — desktop: hidden */
.fn-mobile-total-bar { display: none; }
.fn-mobile-total-bar[hidden] { display: none !important; }

@media (max-width: 768px) {
  .fn-mobile-total-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
    background: #fff;
    border: none;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    z-index: 150;
    transform: translateY(100%);
    transition: transform 0.22s ease;
    pointer-events: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
  }
  .fn-mobile-total-bar.is-visible {
    transform: translateY(0);
    pointer-events: auto;
  }
  .fn-mobile-total-bar:active { background: #f8f8f8; }
  .fn-mobile-total-inner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .fn-mobile-total-label {
    font-family: 'ArcticFox Bold', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #888;
  }
  .fn-mobile-total-chevron { color: #888; flex-shrink: 0; }
  .fn-mobile-total-value {
    font-family: 'ArcticFox Bold', sans-serif;
    font-size: 20px;
    color: #222;
  }
  /* Leave room above place-order so bar doesn't overlap it */
  .fn-checkout-page { padding-bottom: 88px !important; }
}

/* ── Mobile summary modal ───────────────────────────────────────────────── */
.fn-summary-modal-backdrop,
.fn-summary-modal { display: none; }
.fn-summary-modal-backdrop[hidden],
.fn-summary-modal[hidden] { display: none !important; }

@media (max-width: 768px) {
  .fn-summary-modal-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 400;
    opacity: 0;
    transition: opacity 0.26s ease;
  }
  .fn-summary-modal-backdrop.is-open { opacity: 1; }

  .fn-summary-modal {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    max-height: 85vh;
    background: #fff;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    z-index: 401;
    transform: translateY(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
  }
  .fn-summary-modal.is-open { transform: translateY(0); }

  .fn-summary-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 14px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
  }
  .fn-summary-modal-head h2 {
    font-family: 'ArcticFox Headline', sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: #222;
    margin: 0;
  }
  .fn-summary-modal-close {
    background: none;
    border: none;
    padding: 8px;
    margin: -8px;
    color: #222;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    -webkit-tap-highlight-color: transparent;
  }
  .fn-summary-modal-close:active { background: #f4f4f4; }

  .fn-summary-modal-body {
    padding: 16px 20px 24px calc(20px + env(safe-area-inset-left));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1;
  }

  /* Grab-handle affordance */
  .fn-summary-modal::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
  }

  body.fn-summary-modal-open { overflow: hidden; }
}

/* Thank you page */
.fn-thankyou-header { text-align: center; padding: 40px 24px !important; }
.fn-thankyou-header svg { margin-bottom: 16px; }
.fn-thankyou-header h1 { font-family: 'ArcticFox Headline', sans-serif; font-size: 26px; font-weight: normal; color: #222; margin: 0 0 8px; }
.fn-thankyou-subtitle { font-family: 'ArcticFox', sans-serif; font-size: 15px; color: #666; }
.fn-thankyou-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.fn-thankyou-details .fn-detail-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-family: 'ArcticFox', sans-serif; font-size: 14px; }
.fn-thankyou-details .fn-detail-row span { color: #666; }
.fn-thankyou-details .fn-detail-row strong { color: #222; }
.fn-thankyou-details .fn-detail-total { border-bottom: none; padding-top: 14px; font-size: 16px; }
.fn-thankyou-details .fn-detail-total strong { font-family: 'ArcticFox Bold', sans-serif; font-size: 18px; }
.fn-thankyou-address { font-family: 'ArcticFox', sans-serif; font-size: 14px; color: #444; line-height: 1.7; }
/* Hide WC's default thankyou output (we render our own) */
.fn-thankyou-page .woocommerce-order { display: none; }

@media (max-width: 768px) { .fn-checkout-page { padding: 20px 16px 60px; } .fn-checkout-layout { grid-template-columns: 1fr; } .fn-checkout-sticky { position: static; } .fn-checkout-right { position: static; order: -1; } .fn-checkout-page .form-row-first, .fn-checkout-page .form-row-last { width: 100% !important; display: block !important; margin-right: 0 !important; } .fn-thankyou-grid { grid-template-columns: 1fr; } }

/* iOS Safari zooms on focus when input font-size < 16px. Force 16px on mobile. */
@media (max-width: 768px) {
  .fn-checkout-page .form-row input.input-text,
  .fn-checkout-page .form-row textarea,
  .fn-checkout-page .form-row select,
  .fn-checkout-page .montonio-pickup-point__search-input,
  .fn-code-row .input-text,
  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row textarea {
    font-size: 16px !important;
  }
  .fn-checkout-page .select2-container .select2-selection__rendered { font-size: 16px !important; }

  /* Give payment method inputs full row width on mobile */
  .fn-checkout-page .payment_box { padding: 12px 16px 16px !important; }
  .fn-checkout-page .wc_payment_method > label { padding: 12px 14px !important; gap: 6px 8px !important; }
  .fn-checkout-page .wc_payment_method > label img { height: 22px !important; }

  /* Bank tiles: 2 per row on mobile */
  .fn-checkout-page .montonio-bank-payments-form .montonio-bank-items { gap: 10px !important; }
  .fn-checkout-page .montonio-bank-payments-form .montonio-bank-items .montonio-bank-item {
    width: calc((100% - 10px) / 2) !important;
    height: 84px !important;
    padding: 12px !important;
  }
  .fn-checkout-page #montonio-payments-description.montonio-bank-items .montonio-bank-item-img,
  .fn-checkout-page #payment #montonio-payments-description.montonio-bank-items .montonio-bank-item-img {
    max-height: 52px !important;
  }
}

/* Legacy cart styles kept for compatibility */
.woocommerce-cart .woocommerce {
  max-width: 1200px; margin: 0 auto; padding: 40px 32px 80px;
}
.woocommerce-cart .woocommerce-cart-form {
  margin-bottom: 40px;
}
.woocommerce table.shop_table {
  border: none; border-collapse: collapse; width: 100%;
}
.woocommerce table.shop_table th {
  font-family: 'ArcticFox Bold', sans-serif; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: #999;
  padding: 12px 16px; border-bottom: 2px solid #e8e8e8;
  background: none;
}
.woocommerce table.shop_table td {
  font-family: 'ArcticFox', sans-serif; font-size: 14px; color: #222;
  padding: 20px 16px; border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
.woocommerce table.shop_table .product-thumbnail img {
  width: 80px; height: 80px; object-fit: contain; background: #f4f4f4;
  border-radius: 4px;
}
.woocommerce table.shop_table .product-name a {
  font-family: 'ArcticFox Bold', sans-serif; font-size: 14px;
  color: #222; text-decoration: none;
}
.woocommerce table.shop_table .product-name a:hover { color: #B93228; }
.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal {
  font-family: 'ArcticFox Bold', sans-serif; font-size: 15px;
}
.woocommerce table.shop_table .product-quantity .qty {
  width: 60px; padding: 8px; border: 1px solid #ddd; border-radius: 4px;
  text-align: center; font-family: 'ArcticFox', sans-serif; font-size: 14px;
}
.woocommerce table.shop_table .product-remove a {
  color: #bbb; font-size: 20px; text-decoration: none;
}
.woocommerce table.shop_table .product-remove a:hover { color: #B93228; }
.woocommerce table.shop_table .actions {
  padding: 20px 16px; border-bottom: none;
}
.woocommerce table.shop_table .actions .coupon {
  display: inline-flex; gap: 8px; align-items: center;
}
.woocommerce table.shop_table .actions .coupon input {
  padding: 12px 16px; border: 1px solid #ddd; border-radius: 4px;
  font-family: 'ArcticFox', sans-serif; font-size: 13px;
}

/* Cart totals */
.woocommerce .cart_totals {
  float: right; width: 380px;
}
.woocommerce .cart_totals h2 {
  font-family: 'ArcticFox Bold', sans-serif; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase; color: #222;
  margin-bottom: 16px;
}
.woocommerce .cart_totals table {
  border: none; border-collapse: collapse;
}
.woocommerce .cart_totals table th {
  font-family: 'ArcticFox', sans-serif; font-size: 14px; color: #666;
  padding: 12px 16px 12px 0; background: none; border-bottom: 1px solid #f0f0f0;
}
.woocommerce .cart_totals table td {
  font-family: 'ArcticFox Bold', sans-serif; font-size: 15px; color: #222;
  padding: 12px 0; border-bottom: 1px solid #f0f0f0; text-align: right;
}
.woocommerce .cart_totals .order-total td {
  font-size: 18px; border-bottom: none;
}
.woocommerce .cart_totals .checkout-button {
  display: block; width: 100%; text-align: center;
  padding: 18px; border-radius: 4px; margin-top: 16px;
  font-family: 'ArcticFox Bold', sans-serif; font-size: 13px;
  letter-spacing: 0.08em;
}

/* Empty cart */
.woocommerce-cart .cart-empty {
  font-family: 'ArcticFox', sans-serif; font-size: 16px; color: #999;
  text-align: center; padding: 60px 0;
}
.woocommerce-cart .return-to-shop a {
  display: inline-block; padding: 14px 28px; background: #222; color: #fff;
  border-radius: 4px; font-family: 'ArcticFox Bold', sans-serif; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
}
.woocommerce-cart .return-to-shop a:hover { background: #111; color: #fff; }

@media (max-width: 768px) {
  .woocommerce .cart_totals { float: none; width: 100%; }
  .woocommerce-cart .woocommerce { padding: 20px 16px 60px; }
}

/* ─── Product grid ──────────────────────────────────────────────── */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  margin-top: 10px;
}
.woocommerce ul.products li.product .price {
  color: var(--color-black);
  font-size: 13px;
}
.woocommerce ul.products li.product img {
  border-radius: 0;
}

/* ─── Product page ──────────────────────────────────────────────── */
.woocommerce div.product .product_title {
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.01em;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 18px;
  color: var(--color-black);
}
.woocommerce div.product form.cart .variations select {
  border: 1px solid var(--color-border);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 10px 12px;
}

/* ─── Sale badge ────────────────────────────────────────────────── */
.woocommerce span.onsale {
  background: var(--color-red);
  border-radius: 0;
  min-width: auto;
  min-height: auto;
  padding: 4px 8px;
  line-height: 1.4;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Navigation ────────────────────────────────────────────────── */
.site-header nav a,
.elementor-nav-menu a {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-nav);
  text-transform: uppercase;
  font-size: 13px;
  color: var(--color-black);
}
.site-header nav a:hover,
.elementor-nav-menu a:hover {
  color: var(--color-red);
}

/* ─── Announcement bar ──────────────────────────────────────────── */
.announcement-bar {
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
  padding: 9px 16px;
  font-size: 12px;
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  font-weight: 700;
}

/* ─── Footer ────────────────────────────────────────────────────── */
.site-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.7);
}
.site-footer a {
  color: rgba(255,255,255,0.7);
}
.site-footer a:hover {
  color: var(--color-white);
}
.footer-col-title {
  color: var(--color-white);
  font-size: 11px;
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ─── Checkout ──────────────────────────────────────────────────── */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout #order_review_heading {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  font-weight: 700;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  border: 1px solid var(--color-border);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 10px 12px;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--color-black);
  outline: none;
  box-shadow: none;
}

/* ── Collection page ─────────────────────────────────────────────────────── */
.coll-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 40px 0;
  font-family: 'ArcticFox', sans-serif; font-size: 12px; color: #999;
}
.coll-breadcrumb a { color: #999; }
.coll-breadcrumb a:hover { color: #222; }
.coll-breadcrumb span[aria-current] { color: #555; }

.coll-mobile-bar {
  display: none; align-items: center; justify-content: space-between;
  padding: 12px 20px; border-bottom: 1px solid #e8e8e8;
}
.coll-filter-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 1px solid #ddd; border-radius: 4px;
  padding: 9px 16px;
  font-family: 'ArcticFox Bold', sans-serif; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: #222; cursor: pointer;
}
.coll-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4); z-index: 299;
}
.coll-overlay.is-active { display: block; }

.coll-intro { padding: 48px 32px 0; max-width: 1440px; margin: 0 auto; }
.coll-intro-inner { max-width: 800px; }
.coll-intro-title { font-family: 'ArcticFox Headline', sans-serif; font-weight: normal; font-size: clamp(28px, 3vw, 44px); letter-spacing: 0.07em; text-transform: uppercase; color: #222; line-height: 1.1; margin: 0 0 16px; }
.coll-intro-body { font-family: 'ArcticFox', sans-serif; font-size: 17px; line-height: 1.65; color: #666; }
.coll-intro-body p { margin: 0 0 12px; }
@media (max-width: 768px) { .coll-intro { padding: 32px 20px 0; } }

.coll-page {
  display: grid; grid-template-columns: 240px 1fr;
  max-width: 1440px; margin: 0 auto; padding: 40px 32px 80px;
  gap: 48px; align-items: start;
}

/* ── Sidebar ──────────────────────────────────────────────────────────────── */
.coll-sidebar { align-self: flex-start; }
.coll-sidebar-head {
  display: none; align-items: center; justify-content: space-between;
  padding: 20px 24px 16px; border-bottom: 1px solid #e8e8e8;
}
.coll-sidebar-title {
  font-family: 'ArcticFox Bold', sans-serif; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: #222;
}
.coll-sidebar-close { background: none; border: none; padding: 4px; color: #222; cursor: pointer; }
.coll-sidebar-body { padding-bottom: 24px; }

/* Category nav */
.cat-nav { gap: 0 !important; padding-bottom: 8px !important; }
.cat-nav-top {
  display: block; width: 100%; background: none; border: none;
  border-bottom: 1px solid #f0f0f0; text-align: left; cursor: pointer;
  font-family: 'ArcticFox', sans-serif; font-size: 14.5px; color: #444;
  padding: 5px 0 10px; margin-bottom: 6px;
}
.cat-nav-top:hover { color: #111; }
.cat-nav-top.is-active { color: #B93228; font-family: 'ArcticFox Bold', sans-serif; }

.cat-group { margin-bottom: 2px; }
.cat-group-row {
  display: flex; align-items: center; justify-content: space-between; gap: 4px;
}
.cat-group-label {
  flex: 1; background: none; border: none; text-align: left; cursor: pointer;
  font-family: 'ArcticFox Bold', sans-serif; font-size: 14.5px; color: #222;
  padding: 5px 0; display: block;
}
.cat-group-label:hover { color: #000; }
.cat-group-label.is-active { color: #B93228; }

.cat-group-expand {
  background: none; border: none; padding: 4px 2px; color: #888;
  cursor: pointer; flex-shrink: 0; transition: transform 0.18s;
}
.cat-group-expand[aria-expanded="true"] { transform: rotate(180deg); }

.cat-subs {
  display: flex; flex-direction: column; gap: 0;
  padding-left: 12px; margin-bottom: 4px;
}
.cat-sub-link {
  background: none; border: none; text-align: left; cursor: pointer; width: 100%;
  font-family: 'ArcticFox', sans-serif; font-size: 14px; color: #666; padding: 4px 0; display: block;
}
.cat-sub-link:hover { color: #222; }
.cat-sub-link.is-active { color: #B93228; font-family: 'ArcticFox Bold', sans-serif; }
.cat-sub-link--nested { padding-left: 12px; font-size: 13px; }

/* Colour swatches (filter) */
.colour-swatch-grid {
  display: flex; flex-wrap: wrap; gap: 8px; padding-top: 4px;
}
.colour-group-item {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  background: none; border: none; padding: 2px 0;
}
.colour-swatch-btn {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid transparent; outline: 2px solid transparent;
  cursor: pointer; padding: 0; flex-shrink: 0;
  transition: outline-color 0.15s, border-color 0.15s;
}
.colour-swatch-btn:hover { outline-color: var(--cg-color, #bbb); }
.colour-group-item.is-active .colour-swatch-btn { border-color: #fff; outline-color: var(--cg-color, #222); }
.colour-label {
  font-family: 'ArcticFox', sans-serif; font-size: 13.5px; color: #555;
  white-space: nowrap; cursor: pointer;
}

/* Filter groups */
.filter-group { border-bottom: 1px solid #e8e8e8; }
.filter-group-toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  background: none; border: none; padding: 16px 0;
  font-family: 'ArcticFox Bold', sans-serif; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase; color: #222;
  cursor: pointer; text-align: left;
}
.filter-chevron { flex-shrink: 0; transition: transform 0.2s; color: #B93228; stroke: #B93228; }
.filter-group-toggle[aria-expanded="true"] .filter-chevron { transform: rotate(180deg); }

.filter-group-body {
  padding-bottom: 16px; display: flex; flex-direction: column; gap: 2px;
}
.filter-option {
  display: flex; align-items: center; gap: 10px; padding: 6px 0;
  font-family: 'ArcticFox', sans-serif; font-size: 14.5px; color: #444;
  cursor: pointer; user-select: none;
}
.filter-option input[type="checkbox"] { display: none; }
.filter-checkmark {
  width: 16px; height: 16px; border: 1.5px solid #bbb; border-radius: 3px;
  flex-shrink: 0; transition: border-color 0.15s, background 0.15s; position: relative;
}
.filter-option input:checked + .filter-checkmark { background: #222; border-color: #222; }
.filter-option input:checked + .filter-checkmark::after {
  content: ''; position: absolute; top: 2px; left: 4px;
  width: 5px; height: 8px; border: 2px solid #fff;
  border-top: none; border-left: none; transform: rotate(45deg);
}

.filter-clear-btn {
  background: none; border: none; margin-top: 20px;
  font-family: 'ArcticFox', sans-serif; font-size: 13px; color: #999;
  text-decoration: underline; cursor: pointer; padding: 0;
}
.filter-clear-btn:hover { color: #222; }

/* Active filter chips */
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.active-filter-chip {
  display: inline-flex; align-items: center; background: #f4f4f4;
  border: 1px solid #e0e0e0; border-radius: 100px; padding: 6px 14px;
  font-family: 'ArcticFox', sans-serif; font-size: 12.5px; color: #444;
  cursor: pointer; transition: background 0.15s; text-transform: capitalize;
}
.active-filter-chip:hover { background: #e8e8e8; }

/* ── Toolbar ──────────────────────────────────────────────────────────────── */
.coll-main { min-width: 0; }
.coll-toolbar {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px;
}
.coll-count { font-family: 'ArcticFox', sans-serif; font-size: 14px; color: #999; }
.coll-sort {
  font-family: 'ArcticFox', sans-serif; font-size: 13.5px; color: #222;
  border: 1px solid #ddd; border-radius: 4px; padding: 8px 12px;
  background: #fff; cursor: pointer;
}

/* ── Product grid & cards ─────────────────────────────────────────────────── */
/* `minmax(0, 1fr)` instead of `1fr` so columns stay mathematically equal even
 * when a card's intrinsic min-content (e.g. a long unbreakable word in the
 * product name) would otherwise push that column wider and shrink its sibling. */
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 768px) { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }
@media (max-width: 480px) { .product-grid { gap: 10px; } }
.coll-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.product-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid #e8e8e8; transition: box-shadow 0.2s, border-color 0.2s;
  color: inherit; text-decoration: none;
}
.product-card:hover { border-color: #d0d0d0; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.product-img-wrap {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  background: #fff; padding: 18px;
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  display: block; transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-badge {
  position: absolute; top: 10px; left: 10px; background: #e0e0e0; color: #111;
  font-family: 'ArcticFox Bold', sans-serif; font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 4px; z-index: 1;
}
.product-badge--sale { background: #B93228; color: #fff; }

.product-info { padding: 16px 14px 20px; text-align: center; }
.product-name {
  font-family: 'ArcticFox', sans-serif; font-weight: 400; font-size: 16px;
  color: #222; line-height: 1.35; margin-bottom: 6px;
  /* Reserve space for ~2 lines so cards with short names visually align with
   * cards whose names wrap to two lines (consistent image-to-text spacing). */
  min-height: calc(2 * 1.35em);
}
.product-price {
  font-family: 'ArcticFox Bold', sans-serif; font-size: 16px;
  font-weight: normal; color: #222; letter-spacing: 0.02em;
}

/* Card swatches */
.product-swatches {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 14px;
}
.swatch-dot {
  display: block; width: 18px; height: 18px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.18); flex-shrink: 0;
  cursor: pointer; border: none; transition: box-shadow 0.15s;
}
.swatch-dot:hover { box-shadow: 0 0 0 1.5px #fff, 0 0 0 3px var(--swatch-border, #888), inset 0 0 0 1px rgba(0,0,0,0.1); }
.swatch-dot.is-active { box-shadow: 0 0 0 1.5px #fff, 0 0 0 3px var(--swatch-border, #222), inset 0 0 0 1px rgba(0,0,0,0.1); }
.swatch-more { font-family: 'ArcticFox', sans-serif; font-size: 11px; color: #999; line-height: 18px; }
.swatch-plus {
  display: flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: #e8e8e8;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.18);
  font-size: 16px; font-weight: 300; color: rgba(0,0,0,0.25);
  cursor: pointer; flex-shrink: 0; line-height: 1;
  border: none; transition: box-shadow 0.15s;
}
.swatch-plus:hover {
  box-shadow: 0 0 0 1.5px #fff, 0 0 0 3px #888, inset 0 0 0 1px rgba(0,0,0,0.1);
}

.coll-empty {
  font-family: 'ArcticFox', sans-serif; font-size: 16px; color: #999; padding: 40px 0;
}
.coll-empty-reset {
  background: none; border: none; color: #222; text-decoration: underline;
  cursor: pointer; font-size: inherit; font-family: inherit;
}

/* Price range */
.price-range-wrap { padding: 8px 2px 4px; }
.price-range-track { position: relative; height: 4px; background: #ddd; border-radius: 2px; margin: 18px 0 10px; }
.price-range-fill { position: absolute; top: 0; height: 4px; background: #222; border-radius: 2px; pointer-events: none; }
.price-range-input { position: absolute; top: 50%; width: 100%; height: 4px; -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none; transform: translateY(-50%); margin: 0; }
.price-range-input::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 16px; height: 16px; border-radius: 50%; background: #222; border: 2px solid #fff; box-shadow: 0 0 0 1px #222; pointer-events: all; cursor: pointer; }
.price-range-input::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: #222; border: 2px solid #fff; box-shadow: 0 0 0 1px #222; pointer-events: all; cursor: pointer; }
.price-range-labels { display: flex; justify-content: space-between; font-size: 12px; color: #555; }
.price-apply-btn { display: block; width: 100%; margin-top: 12px; padding: 8px; background: #222; color: #fff; border: none; border-radius: 4px; font-size: 12px; cursor: pointer; font-family: inherit; }
.price-apply-btn:hover { background: #444; }

/* Pagination */
.coll-pagination {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 32px; padding: 16px 0;
}
.coll-page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border: 1px solid #ddd; border-radius: 4px;
  font-family: 'ArcticFox', sans-serif; font-size: 14px; color: #222;
  text-decoration: none; transition: background 0.15s, border-color 0.15s;
}
.coll-page-btn:hover { background: #f4f4f4; border-color: #bbb; }
.coll-page-btn.is-current {
  background: #222; color: #fff; border-color: #222; cursor: default;
}

/* ── Collection responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .coll-page { grid-template-columns: 200px 1fr; gap: 32px; }
  .coll-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .coll-mobile-bar { display: flex; }
  .coll-page { grid-template-columns: 1fr; padding: 16px 20px 60px; gap: 0; }
  .coll-sidebar {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: min(320px, 88vw); background: #fff; z-index: 300;
    display: flex; flex-direction: column; overflow-y: hidden;
    transform: translateX(-110%); transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none; padding: 0; max-height: none; align-self: stretch;
  }
  .coll-sidebar.is-open { transform: translateX(0); box-shadow: 4px 0 24px rgba(0,0,0,0.15); }
  .coll-sidebar-head { display: flex; flex-shrink: 0; }
  .coll-sidebar-body { padding: 16px 24px 32px; flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .coll-toolbar { display: none; }
  .coll-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}
@media (max-width: 480px) {
  .coll-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
}

/* ── Magic-link login page ─────────────────────────────────────────────── */
.fn-login-page { max-width: 480px; margin: 0 auto; padding: 80px 32px 120px; }
.fn-login-card { background: #fff; padding: 48px 40px; border-radius: 4px; }
.fn-login-heading { font-family: 'ArcticFox Headline', sans-serif; font-weight: normal; font-size: clamp(28px, 4vw, 44px); letter-spacing: 0.06em; text-transform: uppercase; line-height: 1; margin: 0 0 16px; color: #222; }
.fn-login-text { font-family: 'ArcticFox', sans-serif; font-size: 15px; line-height: 1.65; color: #666; margin: 0 0 28px; }
.fn-login-foot { font-family: 'ArcticFox', sans-serif; font-size: 13px; line-height: 1.6; color: #999; margin: 24px 0 0; }
.fn-login-form { display: flex; flex-direction: column; gap: 12px; }
.fn-login-form input[type="email"] { padding: 14px 18px; border: 1px solid #ccc; border-radius: 4px; font-size: 15px; font-family: 'ArcticFox', sans-serif; }
.fn-login-form input[type="email"]:focus { outline: none; border-color: #222; }
.fn-login-form button { padding: 14px 24px; background: #222; color: #fff; border: none; border-radius: 4px; font-family: 'ArcticFox Bold', sans-serif; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; }
.fn-login-form button:disabled { opacity: 0.6; cursor: wait; }
.fn-login-message { margin-top: 18px; font-family: 'ArcticFox', sans-serif; font-size: 14px; line-height: 1.5; padding: 12px 16px; background: #f7f4f0; border-radius: 4px; }
.fn-login-success { color: #2d5016; font-family: 'ArcticFox', sans-serif; font-size: 14px; background: #eef3e8; padding: 12px 16px; border-radius: 4px; margin: 0 0 20px; }
.fn-login-discount { font-family: 'ArcticFox', sans-serif; font-size: 15px; color: #2d5016; margin: 0 0 24px; }
.fn-login-discount strong { font-family: 'ArcticFox Bold', sans-serif; }
.fn-login-actions { display: flex; gap: 12px; }
.fn-login-actions .fn-btn-primary, .fn-login-actions .fn-btn-secondary { display: inline-block; padding: 14px 24px; border-radius: 4px; font-family: 'ArcticFox Bold', sans-serif; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; }
.fn-login-actions .fn-btn-primary { background: #222; color: #fff; }
.fn-login-actions .fn-btn-secondary { background: #f7f4f0; color: #222; }

/* ── Header account icon discount badge ──────────────────────────────────── */
.account-icon-btn { position: relative; }
.account-discount-badge { position: absolute; top: -4px; right: -8px; background: #2d5016; color: #fff; font-family: 'ArcticFox Bold', sans-serif; font-size: 10px; letter-spacing: 0.02em; padding: 2px 5px; border-radius: 8px; line-height: 1.2; }

/* ── Loyalty discount badge ─────────────────────────────────────────────────── */
.fn-loyalty-badge { display: inline-block; background: #2d5016; color: #fff; font-family: 'ArcticFox Bold', sans-serif; font-size: 11px; letter-spacing: 0.04em; padding: 4px 9px; border-radius: 4px; line-height: 1.3; margin-top: 6px; }
.product-card .fn-loyalty-badge { margin-top: 4px; font-size: 10px; padding: 3px 7px; }
.pdp-loyalty-notice { background: #eef3e8; color: #2d5016; padding: 14px 18px; border-radius: 4px; font-family: 'ArcticFox', sans-serif; font-size: 14px; line-height: 1.5; margin: 16px 0 0; }

/* ── Newsletter welcome popup ─────────────────────────────────────────── */
.fn-nlpop{position:fixed;inset:0;z-index:99999;display:flex;align-items:center;justify-content:center;padding:24px}
.fn-nlpop[hidden]{display:none}
.fn-nlpop__backdrop{position:absolute;inset:0;background:rgba(20,20,20,.62);opacity:0;transition:opacity .35s ease}
.fn-nlpop.is-open .fn-nlpop__backdrop{opacity:1}
.fn-nlpop__box{position:relative;display:grid;grid-template-columns:1fr 1fr;width:100%;max-width:900px;max-height:calc(100vh - 48px);background:#fff;border-radius:6px;overflow:hidden;box-shadow:0 24px 70px rgba(0,0,0,.3);opacity:0;transform:translateY(14px) scale(.99);transition:opacity .4s ease,transform .4s ease}
.fn-nlpop.is-open .fn-nlpop__box{opacity:1;transform:none}
.fn-nlpop__media{position:relative;background:#e9e6e1}
.fn-nlpop__media img{width:100%;height:100%;object-fit:cover;display:block}
.fn-nlpop__x{position:absolute;top:14px;right:14px;z-index:2;width:36px;height:36px;display:flex;align-items:center;justify-content:center;padding:0;border:none;border-radius:50%;background:rgba(255,255,255,.9);color:#222;cursor:pointer;transition:background .2s ease}
.fn-nlpop__x:hover{background:#fff}
.fn-nlpop__x svg{width:17px;height:17px}
.fn-nlpop__content{display:flex;flex-direction:column;justify-content:center;padding:52px 44px;overflow-y:auto}
.fn-nlpop__eyebrow{font-family:'ArcticFox Bold',sans-serif;font-size:10px;letter-spacing:.38em;text-transform:uppercase;color:#B93228;margin:0 0 18px}
.fn-nlpop__title{font-family:'ArcticFox Headline',sans-serif;font-weight:normal;font-size:clamp(26px,2.5vw,33px);letter-spacing:.03em;text-transform:uppercase;line-height:1.06;color:#222;margin:0 0 16px}
.fn-nlpop__text{font-family:'ArcticFox',sans-serif;font-size:15px;color:#999;line-height:1.7;margin:0 0 14px}
.fn-nlpop__kicker{font-family:'ArcticFox Bold',sans-serif;font-size:14px;color:#555;line-height:1.6;margin:0 0 26px}
.fn-nlpop__kicker span{font-family:sans-serif}
.fn-nlpop__field{display:flex;border:1px solid #ccc;border-radius:4px;overflow:hidden;margin-bottom:14px}
.fn-nlpop__field input{flex:1;min-width:0;padding:15px 18px;border:none;outline:none;font-family:'ArcticFox',sans-serif;font-size:15px;color:#222;background:#fff}
.fn-nlpop__field button{padding:14px 24px;border:none;border-left:1px solid #ccc;background:#fff;color:#000;font-family:'ArcticFox Bold',sans-serif;font-size:12px;letter-spacing:.03em;text-transform:uppercase;white-space:nowrap;cursor:pointer;transition:background .2s ease,color .2s ease}
.fn-nlpop__field button:hover{background:#222;color:#fff}
.fn-nlpop__field button[disabled]{opacity:.55;cursor:default}
.fn-nlpop__error{font-family:'ArcticFox',sans-serif;font-size:13px;color:#B93228;line-height:1.6;margin:0 0 14px}
.fn-nlpop__error[hidden]{display:none}
.fn-nlpop__consent{display:flex;align-items:flex-start;gap:10px;cursor:pointer}
.fn-nlpop__consent input{margin-top:3px;flex-shrink:0}
.fn-nlpop__consent span{font-family:'ArcticFox',sans-serif;font-size:12px;color:#aaa;line-height:1.65}
.fn-nlpop__consent a{color:#888;text-decoration:underline}
.fn-nlpop__done-btn{margin-top:10px;align-self:flex-start;padding:14px 30px;border:1px solid #222;background:#222;color:#fff;font-family:'ArcticFox Bold',sans-serif;font-size:12px;letter-spacing:.03em;text-transform:uppercase;cursor:pointer;transition:background .2s ease,color .2s ease}
.fn-nlpop__done-btn:hover{background:#fff;color:#222}
@media (max-width:860px){
  .fn-nlpop{padding:0;align-items:flex-end}
  .fn-nlpop__box{grid-template-columns:1fr;max-width:none;max-height:96vh;border-radius:14px 14px 0 0}
  .fn-nlpop__media{height:240px}
  .fn-nlpop__media img{object-position:center top}
  .fn-nlpop__content{padding:32px 26px 36px}
  .fn-nlpop__text{margin-bottom:12px;font-size:14px}
  .fn-nlpop__kicker{font-size:13px;margin-bottom:20px}
}
@media (prefers-reduced-motion:reduce){
  .fn-nlpop__backdrop,.fn-nlpop__box{transition:none}
}
