/* ============================================================
   ONEWAY 91ST STREET — Brand Stylesheet
   Design: Dark Streetwear Editorial
   Fonts: Bebas Neue (display) + Barlow Condensed (sub) + DM Sans (body)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@300;400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap");

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --bg: #080808;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --accent: #fff;
  --accent2: #ff3c3c;
  --text: #f0f0f0;
  --muted: #888888;
  --border: #2a2a2a;
  --card-bg: #141414;
  --font-disp: "Bebas Neue", sans-serif;
  --font-sub: "Barlow Condensed", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --radius: 2px;
  --trans: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Grain overlay on body */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ── Typography ──────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-disp);
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--text);
}

p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.95rem;
}

.font-sub {
  font-family: var(--font-sub);
}
.font-disp {
  font-family: var(--font-disp);
}

.display-mega {
  font-family: var(--font-disp);
  font-size: clamp(5rem, 15vw, 14rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--text);
}

.section-label {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Links & Buttons ─────────────────────────────────────── */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans);
}
a:hover {
  color: var(--accent);
}

.btn-brand {
  display: inline-block;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2.5rem;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    background var(--trans),
    transform var(--trans),
    box-shadow var(--trans);
  position: relative;
  overflow: hidden;
}
.btn-brand::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity var(--trans);
}
.btn-brand:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 255, 60, 0.25);
}
.btn-brand:hover::after {
  opacity: 1;
}

.btn-outline-brand {
  display: inline-block;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2.5rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--trans);
}
.btn-outline-brand:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ── Navbar ──────────────────────────────────────────────── */
.brand-nav {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition:
    background var(--trans),
    padding var(--trans),
    backdrop-filter var(--trans);
}
.brand-nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.brand-nav .navbar-brand {
  font-family: var(--font-disp);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--text);
}
.brand-nav .navbar-brand span {
  color: var(--accent);
}

.brand-nav .nav-link {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted) !important;
  padding: 0.25rem 1rem !important;
  transition: color var(--trans);
  position: relative;
}
.brand-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--trans);
}
.brand-nav .nav-link:hover,
.brand-nav .nav-link.active {
  color: var(--text) !important;
}
.brand-nav .nav-link:hover::after,
.brand-nav .nav-link.active::after {
  transform: scaleX(1);
}

.nav-cart-btn {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--accent);
  color: #000;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--trans);
}
.nav-cart-btn:hover {
  background: #fff;
  color: #000;
}
.cart-count {
  background: #000;
  color: var(--accent);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.navbar-toggler {
  border: 1px solid var(--border);
  padding: 0.4rem 0.6rem;
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 6rem;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video,
.hero-video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Replace video with placeholder gradient if no video */
.hero-video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.95) 0%,
    rgba(8, 8, 8, 0.5) 50%,
    rgba(8, 8, 8, 0.2) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  z-index: 3;
}
.hero-ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}
.hero-ticker span {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  padding: 0 2rem;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── Section Styles ──────────────────────────────────────── */
.section-pad {
  padding: 7rem 0;
}
.section-pad-sm {
  padding: 4rem 0;
}

.divider-accent {
  width: 3rem;
  height: 3px;
  background: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

/* ── Product Cards ───────────────────────────────────────── */
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform var(--trans),
    border-color var(--trans),
    box-shadow var(--trans);
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.product-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg3);
}
.product-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card .card-img-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition:
    opacity 0.4s ease,
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .card-img-wrap img {
  transform: scale(1.04);
  opacity: 1;
}
.product-card:hover .card-img-back {
  opacity: 1;
  transform: scale(1.04);
}

.product-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.9), transparent);
  transform: translateY(100%);
  transition: transform var(--trans);
  display: flex;
  gap: 0.5rem;
}
.product-card:hover .card-overlay {
  transform: translateY(0);
}

.product-card .card-body {
  padding: 1.25rem;
}
.product-card .card-label {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.product-card .card-name {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.product-card .card-price {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.product-card .card-price .old-price {
  text-decoration: line-through;
  color: var(--muted);
  margin-right: 0.5rem;
  font-weight: 400;
}

.badge-new,
.badge-sale {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius);
  z-index: 2;
}
.badge-new {
  background: var(--accent);
  color: #000;
}
.badge-sale {
  background: var(--accent2);
  color: #fff;
}

/* ── Filters ─────────────────────────────────────────────── */
.filter-btn {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--trans);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

/* ── Testimonials ────────────────────────────────────────── */
.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}
.testi-card::before {
  content: '"';
  font-family: var(--font-disp);
  font-size: 6rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.testi-stars {
  color: var(--accent);
  letter-spacing: 0.1em;
}
.testi-name {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Values/Stats ────────────────────────────────────────── */
.value-card {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.value-card h4 {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.stat-num {
  font-family: var(--font-disp);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--accent);
}
.stat-label {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Newsletter ──────────────────────────────────────────── */
.newsletter-section {
  background: var(--accent);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: "JOIN";
  font-family: var(--font-disp);
  font-size: 20rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.05);
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.newsletter-section h2 {
  color: #000;
}
.newsletter-section p {
  color: rgba(0, 0, 0, 0.7);
}
.newsletter-input {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #000;
  font-family: var(--font-body);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
  flex: 1;
}
.newsletter-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.newsletter-input:focus {
  border-color: #000;
}
.newsletter-submit {
  background: #000;
  color: var(--accent);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  transition: background var(--trans);
}
.newsletter-submit:hover {
  background: #1a1a1a;
}

/* ── Footer ──────────────────────────────────────────────── */
.brand-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding-top: 5rem;
}
.footer-logo {
  font-family: var(--font-disp);
  font-size: 2rem;
  letter-spacing: 0.08em;
}
.footer-logo span {
  color: var(--accent);
}
.footer-tagline {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}
.footer-heading {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted);
  transition: color var(--trans);
}
.footer-links a:hover {
  color: var(--text);
}

.social-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  transition: all var(--trans);
}
.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  margin-top: 4rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--font-sub);
  letter-spacing: 0.08em;
}

/* ── Forms ───────────────────────────────────────────────── */
.brand-form .form-control,
.brand-form .form-select {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  padding: 0.85rem 1rem;
  transition: border-color var(--trans);
}
.brand-form .form-control:focus,
.brand-form .form-select:focus {
  background: var(--bg3);
  border-color: var(--accent);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(232, 255, 60, 0.1);
}
.brand-form .form-control::placeholder {
  color: var(--muted);
}
.brand-form label {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.brand-form .form-select option {
  background: var(--bg3);
}

/* ── Cart ────────────────────────────────────────────────── */
.cart-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  transition: border-color var(--trans);
}
.cart-item:hover {
  border-color: var(--accent);
}
.cart-item img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.qty-btn {
  width: 30px;
  height: 30px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--trans);
  font-size: 1rem;
  font-family: var(--font-disp);
}
.qty-btn:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.qty-num {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1rem;
  width: 2rem;
  text-align: center;
}

.order-summary-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: sticky;
  top: 6rem;
}
.order-line {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sub);
  font-size: 0.875rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}
.order-line:last-child {
  border-bottom: none;
}
.order-line.total {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}
.order-line .val {
  color: var(--text);
}
.promo-input {
  border-radius: var(--radius) 0 0 var(--radius) !important;
}
.promo-btn {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  transition: all var(--trans);
}
.promo-btn:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

/* ── Product Detail ──────────────────────────────────────── */
.gallery-main {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg3);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--trans);
}
.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--accent);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.size-btn {
  width: 48px;
  height: 48px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--trans);
}
.size-btn:hover,
.size-btn.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.size-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    border-color var(--trans),
    transform var(--trans);
}
.color-swatch.active,
.color-swatch:hover {
  border-color: var(--accent);
  transform: scale(1.1);
}

/* ── About Page ──────────────────────────────────────────── */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  background: var(--bg3);
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover img {
  transform: scale(1.04);
}
.team-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.95), transparent);
}
.team-card-info h5 {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.team-card-info span {
  font-size: 0.75rem;
  color: var(--accent);
  font-family: var(--font-sub);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Page Header ─────────────────────────────────────────── */
.page-header {
  padding: 10rem 0 5rem;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: attr(data-bg-text);
  font-family: var(--font-disp);
  font-size: clamp(4rem, 12vw, 10rem);
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  right: 0;
  bottom: -1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
  white-space: nowrap;
}
.page-title {
  font-family: var(--font-disp);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact-info-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border-radius: var(--radius);
}

/* ── Privacy Policy ──────────────────────────────────────── */
.policy-content h3 {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}
.policy-content ul {
  padding-left: 1.25rem;
}
.policy-content li {
  margin-bottom: 0.4rem;
}
.policy-content strong {
  color: var(--text);
}

/* ── Modals ──────────────────────────────────────────────── */
.modal-content {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.modal-header {
  border-bottom: 1px solid var(--border);
}
.modal-footer {
  border-top: 1px solid var(--border);
}
.btn-close {
  filter: invert(1);
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  margin: 0;
}
.breadcrumb-item {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.breadcrumb-item a {
  color: var(--muted);
}
.breadcrumb-item a:hover {
  color: var(--accent);
}
.breadcrumb-item.active {
  color: var(--muted);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--border);
  content: "›";
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideRight {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.anim-fadeup {
  animation: fadeUp 0.7s var(--trans) both;
}
.anim-fadein {
  animation: fadeIn 0.8s ease both;
}
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.25s;
}
.delay-3 {
  animation-delay: 0.4s;
}
.delay-4 {
  animation-delay: 0.6s;
}

/* ── Scroll indicator ────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 4.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.scroll-text {
  font-family: var(--font-sub);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-lr;
}

/* ── Checkout Steps ──────────────────────────────────────── */
.checkout-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.step-num {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--muted);
  flex-shrink: 0;
}
.step-num.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}
.step-label {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.step-divider {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Map placeholder ─────────────────────────────────────── */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
.map-placeholder i {
  font-size: 2rem;
  color: var(--accent);
}
.map-placeholder p {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Category Banner ─────────────────────────────────────── */
.cat-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16/7;
  background: var(--bg3);
}
.cat-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-banner:hover img {
  transform: scale(1.04);
}
.cat-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 8, 8, 0.7) 0%,
    rgba(8, 8, 8, 0.2) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.cat-banner-overlay h3 {
  font-family: var(--font-disp);
  font-size: 2.5rem;
}

.cat-from-price-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.5);
}
/* ── Misc ────────────────────────────────────────────────── */
.text-accent {
  color: var(--accent) !important;
}
.text-muted-brand {
  color: var(--muted) !important;
}
.bg-card {
  background: var(--card-bg) !important;
}
.border-brand {
  border-color: var(--border) !important;
}
.border-accent {
  border-color: var(--accent) !important;
}

hr.brand-hr {
  border-color: var(--border);
  opacity: 1;
}

/* Carousel custom */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: none;
}
.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all var(--trans);
}
.carousel-control-prev {
  left: -1rem;
}
.carousel-control-next {
  right: -1rem;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(1) brightness(0);
}
.carousel-indicators button {
  background: var(--border);
  width: 24px;
  height: 2px;
}
.carousel-indicators .active {
  background: var(--accent);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .section-pad {
    padding: 4rem 0;
  }
  .page-header {
    padding: 8rem 0 3rem;
  }
  .cart-item {
    flex-wrap: wrap;
  }
  .cart-item img {
    width: 60px;
    height: 75px;
  }
  .hero-ticker {
    display: none;
  }
}

@media (max-width: 576px) {
  .display-mega {
    font-size: clamp(3.5rem, 18vw, 6rem);
  }
  .hero {
    padding-bottom: 3rem;
  }
}

.page-link {
  background: var(--bg3);
  border-color: var(--border);
  color: var(--muted);
  border-radius: 2px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}

.page-item.active .page-link {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

#ow-notification-container {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.ow-notification {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.1rem;
  min-width: 280px;
  max-width: 380px;
  border-radius: 2px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  border-left: 3px solid transparent;
  cursor: pointer;

  opacity: 0;
  transform: translateX(16px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.ow-notification--visible {
  opacity: 1;
  transform: translateX(0);
}

.ow-notification--success {
  background: #0d1a0d;
  border-color: #e8ff3c;
  color: #e8ff3c;
}
.ow-notification--success .ow-notif-icon::before {
  content: "✓";
}

.ow-notification--error {
  background: #1a0d0d;
  border-color: #ff3c3c;
  color: #ff3c3c;
}
.ow-notification--error .ow-notif-icon::before {
  content: "✕";
}

.ow-notification--info {
  background: #111;
  border-color: #888;
  color: #ccc;
}
.ow-notification--info .ow-notif-icon::before {
  content: "i";
  font-style: italic;
}

.ow-notification--warning {
  background: #1a1500;
  border-color: #f0b429;
  color: #f0b429;
}
.ow-notification--warning .ow-notif-icon::before {
  content: "!";
}

.ow-notif-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.ow-notif-message {
  flex: 1;
}

.ow-notif-close {
  background: none;
  border: none;
  color: inherit;
  opacity: 0.5;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.ow-notif-close:hover {
  opacity: 1;
}

@media (max-width: 576px) {
  #ow-notification-container {
    top: auto;
    bottom: 1.25rem;
    left: 1rem;
    right: 1rem;
  }
  .ow-notification {
    min-width: auto;
    max-width: 100%;
    transform: translateY(8px);
  }
  .ow-notification--visible {
    transform: translateY(0);
  }
}

.toc {
  position: sticky;
  top: 5.5rem;
}
.toc-link {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.4rem 0 0.4rem 1rem;
  border-left: 2px solid var(--border);
  transition: all var(--trans);
}
.toc-link:hover {
  color: var(--accent);
  border-left-color: var(--accent);
}

.accent-block-decorator {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  background: var(--accent);
  border-radius: 2px;
}

/* ── Quick View modal — variant area ─────────────────────── */
#qv-colors {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
#qv-sizes {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Disabled Add-to-Cart button inside QV */
/* Disabled size buttons in the QV modal — truly unclickable */
#qv-sizes .size-btn.disabled,
#qv-sizes .size-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed !important;
  pointer-events: none;
  text-decoration: line-through;
}

#qv-add-cart.btn-disabled,
#qv-add-cart:disabled {
  background: var(--bg3) !important;
  color: var(--muted) !important;
  border: 1px solid var(--border) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Stock status label inside QV */
#qv-stock-status {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent2);
  display: none;
}

/* QV image */
#qv-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
