/** Shopify CDN: Minification failed

Line 3414:0 Unexpected "}"

**/
/*
 * Wolfhunter Dark Theme — Main Stylesheet
 * Design: Dark Sovereign — deep charcoal, white text, gold accent (#C9A84C)
 * Font: DM Sans (loaded via Google Fonts in theme.liquid)
 */

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0A;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --bg-elevated: #161616;
  --fg: #FFFFFF;
  --fg-muted: rgba(255,255,255,0.55);
  --fg-subtle: rgba(255,255,255,0.3);
  --gold: #C9A84C;
  --gold-hover: #d4b55e;
  --gold-dim: rgba(201,168,76,0.15);
  --border: rgba(255,255,255,0.08);
  --border-gold: rgba(201,168,76,0.3);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.2s ease;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-h: 64px;
}

html { scroll-behavior: smooth; }

body.wh-body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font); }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.gold-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0;
}

.wh-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.wh-section-header .gold-rule { margin: 1rem auto; }

.wh-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.wh-section-desc {
  color: var(--fg-muted);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--gold);
  color: #000;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 3.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-1px); }
.btn-gold:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--fg);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--gold);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.btn-gold-outline:hover { background: var(--gold); color: #000; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--gold);
  color: #000;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.announcement-bar__link,
.announcement-bar__text { color: #000; text-decoration: none; }
.announcement-bar__link:hover { text-decoration: underline; }

/* ============================================================
   HEADER
   ============================================================ */
.wh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.wh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.wh-header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.wh-header__logo-img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 6px;
}
.wh-header__logo-wolf {
  width: 36px;
  height: 36px;
  background: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663412763885/hKpDvU73QbTWLUhfYi4Fji/wolfhunter-icon_575fba39.png') center/cover no-repeat;
  border-radius: 6px;
  border: none;
}
.wh-header__logo-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
}

.wh-header__nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 900px) { .wh-header__nav { display: flex; } }

.wh-header__nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.wh-header__nav-link:hover,
.wh-header__nav-link.is-active {
  color: var(--fg);
  background: rgba(255,255,255,0.05);
}

.wh-header__actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.wh-header__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  color: var(--fg-muted);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.wh-header__icon-btn:hover { color: var(--fg); background: rgba(255,255,255,0.05); }

.wh-header__cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--gold);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wh-header__mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--fg-muted);
}
@media (min-width: 900px) { .wh-header__mobile-toggle { display: none; } }

.wh-header__mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 0.5rem 0;
}
.wh-header__mobile-menu.is-open { display: flex; }

.wh-header__mobile-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}
.wh-header__mobile-link:hover { color: var(--fg); background: rgba(255,255,255,0.03); }

/* Search Modal */
.wh-search-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
}
.wh-search-modal__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 600px;
  padding: 0 1.5rem;
}
.wh-search-form {
  display: flex;
  align-items: center;
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.wh-search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--fg);
  font-size: 15px;
  padding: 0.85rem 1rem;
}
.wh-search-input::placeholder { color: var(--fg-muted); }
.wh-search-submit {
  padding: 0.85rem 1rem;
  color: var(--fg-muted);
  transition: color var(--transition);
}
.wh-search-submit:hover { color: var(--gold); }
.wh-search-close {
  color: var(--fg-muted);
  font-size: 18px;
  padding: 0.5rem;
  transition: color var(--transition);
}
.wh-search-close:hover { color: var(--fg); }

/* ============================================================
   HERO
   ============================================================ */
.wh-hero {
  position: relative;
  height: 82vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wh-hero__bg {
  position: absolute;
  inset: 0;
}
.wh-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  filter: brightness(1.1) drop-shadow(0 0 40px rgba(255,255,255,0.15));
  mix-blend-mode: screen;
  transform: scale(0.7) translateY(3.5%);
  mask-image: radial-gradient(ellipse 55% 65% at center, black 30%, transparent 80%);
-webkit-mask-image: radial-gradient(ellipse 55% 65% at center, black 30%, transparent 80%);
}

.wh-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.5) 0%,
    rgba(10,10,10,0.0) 25%,
    rgba(10,10,10,0.0) 60%,
    rgba(10,10,10,0.55) 100%
  );
}

.wh-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem 1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.wh-hero__title {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-top: 0rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.8);
}

.wh-hero__title-white {
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
}

.wh-hero__title-gold {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
}

.wh-hero__rule {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.25rem auto;
}

.wh-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  max-width: 560px;
  line-height: 1.6;
}

.wh-hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Hero secondary button */
.wh-hero__btn-secondary {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
}
.wh-hero__btn-secondary:hover {
  color: #fff;
  border-color: var(--gold);
}

/* Hero Stats Badges */
.wh-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: nowrap;
}
.wh-hero__stat-badge {
  padding: 0 1rem;
}
@media (max-width: 480px) {
  .wh-hero__stat-num { font-size: 0.8rem; }
  .wh-hero__stat-label { font-size: 9px; }
  .wh-hero__stat-badge { padding: 0 0.6rem; }
}
.wh-hero__stat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
}
.wh-hero__stat-num {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.wh-hero__stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.15rem;
}
.wh-hero__stats-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* Hero Scroll Hint */
.wh-hero__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-top: 2.5rem;
  opacity: 0.4;
}
.wh-hero__scroll-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}
.wh-hero__scroll-arrow {
  font-size: 14px;
  color: #fff;
  animation: wh-scroll-bounce 1.8s ease-in-out infinite;
}

.wh-hero__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.5rem;
  padding-bottom: 0;
}

.wh-hero__spacer {
  display: block;
  height: 440px;
}
@media (max-width: 640px) {
  .wh-hero__spacer { height: 180px; }
  .wh-hero__bg-img { transform: scale(0.75) translateY(-5%); }
}

.wh-hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0;
  margin-top: auto;
}
@media (max-width: 640px) {
  .wh-hero__bottom {
    gap: 0.6rem;
  }
  .wh-hero__stats {
    margin-top: 0.75rem;
  }
}

@keyframes wh-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Nations Suggest Link */
.wh-nations__suggest {
  text-align: center;
  margin-top: 2rem;
}
.wh-nations__suggest-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.wh-nations__suggest-link:hover { color: var(--gold); }

/* Limited Edition Urgency Banner */
.wh-featured__limited-banner {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius-lg);
  text-align: center;
}
.wh-featured__limited-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.wh-featured__limited-sub {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}
.wh-featured__limited-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 2.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.wh-featured__limited-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

/* Brand Values closing quote */
.wh-brand-values__quote {
  text-align: center;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-style: italic;
  color: var(--fg-muted);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* "In Or Out?" CTA Section */
.wh-cta-section {
  padding: 5rem 0;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.wh-cta-section__heading {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.wh-cta-section__sub {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}
.wh-cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.wh-cta-section__pack-line {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

/* ============================================================
   BRAND TAGLINE
   ============================================================ */
.wh-brand-tagline {
  padding: 3.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.wh-brand-tagline__text {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.wh-brand-tagline__rule { margin: 1rem auto; }
.wh-brand-tagline__sub {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.wh-marquee {
  overflow: hidden;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}
.wh-marquee__track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.wh-marquee__track:hover { animation-play-state: paused; }
.wh-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.75rem;
}
.wh-marquee__text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.wh-marquee__dot {
  color: var(--gold);
  font-size: 8px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   NATIONS GRID
   ============================================================ */
.wh-nations {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.nations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 480px) { .nations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .nations-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .nations-grid { grid-template-columns: repeat(5, 1fr); } }

.nation-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.nation-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }

.nation-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.nation-card__flag-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #1a1a1a;
}
.nation-card__flag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.nation-card:hover .nation-card__flag { transform: scale(1.05); }
.nation-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.6) 100%);
}
.nation-card__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: var(--fg-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.nation-card__flag-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  color: var(--fg-muted);
  font-size: 1.5rem;
  font-weight: 700;
}

.nation-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
}
.nation-card__name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.nation-card__arrow {
  font-size: 12px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
}
.nation-card:hover .nation-card__arrow { opacity: 1; transform: translateX(0); }

/* Coming soon card */
.nation-card--coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: auto;
  min-height: 110px;
  border-style: dashed;
  border-color: var(--border);
  background: transparent;
  padding: 1.5rem;
  text-align: center;
  cursor: default;
}
.nation-card--coming-soon:hover { transform: none; border-color: var(--border); }
.nation-card__coming-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.nation-card__coming-sub {
  font-size: 11px;
  color: var(--fg-subtle);
  margin-top: 0.25rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 480px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

/* Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.product-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.product-card--sold-out { opacity: 0.7; }

.product-card__link { display: block; text-decoration: none; color: inherit; }

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #1e1e1e;
}
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__image { transform: scale(1.04); }
.product-card__image-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  pointer-events: none;
}

.product-card__sold-out-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__sold-out-badge {
  background: rgba(0,0,0,0.8);
  color: var(--fg-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius);
}
.product-card__badge--sale {
  background: var(--gold);
  color: #000;
}
.product-card__badge--bestseller {
  position: absolute;
  top: 18px;
  right: -28px;
  left: auto;
  width: 120px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 0;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(45deg);
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.wh-product-page__main-image {
  position: relative;
  overflow: hidden;
}

.product-card__info {
  padding: 0.9rem 1rem;
}
.product-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.product-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}
.product-card__price--sold-out { color: var(--fg-muted); }
.product-card__buy-hint {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
}
.product-card:hover .product-card__buy-hint { opacity: 1; transform: translateX(0); }

/* ============================================================
   FEATURED PRODUCTS SECTION
   ============================================================ */
.wh-featured-products {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   BRAND VALUES
   ============================================================ */
.wh-brand-values {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition);
}
.value-item:hover { border-color: var(--border-gold); }
.value-item__icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
}
.value-item__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.35rem;
}
.value-item__subtitle {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ============================================================
   BRAND STATEMENT
   ============================================================ */
.wh-brand-statement {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.wh-brand-statement__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.wh-brand-statement__heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.wh-brand-statement__rule { margin: 1rem auto; }
.wh-brand-statement__body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ============================================================
   PRODUCT FEATURE
   ============================================================ */
.wh-product-feature {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.wh-product-feature__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
  align-items: center;
}
.wh-product-feature__item:last-child { margin-bottom: 0; }
@media (min-width: 768px) {
  .wh-product-feature__item { grid-template-columns: 1fr 1fr; }
  .wh-product-feature__item--reverse .wh-product-feature__image-panel { order: 2; }
  .wh-product-feature__item--reverse .wh-product-feature__text-panel { order: 1; }
}

.wh-product-feature__image-panel {
  background: #1e1e1e;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wh-product-feature__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
}

.wh-product-feature__text-panel { padding: 1rem 0; }
.wh-product-feature__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.wh-product-feature__rule { margin: 1rem 0; }
.wh-product-feature__desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

/* ============================================================
   EMAIL SIGNUP
   ============================================================ */
.wh-email-signup {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.wh-email-signup__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.wh-email-signup__heading {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.wh-email-signup__rule { margin: 1rem auto; }
.wh-email-signup__desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}
.wh-email-signup__form { width: 100%; }
.wh-email-signup__field-wrap {
  display: flex;
  gap: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.35rem 0.35rem 0.35rem 1rem;
  transition: border-color var(--transition);
}
.wh-email-signup__field-wrap:focus-within { border-color: var(--gold); }
.wh-email-signup__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--fg);
  font-size: 14px;
  min-width: 0;
}
.wh-email-signup__input::placeholder { color: var(--fg-muted); }
.wh-email-signup__btn { flex-shrink: 0; }
.wh-email-signup__success {
  margin-top: 1rem;
  font-size: 13px;
  color: var(--gold);
}
.wh-email-signup__error {
  margin-top: 0.75rem;
  font-size: 13px;
  color: #e05252;
}

/* ============================================================
   FOOTER
   ============================================================ */
.wh-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}
.wh-footer__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .wh-footer__main {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.wh-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.wh-footer__logo-wolf {
  width: 32px;
  height: 32px;
  background: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663412763885/hKpDvU73QbTWLUhfYi4Fji/wolfhunter-icon_575fba39.png') center/cover no-repeat;
  border-radius: 6px;
  border: none;
  flex-shrink: 0;
}
.wh-footer__logo-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
}

.wh-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.wh-footer__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius);
  transition: color var(--transition);
  text-decoration: none;
}
.wh-footer__link:hover { color: var(--fg); }

.wh-footer__social { display: flex; gap: 0.5rem; }
.wh-footer__social-link {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: color var(--transition), border-color var(--transition);
}
.wh-footer__social-link:hover { color: var(--gold); border-color: var(--border-gold); }

.wh-footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.wh-footer__copyright {
  font-size: 12px;
  color: var(--fg-subtle);
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 149;
  backdrop-filter: blur(4px);
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 100vw);
  background: var(--bg-elevated);
  border-left: 1px solid var(--border);
  z-index: 150;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cart-drawer__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cart-drawer__close {
  color: var(--fg-muted);
  font-size: 16px;
  transition: color var(--transition);
}
.cart-drawer__close:hover { color: var(--fg); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}
.cart-drawer__empty { text-align: center; padding: 3rem 0; }
.cart-drawer__empty-text {
  color: var(--fg-muted);
  font-size: 14px;
  margin-bottom: 1.5rem;
}

.cart-drawer__footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.cart-drawer__subtotal-amount { color: var(--gold); }

/* Cart item in drawer */
.cart-drawer-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-item:last-child { border-bottom: none; }
.cart-drawer-item__image {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #1e1e1e;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer-item__details { flex: 1; min-width: 0; }
.cart-drawer-item__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.2rem;
}
.cart-drawer-item__variant {
  font-size: 11px;
  color: var(--fg-muted);
  margin-bottom: 0.4rem;
}
.cart-drawer-item__price {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}
.cart-drawer-item__remove {
  color: var(--fg-subtle);
  font-size: 14px;
  align-self: flex-start;
  transition: color var(--transition);
}
.cart-drawer-item__remove:hover { color: #e05252; }

/* ============================================================
   NATION COLLECTION PAGE
   ============================================================ */
.wh-nation-hero {
  position: relative;
  height: 220px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
@media (min-width: 768px) { .wh-nation-hero { height: 260px; } }

.wh-nation-hero__flag-bg {
  position: absolute;
  inset: 0;
}
.wh-nation-hero__flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) brightness(0.5) saturate(0.8);
  transform: scale(1.05);
}
.wh-nation-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 100%);
}
.wh-nation-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 3rem;
  width: 100%;
}
.wh-nation-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  transition: color var(--transition);
  text-decoration: none;
}
.wh-nation-hero__back:hover { color: var(--fg); }
.wh-nation-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.wh-nation-hero__rule { margin: 1rem 0; }
.wh-nation-hero__count {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.wh-collection-products {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.wh-collection-products .product-card::before,
.wh-collection-products .product-card::after { content: none; }

.wh-collection-products--brand .product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.03) 30%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.03) 70%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}
.wh-collection-products--brand .product-card:hover::after { opacity: 1; }
.wh-collection-products--brand .product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.04) 40%, rgba(255,255,255,0.09) 50%, rgba(255,255,255,0.04) 60%, transparent 100%);
  transform: skewX(-15deg);
  transition: left 1.4s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
  z-index: 2;
}
.wh-collection-products--brand .product-card:hover::before { left: 125%; }

.wh-collection-empty {
  text-align: center;
  padding: 5rem 0;
}
.wh-collection-empty__text {
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.wh-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
.wh-pagination__btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none;
}
.wh-pagination__btn:hover { color: var(--fg); border-color: var(--border-gold); }
.wh-pagination__info { font-size: 13px; color: var(--fg-muted); }

/* Explore Nations */
.wh-explore-nations {
  padding: 1.5rem 0 5rem;
}
.wh-explore-nations__label { text-align: center; margin-bottom: 1.5rem; }
.wh-explore-nations__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.wh-explore-nations__grid::-webkit-scrollbar { display: none; }
@media (max-width: 768px) {
  .wh-explore-nations__grid { flex-wrap: nowrap; }
}
.wh-explore-nations__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.4rem 0.85rem;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.wh-explore-nations__pill:hover { color: var(--fg); border-color: var(--border-gold); }
.wh-explore-nations__flag {
  width: 20px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.wh-product-page {
  padding: 3rem 0 1.5rem;
}
.wh-product-page__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .wh-product-page__inner { grid-template-columns: 1fr 1fr; } }

.wh-product-page__main-image-wrap {
  background: #1e1e1e;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wh-product-page__main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
}
.wh-product-page__thumbnails {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.wh-product-page__thumb {
  width: 64px;
  height: 64px;
  background: #1e1e1e;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
  padding: 0;
}
.wh-product-page__thumb.is-active { border-color: var(--gold); }
.wh-product-page__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.wh-product-page__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.wh-product-page__breadcrumb a { color: var(--fg-muted); transition: color var(--transition); }
.wh-product-page__breadcrumb a:hover { color: var(--fg); }
.wh-product-page__breadcrumb span { color: var(--fg-subtle); }

.wh-product-page__title {
  font-size: clamp(1.1rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  word-break: break-word;
  hyphens: auto;
}
.wh-product-page__price {
  margin-bottom: 0.5rem;
}
.wh-product-page__price-current {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.wh-product-page__price-current--sale { color: #e05252; }
.wh-product-page__price-compare {
  font-size: 1rem;
  color: var(--fg-muted);
  text-decoration: line-through;
  margin-right: 0.5rem;
}
.wh-product-page__price-sold-out {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 600;
}
.wh-product-page__rule { margin: 1.25rem 0; }
.wh-product-page__description {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.wh-product-page__description p { margin-bottom: 0.75rem; }

/* Product Form */
.wh-product-form { display: flex; flex-direction: column; gap: 0; }
.wh-product-form__option { padding-bottom: 1.25rem; margin-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.wh-product-form__qty { padding-bottom: 1.25rem; margin-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.wh-product-form__add-btn { margin-bottom: 0.75rem; }
@media (max-width: 768px) {
  .wh-product-form { gap: 2.25rem; }
  .wh-product-form__option { padding-bottom: 2rem; }
  .wh-product-form__qty { padding-bottom: 2rem; }
  .wh-product-form__add-btn { padding: 1.1rem; font-size: 15px; margin-bottom: 0.75rem; }
  .wh-product-form__buy-now { padding: 1.1rem; font-size: 15px; }
}
.wh-product-form__option-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.wh-product-form__option-values { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.wh-product-form__option-btn {
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-elevated);
  transition: all var(--transition);
}
.wh-product-form__option-btn:hover { border-color: var(--border-gold); color: var(--fg); }
.wh-product-form__option-btn.is-active { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.wh-product-form__option-btn.is-sold-out { opacity: 0.4; text-decoration: line-through; cursor: not-allowed; }

.wh-product-form__qty-wrap {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.wh-product-form__qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  font-size: 16px;
  transition: color var(--transition), background var(--transition);
}
.wh-product-form__qty-btn:hover { color: var(--fg); background: rgba(255,255,255,0.05); }
.wh-product-form__qty-input {
  width: 48px;
  text-align: center;
  background: none;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--fg);
  font-size: 14px;
  font-weight: 600;
  padding: 0.4rem 0;
  outline: none;
  -moz-appearance: textfield;
}
.wh-product-form__qty-input::-webkit-outer-spin-button,
.wh-product-form__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.wh-product-form__add-btn { width: 100%; }
.wh-product-form__buy-now { width: 100%; text-align: center; }

.wh-product-page__meta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.wh-product-page__meta-item {
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 0.3rem;
}
.wh-product-page__meta-item span { color: var(--fg); }

/* Related Products */
.wh-related-products {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

/* ============================================================
   CONTACTS PAGE
   ============================================================ */
.wh-contacts-page {
  padding: 4rem 0 6rem;
}
.wh-contacts-page__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .wh-contacts-page__inner { grid-template-columns: 1fr 1.5fr; gap: 4rem; } }

.wh-contacts-page__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.wh-contacts-page__rule { margin: 1rem 0; }
.wh-contacts-page__desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.wh-contacts-page__details { display: flex; flex-direction: column; gap: 1.25rem; }
.wh-contacts-page__detail-item { display: flex; align-items: flex-start; gap: 1rem; }
.wh-contacts-page__detail-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.wh-contacts-page__detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.2rem;
}
.wh-contacts-page__detail-value {
  font-size: 14px;
  color: var(--fg);
  text-decoration: none;
  transition: color var(--transition);
}
a.wh-contacts-page__detail-value:hover { color: var(--gold); }

/* Contacts Form */
.wh-contacts-form { display: flex; flex-direction: column; gap: 1.25rem; }
.wh-contacts-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 480px) { .wh-contacts-form__row { grid-template-columns: 1fr 1fr; } }
.wh-contacts-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.wh-contacts-form__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.wh-contacts-form__input {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  font-size: 14px;
  font-family: var(--font);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.wh-contacts-form__input:focus { border-color: var(--gold); }
.wh-contacts-form__input::placeholder { color: var(--fg-muted); }
.wh-contacts-form__select { appearance: none; cursor: pointer; }
.wh-contacts-form__textarea { resize: vertical; min-height: 120px; }
.wh-contacts-form__submit { align-self: flex-start; }
.wh-contacts-form__success {
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 1rem;
  color: var(--gold);
  font-size: 14px;
}
.wh-contacts-form__errors {
  color: #e05252;
  font-size: 13px;
}

/* ============================================================
   TRACK PACKAGE PAGE
   ============================================================ */
.wh-track-page {
  padding: 4rem 0 6rem;
}
.wh-track-page__inner {
  max-width: 720px;
  margin: 0 auto;
}
.wh-track-page__header { text-align: center; margin-bottom: 3rem; }
.wh-track-page__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.wh-track-page__rule { margin: 1rem auto; }
.wh-track-page__desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.wh-track-page__form-wrap { margin-bottom: 3.5rem; }
.wh-track-form__field-wrap {
  display: flex;
  gap: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.4rem 0.4rem 0.4rem 1rem;
  transition: border-color var(--transition);
}
.wh-track-form__field-wrap:focus-within { border-color: var(--gold); }
.wh-track-form__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--fg);
  font-size: 14px;
  min-width: 0;
}
.wh-track-form__input::placeholder { color: var(--fg-muted); }
.wh-track-form__btn { flex-shrink: 0; }

.wh-track-form__carriers { margin-top: 1rem; }
.wh-track-form__carriers-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.wh-track-form__carrier-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.wh-track-form__carrier {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.25rem 0.7rem;
}

.wh-track-page__how { margin-bottom: 3rem; }
.wh-track-page__how-label { margin-bottom: 1.5rem; }
.wh-track-page__steps { display: flex; flex-direction: column; gap: 1.5rem; }
.wh-track-page__step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.wh-track-page__step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 0.4rem 0.65rem;
  flex-shrink: 0;
  line-height: 1;
}
.wh-track-page__step-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.wh-track-page__step-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.65; }

.wh-track-page__help {
  display: flex;
  gap: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  align-items: flex-start;
}
.wh-track-page__help-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.wh-track-page__help-title { font-size: 14px; font-weight: 700; margin-bottom: 0.3rem; }
.wh-track-page__help-desc { font-size: 13px; color: var(--fg-muted); margin-bottom: 0.75rem; }
.wh-track-page__help-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: opacity var(--transition);
}
.wh-track-page__help-link:hover { opacity: 0.8; }

/* ============================================================
   CART PAGE
   ============================================================ */
.wh-cart-page { padding: 4rem 0 6rem; }
.wh-cart-page__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) { .wh-cart-page__inner { grid-template-columns: 1fr 380px; } }

.wh-cart-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.wh-cart-item__image-wrap {
  width: 80px;
  height: 80px;
  background: #1e1e1e;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.wh-cart-item__image { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.wh-cart-item__details { flex: 1; min-width: 0; }
.wh-cart-item__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
}
.wh-cart-item__variant { font-size: 12px; color: var(--fg-muted); margin-bottom: 0.5rem; }
.wh-cart-item__price { font-size: 14px; font-weight: 700; color: var(--gold); margin-bottom: 0.5rem; }
.wh-cart-item__qty-wrap { display: inline-flex; align-items: center; gap: 0.5rem; }
.wh-cart-item__qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  font-size: 14px;
  transition: color var(--transition), border-color var(--transition);
}
.wh-cart-item__qty-btn:hover { color: var(--fg); border-color: var(--border-gold); }
.wh-cart-item__qty { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.wh-cart-item__remove {
  color: var(--fg-subtle);
  font-size: 14px;
  transition: color var(--transition);
  flex-shrink: 0;
}
.wh-cart-item__remove:hover { color: #e05252; }

.wh-cart-page__summary {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.wh-cart-page__summary-title { font-size: 15px; font-weight: 700; margin-bottom: 0.25rem; }
.wh-cart-page__summary-rule { margin: 1rem 0; }
.wh-cart-page__summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 0.75rem;
}
.wh-cart-page__summary-row--muted { color: var(--fg-muted); font-size: 13px; }
.wh-cart-page__summary-note {
  font-size: 12px;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  margin: 1rem 0;
}
.wh-cart-page__checkout-btn { width: 100%; margin-bottom: 0.5rem; }
.wh-cart-page__continue-btn { width: 100%; text-align: center; }

.wh-cart-empty { text-align: center; padding: 5rem 0; }
.wh-cart-empty__text { color: var(--fg-muted); margin-bottom: 1.5rem; }

/* ============================================================
   GENERIC PAGE
   ============================================================ */
.wh-page { padding: 4rem 0 6rem; }
.wh-page__inner { max-width: 760px; margin: 0 auto; }
.wh-page__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.wh-page__rule { margin: 1rem 0; }
.wh-page__content { font-size: 15px; color: var(--fg-muted); line-height: 1.8; }
.wh-page__content h2 { color: var(--fg); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin: 2.5rem 0 0.6rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.wh-page__content h3 { color: var(--fg); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin: 1.75rem 0 0.5rem; color: var(--gold); }
.wh-page__content p { margin-bottom: 1rem; max-width: 680px; }
.wh-page__content a { color: var(--gold); text-decoration: underline; }
.wh-page__content strong { color: var(--fg); font-weight: 700; letter-spacing: 0.04em; }

/* ============================================================
   NATIONS PAGE (list-collections)
   ============================================================ */
.wh-nations-page { padding: 4rem 0 6rem; }

/* ============================================================
   SEARCH PAGE
   ============================================================ */
.wh-search-page { padding: 4rem 0 6rem; }
.wh-search-page__form { margin-bottom: 2.5rem; }
.wh-search-page__field-wrap {
  display: flex;
  gap: 0.5rem;
  max-width: 560px;
}
.wh-search-page__input {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  font-size: 14px;
  font-family: var(--font);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition);
}
.wh-search-page__input:focus { border-color: var(--gold); }
.wh-search-page__count { font-size: 13px; color: var(--fg-muted); margin-bottom: 1.5rem; }
.wh-search-page__no-results { text-align: center; padding: 4rem 0; }
.wh-search-page__no-results p { color: var(--fg-muted); margin-bottom: 1.5rem; }

/* ============================================================
   404 PAGE
   ============================================================ */
.wh-404 { padding: 8rem 0; }
.wh-404__inner { max-width: 480px; margin: 0 auto; text-align: center; }
.wh-404__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.wh-404__rule { margin: 1rem auto; }
.wh-404__desc { color: var(--fg-muted); margin-bottom: 2rem; }
.wh-404__actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PLACEHOLDER SVG
   ============================================================ */
.placeholder-svg { fill: var(--fg-subtle); }
/* ============================================================
   IDENTITY SECTION
   ============================================================ */
.wh-identity {
  background: #0D0D0D;
  padding: 6rem 0;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.wh-identity__gold-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.wh-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wh-identity__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.wh-identity__center {
  text-align: center;
  max-width: 680px;
}

.wh-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.wh-identity__label {
  margin-bottom: 1.5rem;
}

.wh-identity__headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.wh-identity__divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2rem;
}

.wh-identity__manifesto {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.wh-identity__manifesto p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.wh-identity__closing {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--fg-muted);
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
}

/* Pillars */
.wh-identity__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

@media (max-width: 768px) {
  .wh-identity__pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.wh-identity__pillar {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: border-color var(--transition);
}

.wh-identity__pillar:hover {
  border-color: var(--border-gold);
}

.wh-identity__pillar-line {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1rem;
}

.wh-identity__pillar h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 0.6rem;
}

.wh-identity__pillar p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.7;
}
/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.wh-testimonials {
  background: #111111;
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}

.wh-testimonials__header {
  text-align: center;
  margin-bottom: 3rem;
}

.wh-testimonials__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.wh-testimonials__subtitle {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Stats bar */
.wh-testimonials__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 4rem;
  gap: 0;
}

.wh-testimonials__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 2.5rem;
  flex: 1;
  min-width: 120px;
}

.wh-testimonials__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .wh-testimonials__stat-divider { display: none; }
  .wh-testimonials__stats { flex-direction: column; gap: 1.5rem; }
}

.wh-testimonials__stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.wh-testimonials__stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Reviews grid */
.wh-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .wh-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .wh-testimonials__grid { grid-template-columns: 1fr; }
}

.wh-testimonials__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--transition);
}

.wh-testimonials__card:hover {
  border-color: var(--border-gold);
}

.wh-testimonials__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.wh-testimonials__text {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.75;
  flex: 1;
}

.wh-testimonials__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.wh-testimonials__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
}

.wh-testimonials__country {
  font-size: 12px;
  color: var(--fg-muted);
}
/* ============================================================
   COLLECTION FEATURED SECTION
   ============================================================ */
.wh-featured {
  background: var(--bg);
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}

.wh-featured__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.wh-featured__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-top: 0.5rem;
}

/* Products grid — 3 columns */
.wh-featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .wh-featured__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .wh-featured__grid { grid-template-columns: 1fr; }
}

/* Card */
.wh-featured__card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), transform var(--transition);
}

.wh-featured__card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

/* Image */
.wh-featured__image-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #1a1a1a;
}

.wh-featured__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.4s ease;
}

.wh-featured__card:hover .wh-featured__image-wrap img {
  transform: scale(1.04);
}

/* Info block */
.wh-featured__info {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.wh-featured__stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
}

.wh-featured__collection {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.wh-featured__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.02em;
}

.wh-featured__desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.65;
  flex: 1;
  margin-top: 0.25rem;
}

.wh-featured__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.wh-featured__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}

.wh-featured__cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color var(--transition);
}

.wh-featured__card:hover .wh-featured__cta {
  color: var(--gold);
}

/* View all button */
.wh-featured__view-all {
  text-align: center;
}

.wh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
}

.wh-btn--outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}

.wh-btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
/* ============================================================
   NATIONS SECTION
   ============================================================ */
.wh-nations {
  background: var(--bg);
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.wh-nations__header {
  text-align: center;
  margin-bottom: 3rem;
}

.wh-nations__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.wh-nations__subtitle {
  font-size: 0.95rem;
  color: var(--fg-muted);
}

/* Grid */
.wh-nations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .wh-nations__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 580px) {
  .wh-nations__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Card */
.wh-nations__card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: var(--fg);
  transition: border-color var(--transition), background var(--transition);
}

.wh-nations__card:hover {
  border-color: var(--border-gold);
  background: var(--bg-elevated);
}

.wh-nations__flag {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.wh-nations__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  flex: 1;
}

.wh-nations__arrow {
  font-size: 12px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
}

.wh-nations__card:hover .wh-nations__arrow {
  opacity: 1;
  transform: translateX(0);
}

.wh-nations__card--suggest {
  border-style: dashed;
  color: var(--fg-muted);
}

.wh-nations__card--suggest:hover {
  color: var(--fg);
}
/* ============================================================
   NATIONS VISUAL FLAG GRID
   ============================================================ */
.nations-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .nations-visual-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .nations-visual-grid { grid-template-columns: repeat(5, 1fr); } }

.nation-visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--fg);
  transition: border-color var(--transition), transform var(--transition);
  display: block;
  cursor: pointer;
}
.nation-visual-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}
.nation-visual-card__flag-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #1a1a1a;
}
.nation-visual-card__flag-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.nation-visual-card:hover .nation-visual-card__flag-wrap img {
  transform: scale(1.05);
}
.nation-visual-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
}
.nation-visual-card__badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0,0,0,0.7);
  color: rgba(255,255,255,0.85);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
}
.nation-visual-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.8rem;
}
.nation-visual-card__name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nation-visual-card__arrow {
  font-size: 12px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
}
.nation-visual-card:hover .nation-visual-card__arrow {
  opacity: 1;
  transform: translateX(0);
}
.nation-visual-card--coming {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  border-style: dashed;
  cursor: default;
  aspect-ratio: unset;
}
.nation-visual-card--coming:hover {
  transform: none;
  border-color: var(--border);
}
.nation-visual-card__coming-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.nation-visual-card__coming-sub {
  font-size: 11px;
  color: var(--fg-subtle);
  margin-top: 0.25rem;
}
.wh-nations__suggest-wrap {
  text-align: center;
  margin-top: 1.5rem;
}
.wh-nations__suggest-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.wh-nations__suggest-link:hover { color: var(--gold); }
.nation-visual-card__flag-wrap--dark {
  background: #111;
}
.nation-visual-card__map-img {
  object-fit: contain;
  padding: 0.75rem;
  filter: invert(1) brightness(0.7);
}
/* Product page option buttons */
.wh-product-page__option {
  margin-bottom: 1.5rem;
}
.wh-product-page__option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.wh-option-btn {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}
.wh-option-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.wh-option-btn--active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
@keyframes wh-fade-up {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wh-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.wh-hero__eyebrow { opacity: 0; animation: wh-fade-in 0.55s ease forwards 0.1s; }
.wh-hero__title-white { opacity: 0; animation: wh-fade-up 0.75s cubic-bezier(0.22,1,0.36,1) forwards 0.28s; }
.wh-hero__title-gold { opacity: 0; animation: wh-fade-up 0.75s cubic-bezier(0.22,1,0.36,1) forwards 0.48s; }
.wh-hero__subtitle { opacity: 0; animation: wh-fade-up 0.6s ease forwards 0.68s; }
.wh-hero__ctas { opacity: 0; animation: wh-fade-up 0.6s ease forwards 0.82s; }
.wh-hero__stats { opacity: 0; animation: wh-fade-up 0.6s ease forwards 1.0s; }
[data-wh-reveal] { opacity: 0; transform: translateY(48px); transition: opacity 1.1s ease, transform 1.1s cubic-bezier(0.16,1,0.3,1); }
[data-wh-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .wh-hero__eyebrow,.wh-hero__title-white,.wh-hero__title-gold,.wh-hero__subtitle,.wh-hero__ctas,.wh-hero__stats { opacity:1; animation:none; }
  [data-wh-reveal] { opacity:1; transform:none; transition:none; }
}
.wh-product-form__option-btn.is-sold-out {
  opacity: 0.4;
  text-decoration: line-through;
  cursor: not-allowed;
  position: relative;
}
.wh-product-form__option-btn.is-sold-out::after {
  content: 'Out of stock';
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: var(--fg-muted);
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.wh-product-form__option-btn.is-sold-out {
  opacity: 0.45;
  cursor: not-allowed;
  position: relative;
  overflow: visible;
}
.wh-product-form__option-btn.is-sold-out::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1.5px;
  background: #e03535;
  transform: translateY(-50%);
  border-radius: 2px;
}
.product-card__sold-out-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.product-card__sold-out-badge {
  background: #e03535;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
}
.product-card__price--sold-out {
  color: var(--fg-muted);
  font-size: 13px;
}
.product-card--sold-out .product-card__image {
  opacity: 0.5;
}
.wh-product-page__color-overlay {
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: background 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
}
.wh-product-page__color-overlay.is-dark {
  mix-blend-mode: normal;
  opacity: 0.85 !important;
}
.wh-thumb-overlay {
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: background 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
}
.wh-product-page__main-image-wrap {
  position: relative;
}
.wh-product-page__thumb {
  position: relative;
}
.wh-contacts-page__hero {
  padding: 3rem 0 0;
}
.wh-contacts-page__tagline {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.wh-contacts-page__note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--border);
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.wh-collection-no-hero {
  padding: 32px 0 0;
}
.wh-collection-no-hero__title {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 8px 0 8px;
}
/* ============================================================
   POLICY PAGES (/policies/*)
   ============================================================ */
.shopify-policy__container {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.85;
}
.shopify-policy__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.shopify-policy__title + * {
  border-top: 2px solid var(--gold);
  padding-top: 2rem;
  margin-top: 1rem;
}
.shopify-policy__body p {
  margin-bottom: 1.25rem;
}
.shopify-policy__body strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2.5rem;
  margin-bottom: 0.6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.shopify-policy__body a {
  color: var(--gold);
  text-decoration: underline;
}
/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
#shopify-pc__banner {
  background: #111111 !important;
  border-top: 1px solid rgba(201,168,76,0.3) !important;
  color: #fff !important;
}
#shopify-pc__banner .shopify-pc__banner__heading {
  color: #fff !important;
  font-family: 'DM Sans', sans-serif !important;
}
#shopify-pc__banner p,
#shopify-pc__banner .shopify-pc__banner__body {
  color: rgba(255,255,255,0.6) !important;
  font-family: 'DM Sans', sans-serif !important;
}
#shopify-pc__banner a {
  color: #C9A84C !important;
}
#shopify-pc__banner .shopify-pc__btn--primary {
  background: #C9A84C !important;
  color: #000 !important;
  border: none !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 700 !important;
}
#shopify-pc__banner .shopify-pc__btn--secondary {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  font-family: 'DM Sans', sans-serif !important;
}
#shopify-pc__banner .shopify-pc__btn--secondary:hover {
  border-color: #C9A84C !important;
  color: #C9A84C !important;
}
.wh-footer__policies {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.wh-footer__policy-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.wh-footer__policy-link:hover { color: var(--gold); }
.wh-footer__policy-sep {
  color: var(--fg-subtle);
  font-size: 11px;
}
/* ============================================================
   SIZE GUIDE MODAL
   ============================================================ */
.wh-product-form__option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.wh-size-guide-trigger {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
  font-family: var(--font);
  transition: opacity var(--transition);
}
.wh-size-guide-trigger:hover { opacity: 0.75; }
.wh-size-guide-modal {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
}
.wh-size-guide-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.wh-size-guide-modal__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
  letter-spacing: 0.04em;
}
.wh-size-guide-modal__close {
  color: var(--fg-muted);
  font-size: 16px;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition);
}
.wh-size-guide-modal__close:hover { color: var(--fg); }
.wh-size-guide-modal__tabs {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.wh-size-guide-tab {
  padding: 0.4rem 1rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: none;
  color: var(--fg-muted);
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
}
.wh-size-guide-tab--active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.wh-size-guide-modal__content {
  padding: 1.25rem 1.5rem;
}
.wh-size-guide-modal__note {
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.wh-size-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 1rem;
}
.wh-size-guide-table th {
  text-align: left;
  padding: 0.5rem 0.75rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.wh-size-guide-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
}
.wh-size-guide-table tr:last-child td { border-bottom: none; }
.wh-size-guide-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.wh-size-guide-modal__tip {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 0.75rem;
  line-height: 1.6;
}
/* ============================================================
   PRODUCT CAROUSEL
   ============================================================ */
.wh-carousel {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.wh-carousel__track {
  position: relative;
  min-height: 0;
}
.wh-carousel__slide {
  display: none;
  animation: wh-fade-in 0.5s ease;
}
.wh-carousel__slide--active {
  display: block;
}
.wh-carousel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 640px) {
  .wh-carousel__inner { grid-template-columns: 1fr; gap: 1.5rem; }
}
.wh-carousel__image-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}
.wh-carousel__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
  transition: transform 0.4s ease;
}
.wh-carousel__slide--active .wh-carousel__image-wrap img:hover {
  transform: scale(1.03);
}
.wh-carousel__info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.wh-carousel__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}
.wh-carousel__type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.wh-carousel__name {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--fg);
  line-height: 1.2;
}
.wh-carousel__desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.wh-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}
.wh-carousel__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.wh-carousel__cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color var(--transition);
}
.wh-carousel__slide--active .wh-carousel__inner:hover .wh-carousel__cta {
  color: var(--gold);
}
.wh-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.wh-carousel__btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: none;
  color: var(--fg-muted);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-family: var(--font);
}
.wh-carousel__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.wh-carousel__dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.wh-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.wh-carousel__dot--active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}
/* More From The Pack */
.wh-more-from-pack { padding: 4rem 0; border-top: 1px solid var(--border); }
.wh-mfp__pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.25rem 0 2rem; }
.wh-mfp__pill { padding: 5px 14px; border: 1px solid var(--border); border-radius: 20px; font-size: 11px; color: var(--fg-muted); background: transparent; cursor: pointer; letter-spacing: 0.06em; transition: all var(--transition); }
.wh-mfp__pill--active, .wh-mfp__pill:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }
.wh-mfp__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) { .wh-mfp__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 580px) { .wh-mfp__grid { grid-template-columns: repeat(2, 1fr); } }
.wh-mfp__card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; text-decoration: none; transition: border-color var(--transition); display: block; }
.wh-mfp__card:hover { border-color: var(--border-gold); }
.wh-mfp__card-img { aspect-ratio: 1; background: #111; overflow: hidden; }
.wh-mfp__card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.wh-mfp__card:hover .wh-mfp__card-img img { transform: scale(1.04); }
.wh-mfp__card-info { padding: 10px 12px; }
.wh-mfp__card-name { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; color: var(--fg); margin-bottom: 4px; line-height: 1.3; }
.wh-mfp__card-price { font-size: 12px; color: var(--gold); font-weight: 600; }

.wh-product-shipping-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.wh-product-shipping-note a {
  color: var(--gold);
  text-decoration: none;
}
.wh-product-shipping-note a:hover { opacity: 0.7; }
}
.wh-section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0.5rem 0 2rem;
}
.product-card__dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 2;
}
.product-card__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.2s ease;
}
.product-card__dot--active {
  background: var(--gold);
}
.wh-mfp__card-wrap { display: block; }
.wh-mfp__card-wrap .product-card { height: 100%; }

/* Nation Filter Cards */
.wh-nation-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 480px) { .wh-nation-filter-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) { .wh-nation-filter-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1024px) { .wh-nation-filter-grid { grid-template-columns: repeat(6, 1fr); } }

.wh-nation-filter-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: border-color var(--transition), transform var(--transition);
  display: block;
  width: 100%;
}
.wh-nation-filter-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.wh-nation-filter-card--active {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 1px var(--gold), inset 0 0 0 1px rgba(201,168,76,0.15);
}

.wh-nation-filter-card__flag-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #1a1a1a;
}
.wh-nation-filter-card__flag-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.wh-nation-filter-card:hover .wh-nation-filter-card__flag-wrap img { transform: scale(1.06); }

.wh-nation-filter-card__all-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #0e0e0e 100%);
}
.wh-nation-filter-card__all-icon { font-size: 1.6rem; line-height: 1; }

.wh-nation-filter-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 55%);
  pointer-events: none;
}
.wh-nation-filter-card--active .wh-nation-filter-card__overlay {
  background: linear-gradient(to top, rgba(201,168,76,0.25) 0%, transparent 60%);
}

.wh-nation-filter-card__count {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  background: rgba(0,0,0,0.72);
  color: rgba(255,255,255,0.8);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.45rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}

.wh-nation-filter-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.65rem;
}
.wh-nation-filter-card__name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wh-nation-filter-card--active .wh-nation-filter-card__name { color: var(--gold); }
.wh-nation-filter-card__arrow {
  font-size: 11px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
  flex-shrink: 0;
  margin-left: 4px;
}
.wh-nation-filter-card:hover .wh-nation-filter-card__arrow,
.wh-nation-filter-card--active .wh-nation-filter-card__arrow { opacity: 1; transform: translateX(0); }
/* Nation Filter Cards — updated */
.wh-nation-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 480px) { .wh-nation-filter-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) { .wh-nation-filter-grid { grid-template-columns: repeat(5, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .wh-nation-filter-grid { grid-template-columns: repeat(6, 1fr); gap: 1.25rem; } }

.wh-nation-filter-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: border-color var(--transition), transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
.wh-nation-filter-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.wh-nation-filter-card--active {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 1px var(--gold), 0 12px 32px rgba(201,168,76,0.15);
}

.wh-nation-filter-card__flag-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1a1a1a;
}
.wh-nation-filter-card__flag-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.wh-nation-filter-card:hover .wh-nation-filter-card__flag-wrap img { transform: scale(1.08); }

.wh-nation-filter-card__all-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #0e0e0e 100%);
}
.wh-nation-filter-card__all-icon { font-size: 1.6rem; line-height: 1; }

.wh-nation-filter-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  pointer-events: none;
}
.wh-nation-filter-card--active .wh-nation-filter-card__overlay {
  background: linear-gradient(to top, rgba(201,168,76,0.3) 0%, transparent 60%);
}

.wh-nation-filter-card__count {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0,0,0,0.75);
  color: rgba(255,255,255,0.85);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.wh-nation-filter-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.8rem;
}
.wh-nation-filter-card__name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}
.wh-nation-filter-card--active .wh-nation-filter-card__name { color: var(--gold); }
.wh-nation-filter-card__arrow {
  font-size: 12px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
  flex-shrink: 0;
  margin-left: 6px;
}
.wh-nation-filter-card:hover .wh-nation-filter-card__arrow,
.wh-nation-filter-card--active .wh-nation-filter-card__arrow { opacity: 1; transform: translateX(0); }

.btn-pack {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #3a3a3a 0%, #1c1c1c 50%, #2a2a2a 100%);
  color: #f0f0f0;
  border: 1px solid rgba(255,255,255,0.35);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.2rem 5rem;
  border-radius: var(--radius);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
  box-shadow: 0 2px 0 rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -1px 0 rgba(0,0,0,0.4);
}
.btn-pack {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #3a3a3a 0%, #1c1c1c 50%, #2a2a2a 100%);
  color: #f0f0f0;
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.2rem 5rem;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
  box-shadow: 0 2px 0 rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -1px 0 rgba(0,0,0,0.4);
}
.btn-pack {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #222 0%, #0d0d0d 50%, #181818 100%);
  color: #e0e0e0;
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.2rem 5rem;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), inset 0 -1px 0 rgba(0,0,0,0.3);
}
.btn-pack::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: skewX(-15deg);
  transition: left 0.5s ease;
}
.btn-pack:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 40%, #2e2e2e 100%);
  border-color: rgba(255,255,255,0.55);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -1px 0 rgba(0,0,0,0.3);
  color: #fff;
}
.btn-pack:hover::before {
  left: 120%;
}

.wh-collection-no-hero__title--brand {
  background: linear-gradient(135deg, #e8e8e8 0%, #a0a0a0 30%, #d4d4d4 50%, #787878 70%, #c0c0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.wh-collection-no-hero__title--brand {
  position: relative;
  display: inline-block;
}
.wh-collection-no-hero__title--brand::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: skewX(-15deg);
  animation: titleGlare 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes titleGlare {
  0% { left: -100%; opacity: 1; }
  70% { left: 150%; opacity: 1; }
  85% { left: 160%; opacity: 0; }
  100% { left: 160%; opacity: 0; }
}