/* ══════════════════════════════════════════════════════════════
   HOME LAYOUT 3 — STREETWEAR BOLD
   Block-based, high-contrast, youthful. Syne + Manrope.
   Accent = theme var(--red) so it recolours with the colour themes.
   ══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Syne:wght@600;700;800&display=swap');

.sw {
  --sw-ink: #0d0d0d;
  --sw-disp: 'Syne', sans-serif;
  --sw-sans: 'Manrope', var(--font-main), sans-serif;
  font-family: var(--sw-sans);
  color: var(--sw-ink);
  overflow-x: hidden;
}
.sw .sw-badge {
  display: inline-block; font-family: var(--sw-sans);
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  color: var(--red); margin-bottom: 16px;
}
.sw .sw-badge--light { color: #fff; }
.sw .sw-btn {
  display: inline-block; font-family: var(--sw-disp);
  font-size: 14px; font-weight: 800; letter-spacing: 1px;
  padding: 16px 32px; background: var(--sw-ink); color: #fff;
  text-decoration: none; border-radius: 0; transition: all .2s ease;
  border: 2.5px solid var(--sw-ink);
}
.sw .sw-btn:hover { background: var(--red); border-color: var(--red); color: #111; transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--sw-ink); }
.sw .sw-btn--ghost { background: transparent; color: var(--sw-ink); }
.sw .sw-btn--ghost:hover { background: var(--sw-ink); color: #fff; box-shadow: 5px 5px 0 var(--red); }
.sw .sw-btn--invert { background: #fff; color: #111; border-color: #fff; }
.sw .sw-btn--invert:hover { background: var(--red); border-color: var(--red); box-shadow: 5px 5px 0 #fff; }

/* ── Ticker ───────────────────────────────────────────── */
.sw-ticker { background: var(--sw-ink); color: #fff; overflow: hidden; padding: 12px 0; border-bottom: 3px solid var(--red); }
.sw-ticker-track { display: flex; gap: 26px; width: max-content; align-items: center; animation: swTick 26s linear infinite; white-space: nowrap; }
.sw-ticker-track span { font-family: var(--sw-disp); font-weight: 800; font-size: 15px; letter-spacing: 2px; }
.sw-ticker-track b { color: var(--red); }
@keyframes swTick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Hero banner (centered, below carousel) ───────────── */
.sw-hero { text-align: center; background: #f4f4f4; padding: clamp(38px,6vw,68px) 24px; }
.sw-hero-title { font-family: var(--sw-disp); font-weight: 800; font-size: clamp(44px,9vw,104px); line-height: .92; letter-spacing: -2px; margin: 0 0 16px; text-transform: uppercase; }
.sw-hero-title span { color: var(--red); -webkit-text-stroke: 2px var(--sw-ink); }
.sw-hero-sub { font-size: 16px; font-weight: 500; line-height: 1.6; color: #333; max-width: 440px; margin: 0 auto 26px; }
.sw-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.sw .hs.hs--sw { border-bottom: 4px solid var(--sw-ink); }

/* ── Category blocks ──────────────────────────────────── */
.sw-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: var(--sw-ink); }
.sw-cat { position: relative; height: clamp(360px, 46vw, 560px); overflow: hidden; text-decoration: none; display: block; background: #1a1a1a; }
.sw-cat img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s ease; }
.sw-cat:hover img { transform: scale(1.05); }
.sw-cat--sale { background: var(--red); }
/* sale tile: tint the image with the accent so the SALE text stays punchy */
.sw-cat--sale img { filter: none; mix-blend-mode: luminosity; opacity: .5; }
.sw-cat-num { position: absolute; top: 18px; left: 20px; font-family: var(--sw-disp); font-weight: 800; font-size: 44px; color: rgba(255,255,255,.9); z-index: 2; }
.sw-cat--sale .sw-cat-num { color: #111; z-index: 2; }
.sw-cat-label { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(16px,4vw,30px); color: #fff; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.7) 100%); z-index: 2; }
.sw-cat--sale .sw-cat-label { color: #111; background: linear-gradient(180deg, transparent 40%, color-mix(in srgb, var(--red) 55%, transparent) 100%); }
.sw-cat-label h3 { font-family: var(--sw-disp); font-weight: 800; font-size: clamp(20px,4vw,48px); line-height: .95; margin: 0 0 8px; text-transform: uppercase; white-space: nowrap; }
.sw-cat-label span { font-weight: 800; font-size: 14px; letter-spacing: 1px; }

/* ── Sections & grid ──────────────────────────────────── */
.sw-section { padding: clamp(36px,5vw,64px) clamp(20px,5vw,70px); }
.sw-sec-head { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; border-bottom: 3px solid var(--sw-ink); padding-bottom: 14px; }
.sw-sec-title { font-family: var(--sw-disp); font-weight: 800; font-size: clamp(24px,4vw,40px); margin: 0; text-transform: uppercase; letter-spacing: -.5px; }
.sw-sec-title--sm { font-size: clamp(20px,3vw,30px); }
.sw-sec-link { margin-left: auto; font-family: var(--sw-disp); font-weight: 800; font-size: 13px; letter-spacing: 1px; color: #fff; background: var(--sw-ink); padding: 9px 18px; text-decoration: none; transition: background .2s; }
.sw-sec-link:hover { background: var(--red); color: #111; }
.sw-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }

/* Streetwear card styling (chunky, on-theme) */
.sw .product-card { border: 2.5px solid var(--sw-ink); border-radius: 0; background: #fff; box-shadow: none; transition: transform .18s, box-shadow .18s; }
.sw .product-card:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--red); }
.sw .product-img-wrap { border-radius: 0; }
.sw .product-info { padding: 12px; }
.sw .product-brand { font-family: var(--sw-disp); font-weight: 800; font-size: 10px; letter-spacing: 1px; color: #999; }
.sw .product-name { font-weight: 700; font-size: 14px; color: var(--sw-ink); }
.sw .price-current { font-family: var(--sw-disp); font-weight: 800; color: var(--sw-ink); }
.sw .product-badge { border-radius: 0; font-family: var(--sw-disp); font-weight: 800; letter-spacing: 1px; }

/* ── Promo strip ──────────────────────────────────────── */
.sw-promo { background: var(--sw-ink); background-size: cover; background-position: center; color: #fff; padding: clamp(60px,9vw,110px) 24px; text-align: center; border-top: 4px solid var(--red); border-bottom: 4px solid var(--red); }
.sw-promo h3 { font-family: var(--sw-disp); font-weight: 800; font-size: clamp(28px,5vw,58px); line-height: 1; margin: 0 0 28px; text-transform: uppercase; }
.sw-promo h3 span { color: var(--red); -webkit-text-stroke: 1.5px #fff; }

/* ── Features ─────────────────────────────────────────── */
.sw-features { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; background: var(--sw-ink); }
.sw-feat { background: #fff; padding: 26px 14px; text-align: center; }
.sw-feat b { display: block; font-size: 26px; margin-bottom: 8px; }
.sw-feat span { font-family: var(--sw-disp); font-weight: 800; font-size: 12px; letter-spacing: 1px; }

/* ── Newsletter ───────────────────────────────────────── */
.sw-news { background: var(--red); color: #111; text-align: center; padding: clamp(50px,7vw,80px) 24px; }
.sw-news h3 { font-family: var(--sw-disp); font-weight: 800; font-size: clamp(30px,5vw,54px); margin: 0 0 8px; text-transform: uppercase; }
.sw-news p { font-weight: 600; margin: 0 0 26px; }
.sw-news-form { display: flex; gap: 0; max-width: 460px; margin: 0 auto; border: 3px solid #111; }
.sw-news-form input { flex: 1; padding: 15px 18px; border: none; font-family: var(--sw-sans); font-weight: 600; font-size: 14px; background: #fff; }
.sw-news-form input:focus { outline: none; }
.sw-news-form button { background: #111; color: #fff; border: none; padding: 15px 24px; font-family: var(--sw-disp); font-weight: 800; letter-spacing: 1px; cursor: pointer; transition: background .2s; }
.sw-news-form button:hover { background: #333; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .sw-cats { grid-template-columns: 1fr 1fr; }
  .sw-cat { height: auto; aspect-ratio: 3/4; }
  .sw-grid { grid-template-columns: repeat(2,1fr); }
  .sw-features { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .sw-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .sw-news-form { flex-direction: column; }
}
