/* =========================================
   HABITZ ELITE — COLLECTION PAGE
   Same design system as homepage
========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink: #06060A;
  --ink2: #0D0D14;
  --surface: #111118;
  --panel: #16161F;
  --edge: rgba(255,255,255,0.07);
  --edge2: rgba(255,255,255,0.12);
  --white: #FFFFFF;
  --muted: rgba(255,255,255,0.45);
  --muted2: rgba(255,255,255,0.65);
  --accent: #FF3B2F;
  --accent2: #FF6B1A;
  --gold: #C9A84C;
  --gold-lt: #F0D080;
  --cyan: #00D4FF;
  --fire: linear-gradient(135deg, #FF3B2F 0%, #FF6B1A 100%);
  --gold-grad: linear-gradient(135deg, #C9A84C 0%, #F0D080 50%, #C9A84C 100%);
  --glass: rgba(255,255,255,0.04);
  --glass2: rgba(255,255,255,0.08);
  --r-sm: 1.2rem;
  --r-md: 2rem;
  --r-lg: 3rem;
  --font-display: 'Bebas Neue', sans-serif;
  --font-ui: 'Rajdhani', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
html { font-size: 62.5%; scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body { font-family: var(--font-body); font-size: 1.6rem; color: var(--white); background: var(--ink); overflow-x: hidden; max-width: 100%; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

/* Layout */
.pw { max-width: 1440px; margin: 0 auto; padding: 0 2.4rem; }
@media(min-width:768px) { .pw { padding: 0 4rem; } }
@media(min-width:1200px) { .pw { padding: 0 6rem; } }

/* Grain */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px; opacity: 0.5;
}

/* ══ TICKER ══ */
.announce { background: var(--accent); height: 3.6rem; overflow: hidden; display: flex; align-items: center; position: relative; z-index: 100; }
.announce::before, .announce::after { content: ''; position: absolute; top: 0; bottom: 0; width: 6rem; z-index: 2; }
.announce::before { left: 0; background: linear-gradient(to right, var(--accent), transparent); }
.announce::after { right: 0; background: linear-gradient(to left, var(--accent), transparent); }
.ticker-track { display: flex; white-space: nowrap; animation: ticker 35s linear infinite; width: max-content; }
.ticker-item { font-family: var(--font-ui); font-size: 1.3rem; font-weight: 700; letter-spacing: 0.2rem; text-transform: uppercase; color: #fff; padding: 0 3.5rem; display: flex; align-items: center; gap: 1rem; }
.ticker-item::before { content: '◆'; font-size: 0.8rem; opacity: 0.7; }
@keyframes ticker { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* ══ HEADER ══ */
.site-header { position: sticky; top: 0; z-index: 500; background: rgba(6,6,10,0.85); backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid var(--edge); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 6.8rem; gap: 2rem; }
.site-logo { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.logo-mark {
  height: 4.8rem;
  width: auto;
  max-width: 5.6rem;
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid var(--edge2);
  flex-shrink: 0;
  background: #0b0b12;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}
.logo-mark img {
  height: 100%;
  width: auto !important;
  max-width: 100%;
  object-fit: contain !important;
  object-position: center;
}
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-display); font-size: 2.6rem; letter-spacing: 0.25rem; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-sub { font-family: var(--font-ui); font-size: 0.9rem; letter-spacing: 0.3rem; color: var(--muted); text-transform: uppercase; }
.main-nav { display: none; align-items: center; gap: 0.2rem; }
@media(min-width:1024px) { .main-nav { display: flex; } }
.main-nav a { font-family: var(--font-ui); font-size: 1.4rem; font-weight: 600; letter-spacing: 0.1rem; text-transform: uppercase; color: var(--muted2); padding: 0.7rem 1.4rem; border-radius: 0.8rem; transition: color 0.2s, background 0.2s; position: relative; }
.main-nav a::after { content: ''; position: absolute; bottom: 0.3rem; left: 50%; right: 50%; height: 2px; background: var(--accent); transition: left 0.25s var(--ease-out), right 0.25s var(--ease-out); border-radius: 2px; }
.main-nav a:hover, .main-nav a.active { color: #fff; background: var(--glass2); }
.main-nav a:hover::after, .main-nav a.active::after { left: 1.4rem; right: 1.4rem; }
.nav-cta { font-family: var(--font-ui); font-size: 1.4rem; font-weight: 700; letter-spacing: 0.1rem; text-transform: uppercase; padding: 0.9rem 2rem; border-radius: 0.8rem; background: var(--fire); color: #fff !important; box-shadow: 0 0 20px rgba(255,59,47,0.35); transition: box-shadow 0.25s, transform 0.25s !important; }
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 4px 28px rgba(255,59,47,0.55) !important; }
.nav-cta::after { display: none !important; }
.hdr-icons { display: flex; align-items: center; gap: 0.8rem; }
.hdr-btn { background: var(--glass2); border: 1px solid var(--edge); color: var(--white); width: 4rem; height: 4rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; font-size: 1.6rem; position: relative; }
.hdr-btn:hover { background: var(--glass); border-color: var(--edge2); }
.cart-pill { position: absolute; top: -0.5rem; right: -0.5rem; min-width: 1.8rem; height: 1.8rem; background: var(--accent); border-radius: 2rem; font-size: 1rem; font-weight: 800; display: flex; align-items: center; justify-content: center; padding: 0 0.4rem; font-family: var(--font-ui); border: 1px solid var(--ink); }
.burger { background: var(--glass2); border: 1px solid var(--edge); width: 4rem; height: 4rem; border-radius: 1rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; cursor: pointer; }
@media(min-width:1024px) { .burger { display: none; } }
.burger span { display: block; width: 2rem; height: 0.2rem; background: #fff; border-radius: 2px; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(0.7rem) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-0.7rem) rotate(-45deg); }

/* ══ DRAWER ══ */
.drawer-bg { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 800; backdrop-filter: blur(4px); }
.drawer-bg.open { display: block; }
.mobile-drawer { position: fixed; left: 0; top: 0; bottom: 0; width: 30rem; max-width: 82vw; background: var(--ink2); border-right: 1px solid var(--edge2); z-index: 900; transform: translateX(-100%); transition: transform 0.4s var(--ease-out); display: flex; flex-direction: column; overflow-y: auto; }
.mobile-drawer.open { transform: translateX(0); }
.drawer-head { padding: 2rem; border-bottom: 1px solid var(--edge); display: flex; align-items: center; justify-content: space-between; }
.drawer-close { background: var(--glass2); border: 1px solid var(--edge); color: #fff; width: 3.6rem; height: 3.6rem; border-radius: 0.8rem; cursor: pointer; font-size: 1.8rem; display: flex; align-items: center; justify-content: center; }
.drawer-links a { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-ui); font-size: 1.8rem; font-weight: 700; letter-spacing: 0.1rem; text-transform: uppercase; color: var(--muted2); padding: 1.4rem 2rem; border-bottom: 1px solid var(--edge); transition: color 0.2s, padding-left 0.2s; }
.drawer-links a:hover { color: #fff; padding-left: 2.6rem; }
.drawer-links a.cta { color: var(--accent); }
.drawer-foot { margin-top: auto; padding: 2rem; background: var(--glass); border-top: 1px solid var(--edge); }
.drawer-foot p { font-size: 1.3rem; color: var(--muted); line-height: 1.8; }

/* ══ BREADCRUMB ══ */
.breadcrumb-bar { background: var(--ink2); border-bottom: 1px solid var(--edge); padding: 1.2rem 0; }
.breadcrumb { display: flex; align-items: center; gap: 0.8rem; font-family: var(--font-ui); font-size: 1.2rem; font-weight: 600; letter-spacing: 0.1rem; text-transform: uppercase; color: var(--muted); }
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: var(--edge2); font-size: 1.4rem; }
.breadcrumb .current { color: var(--gold); }

/* ══ COLLECTION HERO (≈30% of original size) ══ */
.coll-hero {
  position: relative; overflow: hidden;
  min-height: 11.4rem;
  display: flex; align-items: center;
  background: var(--ink2);
  border-bottom: 1px solid var(--edge);
}
.coll-hero-media {
  position: absolute; inset: 0; display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem; opacity: 0.35;
}
.coll-hero-media div { overflow: hidden; }
.coll-hero-media img { filter: saturate(1.3); transition: transform 8s; width: 100%; height: 100%; object-fit: cover; }
.coll-hero-media div:nth-child(even) img { transform: scale(1.05); }
.coll-hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--ink2) 0%, rgba(13,13,20,0.6) 60%, var(--ink2) 100%),
    linear-gradient(to bottom, var(--ink2) 0%, transparent 30%, transparent 70%, var(--ink2) 100%);
}
.coll-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  width: 100%; padding: 1.5rem 2rem;
}
.coll-hero-label { font-family: var(--font-ui); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25rem; text-transform: uppercase; color: var(--accent); margin-bottom: 0.45rem; display: flex; align-items: center; justify-content: center; gap: 0.6rem; }
.coll-hero-label::before, .coll-hero-label::after { content: ''; flex: 1; max-width: 3rem; height: 1px; background: var(--accent); opacity: 0.5; }
.coll-hero-title { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 3.6rem); line-height: 0.95; text-transform: uppercase; margin-bottom: 0.5rem; }
.coll-hero-title span { background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.coll-hero-desc { font-size: 0.95rem; color: var(--muted2); max-width: 48rem; margin: 0 auto 0.9rem; line-height: 1.45; }
.coll-hero-stats { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; align-items: center; background: var(--glass); border: 1px solid var(--edge); border-radius: 0.6rem; padding: 0.45rem 0.9rem; }
.hero-stat-num { font-family: var(--font-display); font-size: 1.15rem; line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-stat-lbl { font-family: var(--font-ui); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12rem; text-transform: uppercase; color: var(--muted); margin-top: 0.1rem; }

/* ══ MOBILE FILTER STRIP ══ */
.mobile-strip { display: flex; align-items: stretch; gap: 0.8rem; padding: 1.2rem 2.4rem; border-bottom: 1px solid var(--edge); background: var(--ink2); position: sticky; top: 6.8rem; z-index: 90; }
@media(min-width: 1024px) { .mobile-strip { display: none; } }
.mstrip-btn { display: flex; align-items: center; gap: 0.8rem; font-family: var(--font-ui); font-size: 1.3rem; font-weight: 700; letter-spacing: 0.1rem; text-transform: uppercase; padding: 0.9rem 1.6rem; border-radius: 0.8rem; background: var(--glass2); border: 1px solid var(--edge2); color: var(--muted2); cursor: pointer; transition: all 0.2s; flex: 1; justify-content: center; min-height: 3.4rem; }
.mstrip-btn:hover { color: #fff; border-color: rgba(255,255,255,0.2); }

/* ══ LAYOUT ══ */
.listing-wrap { display: grid; grid-template-columns: 1fr; gap: 0; padding: 3rem 0 6rem; min-width: 0; }
@media(min-width:1024px) { .listing-wrap { grid-template-columns: minmax(0, 26rem) minmax(0, 1fr); gap: 4rem; } }

/* ══ SIDEBAR ══ */
.sidebar { display: none; min-width: 0; }
@media(min-width:1024px) { .sidebar { display: block; } }
.sidebar-sticky { position: sticky; top: 9rem; max-height: calc(100vh - 11rem); overflow-x: hidden; overflow-y: auto; padding-right: 0.4rem; width: 100%; min-width: 0; }
.sidebar-sticky::-webkit-scrollbar { width: 3px; }
.sidebar-sticky::-webkit-scrollbar-thumb { background: var(--edge2); border-radius: 4px; }
.filter-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.4rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--edge); }
.filter-head-title { font-family: var(--font-display); font-size: 2.2rem; letter-spacing: 0.1rem; text-transform: uppercase; }
.filter-clear { font-family: var(--font-ui); font-size: 1.2rem; font-weight: 700; letter-spacing: 0.1rem; text-transform: uppercase; color: var(--accent); background: none; border: none; cursor: pointer; transition: opacity 0.2s; }
.filter-clear:hover { opacity: 0.7; }
.filter-group { margin-bottom: 0; border-bottom: 1px solid var(--edge); min-width: 0; }
.fg-head { display: flex; align-items: center; justify-content: space-between; padding: 1.6rem 0; cursor: pointer; }
.fg-name { font-family: var(--font-ui); font-size: 1.3rem; font-weight: 700; letter-spacing: 0.15rem; text-transform: uppercase; color: var(--muted2); }
.fg-toggle { color: var(--muted); font-size: 1.2rem; transition: transform 0.25s; border: none; background: none; cursor: pointer; color: var(--muted); }
.fg-toggle.open { transform: rotate(180deg); }
.fg-body { overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; padding-bottom: 1.6rem; min-width: 0; }
.fg-body.closed { max-height: 0 !important; padding-bottom: 0; overflow: hidden !important; }
.fg-body:has(.swatches):not(.closed) { overflow: visible; }

/* Sport chips */
.sport-chips { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.sport-chip { font-family: var(--font-ui); font-size: 1.2rem; font-weight: 700; letter-spacing: 0.08rem; text-transform: uppercase; padding: 0.5rem 1.2rem; border-radius: 5rem; border: 1px solid var(--edge2); color: var(--muted); cursor: pointer; transition: all 0.2s; background: var(--glass); }
.sport-chip:hover, .sport-chip.active { border-color: var(--accent); color: var(--accent); background: rgba(255,59,47,0.08); }

/* Check items */
.check-list { display: flex; flex-direction: column; gap: 1rem; }
.check-item { display: flex; align-items: center; gap: 1rem; cursor: pointer; }
.check-item input[type=checkbox] { width: 1.6rem; height: 1.6rem; border-radius: 0.4rem; border: 1px solid var(--edge2); cursor: pointer; accent-color: var(--accent); background: var(--glass); flex-shrink: 0; }
.check-lbl { font-size: 1.3rem; color: var(--muted2); user-select: none; transition: color 0.2s; flex: 1; }
.check-item:hover .check-lbl { color: #fff; }
.check-count { font-size: 1.1rem; color: var(--muted); font-family: var(--font-ui); font-weight: 700; }

/* Price */
.price-inputs { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 0.6rem; align-items: center; margin-bottom: 1.2rem; width: 100%; max-width: 100%; }
.price-input { width: 100%; min-width: 0; max-width: 100%; padding: 0.8rem 0.8rem; background: var(--glass); border: 1px solid var(--edge2); border-radius: 0.8rem; font-family: var(--font-body); font-size: 1.2rem; color: #fff; outline: none; transition: border-color 0.2s; -moz-appearance: textfield; appearance: textfield; }
.price-input::-webkit-outer-spin-button,
.price-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.price-input:focus { border-color: var(--accent); }
.price-sep { color: var(--muted); flex-shrink: 0; font-size: 1.1rem; line-height: 1; }
.price-slider { position: relative; height: 2.8rem; width: 100%; max-width: 100%; margin-top: 0.2rem; }
.price-track { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); height: 0.3rem; width: 100%; max-width: 100%; background: var(--edge2); border-radius: 1rem; overflow: hidden; pointer-events: none; }
.price-fill { position: absolute; top: 0; bottom: 0; left: 0; right: 0; height: 100%; background: var(--fire); border-radius: 1rem; }
.price-range { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); width: 100%; height: 0.3rem; margin: 0; background: none; pointer-events: none; -webkit-appearance: none; appearance: none; }
.price-range::-webkit-slider-runnable-track { height: 0.3rem; background: transparent; border: none; }
.price-range::-moz-range-track { height: 0.3rem; background: transparent; border: none; }
.price-range::-webkit-slider-thumb { pointer-events: auto; -webkit-appearance: none; width: 1.6rem; height: 1.6rem; border-radius: 50%; background: var(--fire); border: 2px solid #fff; box-shadow: 0 0 0 1px rgba(0,0,0,0.15); cursor: pointer; margin-top: -0.65rem; }
.price-range::-moz-range-thumb { pointer-events: auto; width: 1.6rem; height: 1.6rem; border-radius: 50%; background: var(--fire); border: 2px solid #fff; box-shadow: 0 0 0 1px rgba(0,0,0,0.15); cursor: pointer; }
.price-range-min { z-index: 3; }
.price-range-max { z-index: 4; }

/* Swatches */
.swatches { display: flex; flex-wrap: wrap; gap: 0.8rem; padding-bottom: 0.2rem; overflow: visible; }
.swatch {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.swatch.is-light { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28); }
.swatch.has-image { background: var(--glass2, #222); }
.swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  pointer-events: none;
}
.swatch::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  pointer-events: none;
}
.swatch.active::after { border-color: var(--gold, #c9a84c); }
.swatch:hover { transform: scale(1.12); z-index: 6; }
.swatch-tip {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.55rem);
  bottom: auto;
  transform: translateX(-50%) translateY(-4px);
  padding: 0.35rem 0.7rem;
  border-radius: 0.5rem;
  background: #111;
  color: #fff;
  font-family: var(--font-ui, sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  z-index: 8;
}
.swatch-tip::after {
  content: '';
  position: absolute;
  bottom: 100%;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: #111;
  border-top-color: transparent;
}
.swatch:hover .swatch-tip,
.swatch:focus-within .swatch-tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Size */
.size-grid { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.size-btn { font-family: var(--font-ui); font-size: 1.2rem; font-weight: 700; padding: 0.5rem 1rem; min-width: 4.2rem; height: 3.6rem; display: flex; align-items: center; justify-content: center; border: 1px solid var(--edge2); border-radius: 0.8rem; color: var(--muted); cursor: pointer; background: var(--glass); transition: all 0.2s; }
.size-btn input { display: none; }
.size-btn:hover, .size-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.sport-chip input, .swatch input { display: none; }
.listing-filters-form { display: block; width: 100%; max-width: 100%; min-width: 0; }
#mobileFilters .listing-filters-form { display: block; padding: 0 2rem 2rem; width: 100%; max-width: 100%; min-width: 0; }
#mobileFilters { min-width: 0; width: 100%; overflow-x: hidden; }
#mobileFilters .filter-head { margin-top: 1rem; }

/* Rating */
.rating-list { display: flex; flex-direction: column; gap: 0.8rem; }
.rating-row { display: flex; align-items: center; gap: 1rem; cursor: pointer; padding: 0.4rem 0; }
.rating-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 0.1rem; }
.rating-lbl { font-size: 1.3rem; color: var(--muted2); }
.rating-row:hover .rating-lbl { color: #fff; }

/* ══ PRODUCTS AREA ══ */
.products-area {}
.toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.8rem; flex-wrap: wrap; gap: 1.2rem; }
.toolbar-left { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.results-count { font-family: var(--font-ui); font-size: 1.3rem; font-weight: 600; letter-spacing: 0.1rem; text-transform: uppercase; color: var(--muted); }
.results-count strong { color: #fff; }
.active-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.atag { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-ui); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.08rem; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 5rem; background: rgba(255,59,47,0.1); border: 1px solid rgba(255,59,47,0.25); color: var(--accent); cursor: pointer; transition: all 0.2s; text-decoration: none; }
.atag:hover { background: rgba(255,59,47,0.2); }
.atag span { font-size: 1rem; }
.toolbar-right { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }
.listing-sort-form { margin: 0; }
.sort-field {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 3.4rem;
}
.sort-label {
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.sort-sel,
.mstrip-sort {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
  background-color: var(--glass2);
  border: 1px solid var(--edge2);
  color: #fff;
  border-radius: 0.8rem;
  padding: 0.8rem 3.2rem 0.8rem 1.4rem;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s, background-color 0.2s;
  min-width: 18rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
}
.mstrip-sort { flex: 1; min-width: 0; width: 100%; }
.sort-sel:focus,
.mstrip-sort:focus { border-color: var(--gold); background-color: rgba(201,168,76,0.08); }
.mobile-strip .listing-sort-form { flex: 1; min-width: 0; display: flex; }
.mobile-strip .sort-field { width: 100%; }
.mobile-strip .sort-label { display: none; }
.view-toggle { display: flex; gap: 0.4rem; }
.view-btn { width: 3.4rem; height: 3.4rem; background: var(--glass2); border: 1px solid var(--edge2); border-radius: 0.8rem; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--muted); transition: all 0.2s; }
.view-btn.active, .view-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

/* ══ PRODUCT GRID ══ */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
@media(min-width:640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:900px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width:1200px) { .products-grid.lg-4 { grid-template-columns: repeat(3, 1fr); } }
.products-grid.list-view { grid-template-columns: 1fr; }

/* ══ PRODUCT CARD ══ */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 1.6rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--edge2); box-shadow: 0 20px 50px rgba(0,0,0,0.6); }
.prod-link { color: inherit; text-decoration: none; }
a.prod-img-wrap { display: block; }
a.prod-name { display: block; }
a.prod-name:hover { color: var(--gold); }
.prod-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--surface);
}
.prod-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover !important;
  object-position: center center;
  image-orientation: from-image;
  transition: transform 0.6s var(--ease-out);
  filter: brightness(0.92) saturate(1.05);
}
.product-card:hover .prod-img-wrap img { transform: scale(1.03); filter: brightness(1) saturate(1.1); }
.prod-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%); }
.prod-badges { position: absolute; top: 1.2rem; left: 1.2rem; display: flex; flex-direction: column; gap: 0.5rem; z-index: 2; }
.badge { font-family: var(--font-ui); font-size: 1rem; font-weight: 700; letter-spacing: 0.15rem; text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 0.4rem; display: inline-block; }
.badge-hot { background: var(--fire); color: #fff; }
.badge-new { background: rgba(0,212,255,0.2); border: 1px solid rgba(0,212,255,0.4); color: var(--cyan); }
.badge-sale { background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.4); color: var(--gold); }
.badge-custom { background: var(--glass2); border: 1px solid var(--edge2); color: var(--muted2); }
.prod-actions { position: absolute; top: 1.2rem; right: 1.2rem; display: flex; flex-direction: column; gap: 0.6rem; opacity: 0; transform: translateX(6px); transition: opacity 0.3s, transform 0.3s; z-index: 2; }
.product-card:hover .prod-actions { opacity: 1; transform: translateX(0); }
.act-btn { width: 3.4rem; height: 3.4rem; border-radius: 0.8rem; background: rgba(22,22,31,0.9); border: 1px solid var(--edge2); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; cursor: pointer; backdrop-filter: blur(8px); transition: background 0.2s; }
.act-btn:hover { background: var(--glass2); border-color: rgba(255,255,255,0.2); }
.quick-bar { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(255,59,47,0.9); font-family: var(--font-ui); font-size: 1.2rem; font-weight: 700; letter-spacing: 0.2rem; text-transform: uppercase; color: #fff; text-align: center; padding: 1rem; transform: translateY(100%); transition: transform 0.3s var(--ease-out); backdrop-filter: blur(4px); z-index: 2; }
.product-card:hover .quick-bar { transform: translateY(0); }
.colour-dots { position: absolute; bottom: 4.6rem; left: 1.2rem; display: flex; gap: 0.4rem; opacity: 0; transform: translateY(4px); transition: opacity 0.3s, transform 0.3s; z-index: 2; }
.product-card:hover .colour-dots { opacity: 1; transform: translateY(0); }
.cdot { width: 1.3rem; height: 1.3rem; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.5); }
.prod-info { padding: 1.6rem; }
.prod-sport { font-family: var(--font-ui); font-size: 1rem; font-weight: 700; letter-spacing: 0.2rem; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; }
.prod-name { font-family: var(--font-ui); font-size: 1.7rem; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 0.8rem; }
.prod-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.prod-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 0.05rem; }
.prod-rcount { font-size: 1.1rem; color: var(--muted); }
.prod-moq { font-family: var(--font-ui); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.05rem; text-transform: uppercase; color: var(--muted); }
.prod-moq strong { color: var(--cyan); }
.prod-pricing { display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 1.4rem; }
.prod-price { font-family: var(--font-display); font-size: 2.4rem; letter-spacing: 0.05rem; }
.prod-old { font-size: 1.3rem; color: var(--muted); text-decoration: line-through; }
.prod-save { font-family: var(--font-ui); font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.prod-cta { display: flex; gap: 0.8rem; padding: 0 1.6rem 1.6rem; }
.product-card .btn-cart { width: 100%; }
.btn-cart { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.6rem; font-family: var(--font-ui); font-size: 1.2rem; font-weight: 700; letter-spacing: 0.1rem; text-transform: uppercase; padding: 1rem 1.4rem; border-radius: 0.8rem; background: var(--fire); color: #fff; border: none; cursor: pointer; box-shadow: 0 4px 16px rgba(255,59,47,0.25); transition: all 0.25s; }
.btn-cart:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,59,47,0.4); }
.btn-wishlist-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 4.6rem;
  padding: 1rem;
  border-radius: 0.8rem;
  background: var(--glass2);
  border: 1px solid var(--edge2);
  color: var(--muted2);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-wishlist-cta:hover {
  border-color: rgba(255, 77, 79, 0.45);
  color: #ff4d4f;
  background: rgba(255, 77, 79, 0.08);
}
.btn-wishlist-cta.is-wish {
  color: #ff4d4f;
  border-color: rgba(255, 77, 79, 0.45);
  background: rgba(255, 77, 79, 0.1);
}
.btn-wishlist-cta.is-wish svg {
  fill: currentColor;
}

/* LIST VIEW */
.products-grid.list-view .product-card {
  display: grid;
  grid-template-columns: min(20rem, 38vw) 1fr;
  grid-template-rows: 1fr auto;
  align-items: stretch;
  border-radius: 1.4rem;
}
.products-grid.list-view .prod-img-wrap {
  grid-column: 1;
  grid-row: 1 / -1;
  aspect-ratio: auto;
  min-height: 18rem;
  height: 100%;
  border-radius: 0;
}
.products-grid.list-view .prod-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center;
}
.products-grid.list-view .prod-info {
  grid-column: 2;
  grid-row: 1;
  padding: 2.4rem 2.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.products-grid.list-view .prod-name { font-size: 2rem; }
.products-grid.list-view .prod-cta {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
  padding: 0 2.8rem 2.4rem;
}
.products-grid.list-view .colour-dots,
.products-grid.list-view .quick-bar { display: none; }
@media(max-width:560px) {
  .products-grid.list-view .product-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .products-grid.list-view .prod-img-wrap {
    grid-column: 1;
    grid-row: 1;
    min-height: 20rem;
  }
  .products-grid.list-view .prod-info {
    grid-column: 1;
    grid-row: 2;
    padding: 1.6rem 1.6rem 0.8rem;
  }
  .products-grid.list-view .prod-cta {
    grid-column: 1;
    grid-row: 3;
    padding: 0 1.6rem 1.6rem;
  }
}

/* ══ PROMO INLINE ══ */
.promo-card {
  grid-column: 1 / -1;
  position: relative; overflow: hidden;
  background: var(--ink2);
  border: 1px solid var(--edge2);
  border-radius: 1.6rem;
  padding: 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.promo-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 100% at 80% 50%, rgba(255,59,47,0.1) 0%, transparent 70%),
              radial-gradient(ellipse 50% 80% at 10% 50%, rgba(201,168,76,0.07) 0%, transparent 60%);
}
.promo-bg-word { position: absolute; right: 2rem; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-size: 9rem; color: rgba(255,255,255,0.03); pointer-events: none; letter-spacing: 0.1rem; white-space: nowrap; }
.promo-content { position: relative; z-index: 2; }
.promo-label { font-family: var(--font-ui); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.3rem; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.promo-title { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.5rem); text-transform: uppercase; color: #fff; line-height: 1; margin-bottom: 0.6rem; }
.promo-title .promo-highlight { background: var(--fire); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.promo-sub { font-size: 1.4rem; color: var(--muted2); }
.promo-btn { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 0.8rem; font-family: var(--font-ui); font-size: 1.4rem; font-weight: 700; letter-spacing: 0.15rem; text-transform: uppercase; padding: 1.2rem 2.4rem; border-radius: 0.8rem; background: var(--fire); color: #fff; border: none; cursor: pointer; box-shadow: 0 0 24px rgba(255,59,47,0.35); transition: all 0.25s; white-space: nowrap; flex-shrink: 0; }
.promo-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,59,47,0.5); }
@media(max-width: 600px) { .promo-card { flex-direction: column; align-items: flex-start; } }

/* ══ LOAD MORE ══ */
.shop-load-sentinel {
  display: flex;
  justify-content: center;
  padding: 2.4rem 0 1rem;
  min-height: 5rem;
}
.shop-load-spinner {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 2px solid var(--edge2);
  border-top-color: var(--gold);
  animation: shop-spin 0.7s linear infinite;
  opacity: 0;
  transition: opacity 0.2s;
}
.shop-load-sentinel.is-loading .shop-load-spinner { opacity: 1; }
@keyframes shop-spin { to { transform: rotate(360deg); } }

/* ══ PAGINATION ══ */
.pagination { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-top: 5rem; flex-wrap: wrap; }
.page-btn { width: 4rem; height: 4rem; display: flex; align-items: center; justify-content: center; font-family: var(--font-ui); font-size: 1.4rem; font-weight: 700; border-radius: 0.8rem; border: 1px solid var(--edge2); color: var(--muted); background: var(--glass); cursor: pointer; transition: all 0.2s; }
.page-btn:hover, .page-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.page-btn.active { background: rgba(201,168,76,0.15); }
.page-btn.disabled { opacity: 0.3; pointer-events: none; }
.page-nav { width: auto; padding: 0 1.6rem; gap: 0.6rem; font-family: var(--font-ui); font-size: 1.3rem; letter-spacing: 0.1rem; text-transform: uppercase; }

/* ══ FILTER DRAWER (MOBILE) ══ */
.fdrawer-bg { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 800; backdrop-filter: blur(4px); }
.fdrawer-bg.open { display: block; }
.fdrawer { position: fixed; left: 0; top: 0; bottom: 0; width: 34rem; max-width: 88vw; background: var(--ink2); border-right: 1px solid var(--edge2); z-index: 900; transform: translateX(-100%); transition: transform 0.4s var(--ease-out); display: flex; flex-direction: column; overflow-x: hidden; overflow-y: auto; padding: 2.4rem; }
.fdrawer.open { transform: translateX(0); }
.fdrawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.4rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--edge); }
.fdrawer-close { background: var(--glass2); border: 1px solid var(--edge); color: #fff; width: 3.4rem; height: 3.4rem; border-radius: 0.8rem; cursor: pointer; font-size: 1.6rem; display: flex; align-items: center; justify-content: center; }

/* ══ FOOTER ══ */
footer { background: var(--ink2); border-top: 1px solid var(--edge); }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 4rem; padding: 6rem 0 4rem; }
@media(min-width:600px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px) { .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.15fr; } }
.footer-brand p { font-size: 1.4rem; color: var(--muted); line-height: 1.7; margin-top: 1.6rem; max-width: 28rem; }
.footer-socials { display: flex; gap: 1rem; margin-top: 2rem; }
.soc-btn { width: 3.8rem; height: 3.8rem; background: var(--glass); border: 1px solid var(--edge); border-radius: 1rem; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--muted2); transition: background 0.2s, color 0.2s, transform 0.2s; }
.soc-btn:hover { background: var(--fire); color: #fff; transform: translateY(-2px); border-color: transparent; }
.soc-btn svg { width: 1.8rem; height: 1.8rem; display: block; }
.footer-col h4 { font-family: var(--font-ui); font-size: 1.2rem; font-weight: 700; letter-spacing: 0.3rem; text-transform: uppercase; margin-bottom: 2rem; color: var(--muted2); }
.footer-col ul li { margin-bottom: 1rem; }
.footer-col ul li a { font-size: 1.4rem; color: var(--muted); transition: color 0.2s, padding-left 0.2s; display: inline-block; }
.footer-col ul li a:hover { color: #fff; padding-left: 0.6rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.4rem; }
.footer-contact-item .ci { font-size: 1.6rem; flex-shrink: 0; }
.footer-contact-item p { font-size: 1.4rem; color: var(--muted); }
.footer-contact-item a { color: var(--muted2); transition: color 0.2s; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; padding: 2rem 0; border-top: 1px solid var(--edge); }
.footer-copy { font-size: 1.3rem; color: var(--muted); }
.pay-badges { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }
.pay-badge { display: inline-flex; align-items: center; justify-content: center; width: 7.2rem; height: 3.4rem; padding: 0.35rem 0.5rem; background: var(--glass); border: 1px solid var(--edge); border-radius: 0.6rem; overflow: hidden; }
.pay-badge svg { display: block; width: 100%; height: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* ══ REVEAL ANIMATION ══ */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }

/* Floating mobile CTA — removed */
.float-cta { display: none !important; }

/* ══ SEARCH PAGE ══ */
.search-listing-wrap {
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 1024px) {
  .search-listing-wrap {
    grid-template-columns: 1fr;
  }
}
.search-listing-wrap .products-area {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
}
@media (min-width: 1200px) {
  .search-listing-wrap .products-grid.lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.search-hero .coll-hero-content {
  padding: 2rem 2rem 2.4rem;
}
.search-hero .search-page-form {
  justify-content: center;
  margin: 1.6rem auto 0;
  max-width: 72rem;
}
.search-empty {
  grid-column: 1 / -1;
  color: var(--muted);
  padding: 2rem 0;
  text-align: center;
}
.search-page-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.search-page-input {
  flex: 1;
  min-width: 240px;
  padding: 1.2rem 1.4rem;
  border-radius: 0.8rem;
  border: 1px solid var(--edge2);
  background: var(--glass);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.5rem;
}
.search-page-input::placeholder { color: var(--muted); }
.search-page-submit {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  padding: 1.2rem 2rem;
  border-radius: 0.8rem;
  background: var(--fire);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,59,47,0.25);
  transition: all 0.25s;
}
.search-page-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,59,47,0.4); }
.search-page-clear {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  color: var(--gold);
  text-decoration: none;
  padding: 1.2rem 0.4rem;
}
.search-page-clear:hover { text-decoration: underline; }
.pagination a.page-btn { text-decoration: none; }

/* ═══════════════════════════════════════════
   MOBILE ONLY — listing alignment (≤1023px)
   Desktop / laptop rules above stay unchanged
═══════════════════════════════════════════ */
@media (max-width: 1023px) {
  .breadcrumb-bar .pw,
  .listing-wrap,
  .products-area,
  .products-grid {
    min-width: 0;
    max-width: 100%;
  }

  .breadcrumb {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
    padding-bottom: 0.2rem;
  }
  .breadcrumb::-webkit-scrollbar { display: none; }

  .coll-hero {
    min-height: 0;
  }
  .coll-hero-content {
    padding: 1.2rem 0;
  }
  .coll-hero-desc {
    display: none; /* keep hero compact on phones */
  }
  .coll-hero-stats {
    gap: 0.5rem;
  }
  .hero-stat {
    padding: 0.4rem 0.7rem;
    flex: 1 1 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
  }

  .mobile-strip {
    padding: 1rem 1.4rem;
    gap: 0.6rem;
    top: 6.8rem;
    width: 100%;
    box-sizing: border-box;
  }
  .mstrip-btn {
    flex: 0 0 auto;
    padding: 0.85rem 1.2rem;
    min-width: 9rem;
  }
  .mobile-strip .listing-sort-form {
    flex: 1 1 auto;
    min-width: 0;
  }
  .mstrip-sort {
    min-width: 0 !important;
    width: 100%;
    max-width: 100%;
    padding-right: 2.8rem;
  }

  /* Avoid duplicate sort/view controls — strip already has Filter + Sort */
  .toolbar {
    margin-bottom: 1.4rem;
    gap: 0.8rem;
  }
  .toolbar-right {
    display: none !important;
  }
  .toolbar-left {
    width: 100%;
  }
  .results-count {
    font-size: 1.15rem;
    letter-spacing: 0.06rem;
  }
  .active-tags {
    width: 100%;
  }

  .listing-wrap {
    padding: 1.6rem 0 4rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
  }

  .product-card {
    height: 100%;
    min-width: 0;
    border-radius: 1.2rem;
  }
  .product-card:hover {
    transform: none; /* no lift on touch */
  }

  .prod-info {
    flex: 1 1 auto;
    padding: 1rem 1rem 0.6rem;
    min-width: 0;
  }
  .prod-sport {
    font-size: 0.9rem;
    letter-spacing: 0.12rem;
    margin-bottom: 0.3rem;
  }
  .prod-name {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .prod-meta {
    margin-bottom: 0.6rem;
  }
  .prod-stars {
    font-size: 1.05rem;
  }
  .prod-pricing {
    flex-wrap: wrap;
    gap: 0.4rem 0.6rem;
    margin-bottom: 0.8rem;
    align-items: baseline;
  }
  .prod-price {
    font-size: 1.9rem;
  }
  .prod-old {
    font-size: 1.15rem;
  }
  .prod-save {
    font-size: 1rem;
  }

  .prod-cta {
    padding: 0 1rem 1rem;
    gap: 0.5rem;
    margin-top: auto;
  }
  .product-card .btn-cart {
    min-width: 0;
    font-size: 1.1rem;
    letter-spacing: 0.02rem;
    padding: 0.85rem 0.5rem;
    gap: 0.25rem;
    white-space: normal;
    line-height: 1.15;
    text-align: center;
  }
  .btn-wishlist-cta {
    width: 3.6rem;
    padding: 0.75rem;
  }
  .btn-wishlist-cta svg {
    width: 15px;
    height: 15px;
  }

  .quick-bar {
    display: none; /* hover UI not useful on mobile */
  }

  .promo-card {
    padding: 1.6rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    border-radius: 1.2rem;
  }
  .promo-bg-word {
    font-size: 5rem;
    right: 0.8rem;
  }
  .promo-title {
    font-size: 2.2rem;
  }
  .promo-sub {
    font-size: 1.25rem;
  }
  .promo-btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .products-grid {
    gap: 0.75rem;
  }
  .prod-info {
    padding: 0.85rem 0.85rem 0.5rem;
  }
  .prod-cta {
    padding: 0 0.85rem 0.85rem;
  }
  .prod-name {
    font-size: 1.25rem;
  }
  .prod-price {
    font-size: 1.7rem;
  }
  .product-card .btn-cart {
    font-size: 1rem;
    padding: 0.75rem 0.35rem;
  }
  .btn-wishlist-cta {
    width: 3.2rem;
  }
  .mstrip-btn {
    min-width: 7.5rem;
    padding: 0.8rem 0.9rem;
    font-size: 1.15rem;
  }
}

