/* =========================================================
   Snus Village — Homepage V4
   Loaded alongside landing.css (which keeps the header/nav).
   All new classes are v4- prefixed to avoid conflicts.
   landing.css still provides: body padding-top (138px nav),
   header/nav styles, mega menu, .container utility.
   ========================================================= */

/* ---- V4 design tokens ---- */
:root {
  --v4-navy:   #071225;
  --v4-red:    #b41232;
  --v4-blue:   #123b8a;
  --v4-grey:   #f4f6fa;
  --v4-border: #e8ecf4;
  --v4-muted:  #6b7a99;
  --v4-sans:   'Montserrat', system-ui, sans-serif;
}

/* ---- Width utility ---- */
.v4-wrap { width: min(100% - 96px, 1280px); margin: 0 auto; }

/* ========================
   HEADER: HALF BLUE / HALF RED
   ======================== */
.header .navbar {
  background: linear-gradient(90deg, #123b8a 50%, #b41232 50%) !important;
  border-bottom: none !important;
  box-shadow: 0 4px 28px rgba(7, 18, 37, 0.3) !important;
  backdrop-filter: none !important;
}
/* Nav links — white on coloured background */
.header .nav-links a {
  color: rgba(255, 255, 255, 0.85) !important;
}
.header .nav-links a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.15) !important;
}
/* Logo text */
.header .logo a { color: #fff !important; }
.header .logo strong { color: #fff !important; }
.header .logo small { color: rgba(255, 255, 255, 0.75) !important; }
/* Search box — light border, white text */
.header .header-search {
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  background: rgba(255, 255, 255, 0.12) !important;
}
.header .header-search input {
  color: #fff !important;
}
.header .header-search input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* ---- Mega menu text fix ----
   The mega panel is white; grid links have near-white text which is invisible.
   Override to dark navy text on light grey tiles so they're legible. */
.header .nav-mega__grid a {
  color: var(--v4-navy) !important;
  background: var(--v4-grey) !important;
  border-color: var(--v4-border) !important;
}
.header .nav-mega__grid a:hover {
  color: var(--v4-red) !important;
  background: #ffffff !important;
  border-color: var(--v4-red) !important;
}
.header .nav-mega__grid a::after {
  color: var(--v4-red) !important;
}
/* Strength grid has nested strong/small — keep them readable */
.header .nav-mega__grid a strong { color: inherit !important; }
.header .nav-mega__grid a small  { color: var(--v4-muted) !important; }

/* ---- Page wrapper reset (no card-style shell in V4) ---- */
.v4-main { display: block; }

/* ---- Shared section header ---- */
.v4-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; gap: 24px; flex-wrap: wrap;
}
.v4-eyebrow {
  font-family: var(--v4-sans); font-size: 10px; font-weight: 800;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--v4-red);
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.v4-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--v4-red); flex-shrink: 0; }
.v4-section-head h2 {
  font-family: var(--v4-sans); font-size: clamp(26px, 3vw, 38px);
  font-weight: 800; color: var(--v4-navy); letter-spacing: -0.02em; margin: 0;
}
.v4-section-link {
  font-family: var(--v4-sans); font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--v4-red);
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--v4-red); padding-bottom: 2px;
  transition: gap .2s; white-space: nowrap; text-decoration: none;
}
.v4-section-link:hover { gap: 14px; }

/* ---- Shared buttons ---- */
.v4-btn-red {
  height: 52px; padding: 0 32px; background: var(--v4-red); color: #fff;
  border: none; font-family: var(--v4-sans); font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px; transition: background .2s;
  text-decoration: none; border-radius: 0;
}
.v4-btn-red:hover { background: #8a0d24; color: #fff; }

.v4-btn-navy {
  height: 52px; padding: 0 28px; background: transparent; color: var(--v4-navy);
  border: 2px solid var(--v4-navy); font-family: var(--v4-sans); font-size: 12px;
  font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px; transition: all .2s;
  text-decoration: none; border-radius: 0;
}
.v4-btn-navy:hover { background: var(--v4-navy); color: #fff; }

.v4-btn-white {
  height: 52px; padding: 0 32px; background: #fff; color: var(--v4-red);
  border: none; font-family: var(--v4-sans); font-size: 12px; font-weight: 900;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 10px; transition: background .2s;
  text-decoration: none; border-radius: 0;
}
.v4-btn-white:hover { background: var(--v4-grey); }

/* ========================
   HERO — centered slideshow (light theme, header red/blue)
   ======================== */
.v4-hero {
  position: relative;
  width: 100%;
  /* body has padding-top: 138px for the fixed navbar (landing.css) — subtract
     it so the hero + navbar together fill exactly one viewport, but cap it so
     the 1fr gaps around the (fixed-size) content don't balloon on tall/large
     monitors. */
  height: min(calc(100vh - 138px), 780px);
  min-height: 620px;
  overflow: hidden;
  background: #ffffff;
  display: flex; flex-direction: column;
}

/* Trust strip — same red as the header's right half */
.v4-hero__trust-strip {
  position: relative; z-index: 10;
  background: var(--v4-red); flex-shrink: 0;
  display: flex; justify-content: center; height: 36px; align-items: center;
}
.v4-hero__trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.2);
  font-family: var(--v4-sans); font-size: 9px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.92);
}
.v4-hero__trust-item:last-child { border-right: none; }

.v4-hero__slides { flex: 1; position: relative; }

.v4-hero__slide {
  position: absolute; inset: 0;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  padding: 20px 48px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.7s ease;
  /* Light hint of the header's blue + red, on white */
  background:
    radial-gradient(ellipse at 30% 30%, rgba(18,59,138,0.05), rgba(255,255,255,0) 45%),
    radial-gradient(ellipse at 70% 70%, rgba(180,18,50,0.05), rgba(255,255,255,0) 45%),
    #ffffff;
}
.v4-hero__slide.is-active { opacity: 1; pointer-events: auto; }

/* Admin-uploaded background photo, stretched full-bleed behind the slide content */
.v4-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.v4-hero__bg-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.82) 55%, #ffffff 100%);
}

/* Decorative ring behind image */
.v4-hero__ring {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.v4-hero__ring--1 { width: 500px; height: 500px; border: 1px solid rgba(18,59,138,0.06); }
.v4-hero__ring--2 { width: 360px; height: 360px; border: 1px solid rgba(180,18,50,0.09); }

.v4-hero__top { position: relative; z-index: 1; text-align: center; align-self: end; padding-bottom: 24px; }

.v4-hero__eyebrow {
  font-family: var(--v4-sans); font-size: 10px; font-weight: 800;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--v4-red);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 10px;
  opacity: 0; transform: translateY(20px);
}
.v4-hero__eyebrow::before,
.v4-hero__eyebrow::after { content: ''; width: 24px; height: 2px; background: var(--v4-red); flex-shrink: 0; }

.v4-hero__headline {
  font-family: var(--v4-sans);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 900; line-height: 1;
  letter-spacing: -0.03em; color: var(--v4-navy);
  opacity: 0; transform: translateY(24px);
}
.v4-hero__headline span { color: var(--v4-red); display: block; }

.v4-hero__image-wrap {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.v4-hero__img {
  height: clamp(180px, 24vh, 260px);
  object-fit: contain;
  filter: drop-shadow(0 0 50px rgba(180,18,50,0.18)) drop-shadow(0 28px 52px rgba(7,18,37,0.22));
  opacity: 0;
  transform: scale(0.85) translateY(20px);
}
.v4-hero__no-img {
  width: clamp(220px, 30vh, 340px);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: var(--v4-border);
}

.v4-hero__img-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  font-family: var(--v4-sans); font-size: 9px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; padding: 5px 14px; white-space: nowrap; z-index: 3;
  opacity: 0; transition: none;
}

.v4-hero__price-tag {
  position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
  background: var(--v4-navy); color: #fff;
  padding: 6px 18px; white-space: nowrap; z-index: 3;
  font-family: var(--v4-sans); font-size: 16px; font-weight: 900;
  opacity: 0; transition: none;
}

.v4-hero__bottom { position: relative; z-index: 1; text-align: center; align-self: start; padding-top: 24px; }

.v4-hero__desc {
  font-size: 13px; line-height: 1.6; color: rgba(7,18,37,0.55);
  max-width: 460px; margin: 0 auto 16px;
  opacity: 0; transform: translateY(16px);
}

.v4-hero__btns {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(14px);
}

.v4-hero__btn-ghost {
  height: 52px; padding: 0 26px; background: transparent; color: var(--v4-navy);
  border: 2px solid var(--v4-navy); font-family: var(--v4-sans); font-size: 11px;
  font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  transition: all .2s;
}
.v4-hero__btn-ghost:hover { background: var(--v4-navy); color: #fff; }

/* ── Active slide animations ── */
.v4-hero__slide.is-active .v4-hero__eyebrow {
  opacity: 1; transform: translateY(0);
  transition: opacity .6s ease .1s, transform .7s cubic-bezier(.22,1,.36,1) .1s;
}
.v4-hero__slide.is-active .v4-hero__headline {
  opacity: 1; transform: translateY(0);
  transition: opacity .7s ease .18s, transform .8s cubic-bezier(.22,1,.36,1) .18s;
}
.v4-hero__slide.is-active .v4-hero__img {
  opacity: 1; transform: scale(1) translateY(0);
  transition: opacity .7s ease .24s, transform .9s cubic-bezier(.22,1,.36,1) .24s;
}
.v4-hero__slide.is-active .v4-hero__img-badge {
  opacity: 1;
  transition: opacity .5s ease .5s;
}
.v4-hero__slide.is-active .v4-hero__price-tag {
  opacity: 1;
  transition: opacity .5s ease .52s;
}
.v4-hero__slide.is-active .v4-hero__desc {
  opacity: 1; transform: translateY(0);
  transition: opacity .6s ease .38s, transform .7s cubic-bezier(.22,1,.36,1) .38s;
}
.v4-hero__slide.is-active .v4-hero__btns {
  opacity: 1; transform: translateY(0);
  transition: opacity .6s ease .46s, transform .7s cubic-bezier(.22,1,.36,1) .46s;
}

/* ── Bottom thumbnail bar ── */
.v4-hero__bar {
  position: relative; z-index: 10; flex-shrink: 0;
  background: #ffffff;
  border-top: 1px solid var(--v4-border);
  display: flex; align-items: stretch;
  height: 80px;
}

.v4-hero__thumb {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 0 20px; cursor: pointer;
  border-right: 1px solid var(--v4-border); border-top: 2px solid transparent;
  transition: background .2s, border-top-color .2s;
  position: relative; overflow: hidden;
}
.v4-hero__thumb:last-child { border-right: none; }
.v4-hero__thumb:hover { background: rgba(7,18,37,0.03); }
.v4-hero__thumb.is-active { border-top-color: var(--v4-red); background: rgba(180,18,50,0.05); }

.v4-hero__thumb-fill {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: var(--v4-red); width: 0%;
}
.v4-hero__thumb.is-active .v4-hero__thumb-fill {
  transition: width 5000ms linear;
  width: 100%;
}

.v4-hero__thumb-img {
  width: 36px; height: 44px; object-fit: contain; flex-shrink: 0;
  opacity: 0.45; transition: opacity .2s;
}
.v4-hero__thumb.is-active .v4-hero__thumb-img,
.v4-hero__thumb:hover .v4-hero__thumb-img { opacity: 1; }

.v4-hero__thumb-brand {
  font-family: var(--v4-sans); font-size: 8px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--v4-red); margin-bottom: 2px;
}
.v4-hero__thumb-name {
  font-family: var(--v4-sans); font-size: 11px; font-weight: 700;
  color: rgba(7,18,37,0.4); transition: color .2s;
}
.v4-hero__thumb.is-active .v4-hero__thumb-name,
.v4-hero__thumb:hover .v4-hero__thumb-name { color: var(--v4-navy); }
.v4-hero__thumb-price {
  font-family: var(--v4-sans); font-size: 11px; font-weight: 800;
  color: rgba(7,18,37,0.25); transition: color .2s; margin-top: 2px;
}
.v4-hero__thumb.is-active .v4-hero__thumb-price,
.v4-hero__thumb:hover .v4-hero__thumb-price { color: var(--v4-blue); }

.v4-hero__bar-controls {
  display: flex; align-items: center; gap: 6px;
  padding: 0 20px; border-left: 1px solid var(--v4-border); flex-shrink: 0;
}
.v4-hero__arrow {
  width: 36px; height: 36px; background: var(--v4-grey);
  border: 1px solid var(--v4-border); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--v4-muted); transition: all .2s;
}
.v4-hero__arrow:hover { background: var(--v4-red); color: #fff; border-color: var(--v4-red); }
.v4-hero__counter {
  font-family: var(--v4-sans); font-size: 10px; font-weight: 800;
  color: var(--v4-muted); padding: 0 6px;
}
.v4-hero__counter em { font-style: normal; color: var(--v4-navy); font-size: 14px; }

/* ========================
   ANNOUNCEMENT STRIP
   ======================== */
.v4-strip { background: var(--v4-navy); overflow: hidden; white-space: nowrap; }
.v4-strip__track {
  display: inline-flex;
  animation: v4StripScroll 28s linear infinite;
}
.v4-strip__item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--v4-sans); font-size: 10px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); padding: 14px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.v4-strip__item i { color: var(--v4-red); }
@keyframes v4StripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========================
   BEST SELLERS
   ======================== */
.v4-products { background: #ffffff; padding: 80px 0; }

.v4-products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--v4-border);
}

.v4-product-card {
  background: #ffffff; display: flex; flex-direction: column;
  transition: background .2s; text-decoration: none; color: inherit;
}
.v4-product-card:hover { background: var(--v4-grey); }

.v4-product-card__img {
  position: relative; aspect-ratio: 1/1;
  background: var(--v4-grey);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.v4-product-card__img img {
  width: 65%; height: 65%; object-fit: contain;
  transition: transform .3s ease;
}
.v4-product-card:hover .v4-product-card__img img { transform: scale(1.05); }
.v4-product-card__img-none { font-size: 12px; color: var(--v4-muted); }

/* Strength colour bar (4px, bottom of image) */
.v4-sbar { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; }
.v4-sbar--low { background: #16a34a; }
.v4-sbar--medium { background: #2563eb; }
.v4-sbar--strong { background: #d97706; }
.v4-sbar--xstrong { background: #dc2626; }
.v4-sbar--extreme { background: linear-gradient(90deg, #7f1d1d, #dc2626); }

/* Strength badge (top-left, square) */
.v4-badge {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--v4-sans); font-size: 9px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; padding: 4px 8px;
}
.v4-badge--low     { background: #16a34a; }
.v4-badge--medium  { background: #2563eb; }
.v4-badge--strong  { background: #d97706; }
.v4-badge--xstrong { background: #dc2626; }
.v4-badge--extreme { background: #450a0a; outline: 1px solid #dc2626; }

.v4-sale-badge {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--v4-sans); font-size: 9px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: var(--v4-red); padding: 4px 8px;
}

.v4-product-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.v4-product-card__brand {
  font-family: var(--v4-sans); font-size: 9px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--v4-red); margin-bottom: 5px;
}
.v4-product-card__name {
  font-family: var(--v4-sans); font-size: 15px; font-weight: 800;
  color: var(--v4-navy); line-height: 1.2; flex: 1; margin-bottom: 14px;
}
.v4-product-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--v4-border);
}
.v4-product-card__price {
  font-family: var(--v4-sans); font-size: 19px; font-weight: 900; color: var(--v4-navy);
}
.v4-product-card__price-old {
  display: block; font-size: 11px; color: var(--v4-muted);
  text-decoration: line-through; font-weight: 500;
}
.v4-product-card__btn {
  font-family: var(--v4-sans); font-size: 10px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--v4-navy); padding: 9px 14px; cursor: pointer;
  transition: background .2s; text-decoration: none; display: inline-block;
}
.v4-product-card__btn:hover { background: var(--v4-red); color: #fff; }

.v4-empty-products {
  grid-column: 1 / -1; text-align: center;
  padding: 60px 24px; color: var(--v4-muted);
}
.v4-empty-products a { color: var(--v4-red); }

/* ========================
   RED CTA BAND
   ======================== */
.v4-cta-band { background: var(--v4-red); padding: 60px 0; }
.v4-cta-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.v4-cta-band h2 {
  font-family: var(--v4-sans); font-size: clamp(22px, 3vw, 36px);
  font-weight: 900; color: #fff; letter-spacing: -0.02em; max-width: 500px; margin: 0 0 8px;
}
.v4-cta-band p { font-size: 14px; color: rgba(255,255,255,0.75); max-width: 400px; margin: 0; }

/* ========================
   BRAND SHOWCASE
   ======================== */
.v4-brands { background: #ffffff; padding: 60px 0; border-bottom: 1px solid var(--v4-border); }
.v4-brands-row {
  display: flex; background: var(--v4-border); flex-wrap: nowrap;
  overflow-x: auto;
}
.v4-brand-card {
  flex: 1; min-width: 100px;
  padding: 22px 16px; background: #ffffff;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  border-right: 1px solid var(--v4-border); cursor: pointer;
  transition: background .2s; text-decoration: none;
}
.v4-brand-card:last-child { border-right: none; }
.v4-brand-card:hover { background: var(--v4-grey); }
.v4-brand-card--dark { background: var(--v4-navy); }
.v4-brand-card--dark:hover { background: #0d1e3d; }
.v4-brand-card__name {
  font-family: var(--v4-sans); font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--v4-navy);
  text-align: center;
}
.v4-brand-card--dark .v4-brand-card__name { color: #fff; }
.v4-brand-card__sub { font-size: 11px; color: var(--v4-muted); font-weight: 600; }
.v4-brand-card--dark .v4-brand-card__sub { color: var(--v4-red); }

/* ========================
   COLLECTIONS
   ======================== */
.v4-collections { background: var(--v4-grey); padding: 80px 0; }
.v4-collections .v4-wrap { margin-bottom: 0; }

.v4-coll-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1px; background: var(--v4-border); margin-top: 40px;
}
.v4-coll-card {
  position: relative; overflow: hidden; min-height: 380px;
  display: flex; align-items: flex-end;
}
.v4-coll-card__bg {
  position: absolute; inset: 0;
  background-size: cover !important; background-position: center !important;
  transition: transform .5s ease;
}
.v4-coll-card:hover .v4-coll-card__bg { transform: scale(1.04); }
.v4-coll-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,18,37,0.92) 0%, rgba(7,18,37,0.3) 50%, rgba(7,18,37,0.05) 100%);
}
.v4-coll-card__body { position: relative; z-index: 2; padding: 28px; width: 100%; }
.v4-coll-card__num {
  font-family: var(--v4-sans); font-size: 10px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--v4-red); margin-bottom: 8px;
}
.v4-coll-card h3 {
  font-family: var(--v4-sans); font-size: clamp(17px, 2vw, 26px);
  font-weight: 800; color: #fff; line-height: 1.15; margin: 0 0 8px;
}
.v4-coll-card p {
  font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.6;
  margin: 0 0 16px; max-width: 28ch; display: none;
}
.v4-coll-card--main p { display: block; }
.v4-coll-link {
  font-family: var(--v4-sans); font-size: 10px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase; color: #fff;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
/* Fallback colour gradients if no image provided */
/* Use background-image (not background shorthand) so background-size/position are not reset */
.v4-coll-c1 .v4-coll-card__bg { background-image: linear-gradient(135deg,#0a1f52,#153fb8 60%,#0d2f86); }
.v4-coll-c2 .v4-coll-card__bg { background-image: linear-gradient(135deg,#1b5e20,#2e7d32); }
.v4-coll-c3 .v4-coll-card__bg { background-image: linear-gradient(135deg,#4a0010,#b41232); }
.v4-coll-c4 .v4-coll-card__bg { background-image: linear-gradient(135deg,#0c3347,#0d47a1); }

/* ========================
   LOCATIONS
   ======================== */
.v4-locations { background: #ffffff; padding: 80px 0; }
.v4-loc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--v4-border); margin-top: 40px;
}
.v4-loc-card { background: #ffffff; overflow: hidden; transition: background .2s; }
.v4-loc-card:hover { background: var(--v4-grey); }
.v4-loc-card__map { width: 100%; height: 180px; border: 0; display: block; }
.v4-loc-card__body { padding: 24px; }
.v4-loc-card__label {
  font-family: var(--v4-sans); font-size: 9px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--v4-red); margin-bottom: 6px;
}
.v4-loc-card h3 {
  font-family: var(--v4-sans); font-size: 22px; font-weight: 800;
  color: var(--v4-navy); margin: 0 0 8px;
}
.v4-loc-card p { font-size: 13px; color: var(--v4-muted); line-height: 1.6; margin: 0 0 16px; }
.v4-loc-card__link {
  font-family: var(--v4-sans); font-size: 10px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--v4-red);
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}

/* DISTRO */
.v4-distro {
  background: var(--v4-navy); margin-top: 1px;
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
}
.v4-distro__copy { padding: 52px; display: flex; flex-direction: column; justify-content: center; }
.v4-distro__eyebrow {
  font-family: var(--v4-sans); font-size: 9px; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--v4-red);
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.v4-distro__eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--v4-red); flex-shrink: 0; }
.v4-distro__copy h3 {
  font-family: var(--v4-sans); font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800; color: #fff; margin: 0 0 10px; letter-spacing: -0.02em;
}
.v4-distro__addr {
  font-family: var(--v4-sans); font-size: 11px; font-weight: 700;
  color: var(--v4-red); letter-spacing: 0.08em; text-transform: uppercase;
  border-left: 3px solid var(--v4-red); padding-left: 12px; margin-bottom: 14px;
}
.v4-distro__copy p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; margin: 0 0 24px; }
.v4-distro__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.v4-distro__badge {
  font-family: var(--v4-sans); font-size: 9px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 12px; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.65);
}
.v4-distro__visual {
  background: linear-gradient(135deg, #0d1e3d 0%, #071225 60%);
  display: flex; align-items: center; justify-content: center; min-height: 300px;
  position: relative; overflow: hidden;
}
.v4-distro__visual::before {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(180,18,50,0.15), transparent 60%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.v4-distro__visual-inner { position: relative; z-index: 2; text-align: center; }
.v4-distro__visual-title {
  font-family: var(--v4-sans); font-size: 32px; font-weight: 900;
  color: #fff; letter-spacing: -0.02em; margin-bottom: 6px; line-height: 1.1;
}
.v4-distro__visual-sub {
  font-family: var(--v4-sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--v4-red);
}

/* ========================
   SOCIAL SHOWCASE
   ======================== */
.v4-social { background: var(--v4-grey); padding: 80px 0; }
.v4-social__inner {
  display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center;
}
.v4-social__copy h2 {
  font-family: var(--v4-sans); font-size: clamp(26px, 3vw, 38px);
  font-weight: 800; color: var(--v4-navy); letter-spacing: -0.02em; margin: 0 0 14px;
}
.v4-social__copy h2 span { color: var(--v4-red); }
.v4-social__copy > p {
  font-size: 14px; color: var(--v4-muted); line-height: 1.75; margin: 0 0 28px;
}
.v4-social__points { display: grid; gap: 10px; margin-bottom: 32px; }
.v4-social__point {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; background: #ffffff; border-left: 3px solid var(--v4-red);
}
.v4-social__point-icon {
  width: 32px; height: 32px; background: var(--v4-red); color: #fff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.v4-social__point strong {
  display: block; font-family: var(--v4-sans); font-size: 13px; font-weight: 800;
  color: var(--v4-navy); margin-bottom: 3px;
}
.v4-social__point span { font-size: 12px; color: var(--v4-muted); line-height: 1.5; }
.v4-social__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ========================
   WHY US
   ======================== */
.v4-why { background: #ffffff; padding: 80px 0; }
.v4-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--v4-border); margin-top: 40px;
}
.v4-why-card { background: #ffffff; padding: 36px 32px; transition: background .2s; }
.v4-why-card:hover { background: var(--v4-grey); }
.v4-why-card--red { background: var(--v4-red); }
.v4-why-card--red:hover { background: #8a0d24; }
.v4-why-card--navy { background: var(--v4-navy); }
.v4-why-card--navy:hover { background: #0d1e3d; }
.v4-why-card__icon {
  width: 44px; height: 44px; background: var(--v4-red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--v4-sans); font-size: 13px; font-weight: 900;
  margin-bottom: 20px;
}
.v4-why-card--red .v4-why-card__icon { background: rgba(255,255,255,0.2); }
.v4-why-card--navy .v4-why-card__icon { background: var(--v4-red); }
.v4-why-card h3 {
  font-family: var(--v4-sans); font-size: 16px; font-weight: 800;
  color: var(--v4-navy); margin: 0 0 10px; letter-spacing: -0.01em;
}
.v4-why-card--red h3, .v4-why-card--navy h3 { color: #fff; }
.v4-why-card p { font-size: 13px; color: var(--v4-muted); line-height: 1.7; margin: 0; }
.v4-why-card--red p { color: rgba(255,255,255,0.8); }
.v4-why-card--navy p { color: rgba(255,255,255,0.6); }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1100px) {
  .v4-wrap { width: min(100% - 48px, 1280px); }
  .v4-products-grid { grid-template-columns: repeat(2, 1fr); }
  .v4-coll-grid { grid-template-columns: 1fr 1fr; }
  .v4-distro { grid-template-columns: 1fr; }
  .v4-social__inner { grid-template-columns: 1fr; }
  .v4-cta-band__inner { flex-direction: column; align-items: flex-start; }
  .v4-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .v4-wrap { width: min(100% - 32px, 1280px); }
  .v4-products-grid { grid-template-columns: 1fr 1fr; }
  .v4-why-grid { grid-template-columns: 1fr; }
  .v4-loc-grid { grid-template-columns: 1fr; }
  .v4-coll-grid { grid-template-columns: 1fr; }
  .v4-brands-row { flex-wrap: wrap; }
  .v4-brand-card { flex-basis: calc(50% - 1px); }
  .v4-distro__copy { padding: 36px 24px; }
  .v4-section-head { flex-direction: column; align-items: flex-start; gap: 12px; }

  .v4-hero { height: auto; overflow-x: hidden; overflow-y: visible; }
  .v4-hero__slides { min-height: 560px; }
  .v4-hero__ring--1 { width: 280px; height: 280px; }
  .v4-hero__ring--2 { width: 200px; height: 200px; }
  .v4-hero__trust-item { padding: 0 12px; font-size: 8px; }
  .v4-hero__trust-item:nth-child(3), .v4-hero__trust-item:nth-child(4) { display: none; }
  .v4-hero__slide { padding: 20px 24px; grid-template-rows: auto auto auto; gap: 6px; }
  .v4-hero__headline { font-size: 32px; }
  .v4-hero__eyebrow { margin-bottom: 4px; }
  .v4-hero__img, .v4-hero__no-img { height: 170px; }
  .v4-hero__desc { font-size: 12px; margin-bottom: 10px; }
  .v4-hero__btns { gap: 8px; }
  .v4-hero__bar { height: auto; flex-wrap: wrap; }
  .v4-hero__thumb { min-width: 50%; padding: 12px 16px; height: 64px; border-top-width: 0; border-bottom: 2px solid transparent; }
  .v4-hero__thumb.is-active { border-bottom-color: var(--v4-red); border-top-color: transparent; }
  .v4-hero__bar-controls { padding: 0 12px; min-width: 100%; justify-content: center; border-left: none; border-top: 1px solid var(--v4-border); height: 44px; }
}

@media (max-width: 480px) {
  .v4-products-grid { grid-template-columns: 1fr; }
  .v4-coll-grid { grid-template-columns: 1fr; }

  .v4-hero__headline { font-size: 30px; }
  .v4-hero__btns { flex-direction: column; align-items: center; }
  .v4-hero__btns .v4-btn-red, .v4-hero__btn-ghost { width: 100%; max-width: 300px; justify-content: center; }
  .v4-hero__trust-strip { display: none; }
}
