/* ================================================================
   EVR × BIKE & BUTTER — Partner Page
   Elevation · Velocity · Revolution
   Black base · #F26522 orange accent · Athletic energy
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=DM+Mono:wght@400;500&display=swap');

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
  --bg:           #0a0a0a;
  --bg-2:         #111111;
  --bg-3:         #181818;
  --bg-4:         #222222;
  --border:       rgba(255,255,255,0.08);
  --border-mid:   rgba(255,255,255,0.14);
  --white:        #ffffff;
  --white-dim:    rgba(255,255,255,0.52);
  --white-faint:  rgba(255,255,255,0.07);
  --orange:       #F26522;
  --orange-soft:  #e05b18;
  --orange-dim:   rgba(242,101,34,0.15);
  --orange-glow:  rgba(242,101,34,0.3);
  --font-head:    'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'DM Mono', monospace;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; }

/* ── Nav ───────────────────────────────────────────────────────── */
.rs-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(14px);
  z-index: 100;
  height: 57px;
}
.rs-nav .logo-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  letter-spacing: -0.2px; color: var(--white);
}
.rs-nav .logo-icon {
  width: 28px; height: 28px;
  background: var(--white); color: var(--bg);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; flex-shrink: 0;
}
.rs-nav .nav-right { display: flex; align-items: center; gap: 28px; }
.rs-nav .nav-links { display: flex; gap: 24px; }
.rs-nav .nav-links a { font-size: 13px; color: var(--white-dim); transition: color 0.15s; }
.rs-nav .nav-links a:hover { color: var(--white); }
.rs-nav .nav-signin { font-size: 13px; color: var(--white-dim); transition: color 0.15s; }
.rs-nav .nav-signin:hover { color: var(--white); }

/* Partners dropdown */
.nav-partners-wrap { position: relative; }
.nav-partners-wrap > a {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; color: var(--orange); font-weight: 600;
  cursor: pointer; padding-bottom: 4px;
}
.nav-partners-wrap > a svg { width: 10px; height: 10px; transition: transform 0.2s; }
.nav-partners-wrap:hover > a svg { transform: rotate(180deg); }
.nav-partners-wrap::before {
  content: '';
  position: absolute;
  top: 100%; left: -20px; right: -20px;
  height: 18px;
  display: none;
}
.nav-partners-wrap:hover::before { display: block; }
.nav-partners-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  background: var(--bg-2);
  border: 1px solid var(--border-mid);
  border-radius: 10px; padding: 6px; min-width: 170px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.7); z-index: 200;
}
.nav-partners-wrap:hover .nav-partners-dropdown { display: block; }
.nav-partners-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 7px;
  font-size: 13px; color: var(--white-dim); transition: all 0.15s;
}
.nav-partners-dropdown a:hover { background: var(--white-faint); color: var(--white); }
.partner-dot-pink   { width:6px; height:6px; border-radius:50%; background:#ff677e; flex-shrink:0; }
.partner-dot-yellow { width:6px; height:6px; border-radius:50%; background:#f5c518; flex-shrink:0; }
.partner-dot-orange { width:6px; height:6px; border-radius:50%; background:var(--orange); flex-shrink:0; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: 12px;
}
.nav-hamburger span { display:block; width:22px; height:2px; background:var(--white); border-radius:2px; }
.mobile-menu {
  display: none; position: fixed; top: 57px; left:0; right:0;
  background: var(--bg-2); border-bottom: 1px solid var(--border);
  z-index: 99; padding: 12px 0 16px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 24px; font-size: 14px;
  color: var(--white-dim); border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--white); background: var(--white-faint); }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn-orange {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 0.3px; text-transform: uppercase;
  padding: 14px 28px; border-radius: 4px; border: none;
  cursor: pointer; transition: all 0.2s;
}
.btn-orange:hover {
  background: var(--orange-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--orange-glow);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white-dim);
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  letter-spacing: 0.3px; text-transform: uppercase;
  padding: 14px 28px; border-radius: 4px;
  border: 1px solid var(--border-mid); cursor: pointer; transition: all 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

/* ── Hero ──────────────────────────────────────────────────────── */
.rs-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}
.rs-hero-visual {
  position: relative; overflow: hidden; background: var(--bg-3);
}
.rs-hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04); transition: transform 7s ease-out;
}
.rs-hero-visual img.loaded { transform: scale(1); }
.rs-hero-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(10,10,10,0.92) 100%);
  pointer-events: none;
}
.rs-hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 100px 48px; position: relative;
}
/* Orange left rule */
.rs-hero-content::before {
  content: '';
  position: absolute; top: 15%; left: 0; bottom: 15%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
}
.rs-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 28px;
}
.rs-hero-eyebrow::before {
  content: ''; display: block; width: 20px; height: 1px; background: var(--orange-glow);
}
.rs-hero-title {
  font-size: clamp(42px, 4vw, 64px); font-weight: 800;
  line-height: 1.02; letter-spacing: -2px; margin-bottom: 8px;
}
.rs-hero-title .accent { color: var(--orange); }
.rs-hero-subtitle {
  font-size: clamp(15px, 1.5vw, 20px); font-weight: 300;
  color: var(--white-dim); letter-spacing: -0.3px;
  margin-bottom: 24px; line-height: 1.5;
}
.rs-hero-desc {
  font-size: 14px; font-weight: 300; color: var(--white-dim);
  max-width: 400px; line-height: 1.85; margin-bottom: 36px;
}
.rs-hero-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.rs-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--bg-3); border: 1px solid var(--border-mid);
  color: var(--white-dim); font-family: var(--font-mono);
  font-size: 10px; padding: 5px 10px; border-radius: 3px; letter-spacing: 0.5px;
}
.rs-hero-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* Spec bar bottom of hero */
.rs-hero-specbar {
  position: absolute; bottom: 0; right: 0; left: 48px;
  display: flex; gap: 2px; border-top: 1px solid var(--border);
}
.rs-spec-cell {
  flex: 1; background: rgba(10,10,10,0.9);
  padding: 14px 18px; border-right: 1px solid var(--border);
}
.rs-spec-cell:last-child { border-right: none; }
.rs-spec-val {
  font-family: var(--font-mono); font-size: 15px; font-weight: 500;
  color: var(--orange); line-height: 1;
}
.rs-spec-label {
  font-size: 9px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.28); margin-top: 3px;
}

/* ── Ticker ────────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden; background: var(--bg-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 10px 0; white-space: nowrap;
}
.ticker-track { display: inline-flex; animation: ticker 36s linear infinite; }
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); padding: 0 24px;
}
.ticker-sep { color: var(--orange); opacity: 0.5; }
.ticker-item .hi { color: var(--orange); }

/* ── Section base ──────────────────────────────────────────────── */
.section { padding: 88px 64px; }
.section-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 400;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); opacity: 0.8; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(30px, 3.2vw, 48px); font-weight: 800;
  letter-spacing: -1.2px; line-height: 1.06; margin-bottom: 20px;
}
.section-body {
  font-size: 14px; font-weight: 300; color: var(--white-dim);
  max-width: 520px; line-height: 1.85;
}

/* ── Category tabs ─────────────────────────────────────────────── */
/* ── Catalogue toolbar ─────────────────────────────────────────── */
.catalogue-toolbar {
  position: sticky; top: 57px; z-index: 90;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 64px;
}
.catalogue-inner {
  display: flex; align-items: center; gap: 0;
  overflow-x: auto; scrollbar-width: none;
}
.catalogue-inner::-webkit-scrollbar { display: none; }

.cat-tabs {
  display: flex; gap: 0; margin: 0; flex-shrink: 0;
}
.cat-tab {
  background: none; border: none; border-bottom: 2px solid transparent;
  padding: 14px 18px; font-size: 11px; cursor: pointer;
  color: var(--white-dim); font-family: var(--font-mono);
  letter-spacing: 0.8px; transition: all 0.15s; text-transform: uppercase;
  white-space: nowrap;
}
.cat-tab:hover { color: var(--white); }
.cat-tab.active { color: var(--orange); border-bottom-color: var(--orange); font-weight: 700; }
.cat-divider {
  width: 1px; height: 24px; background: var(--border); flex-shrink: 0; margin: 0 4px;
}

/* Range badge colours */
.range-dot {
  display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  margin-right: 5px; vertical-align: middle;
}
.range-dot-city     { background: #64b5f6; }
.range-dot-discover { background: #a5d6a7; }
.range-dot-explore  { background: #f26522; }
.range-dot-ascent   { background: #9575cd; }
.range-dot-tech     { background: #4dd0e1; }
.range-dot-pro      { background: #ef5350; }
.range-dot-joy      { background: #ffca28; }

.rs-range-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 3px 8px; border-radius: 2px;
  font-weight: 600; margin-bottom: 6px;
}
.badge-city     { background: rgba(100,181,246,0.12); color: #64b5f6; border: 1px solid rgba(100,181,246,0.2); }
.badge-discover { background: rgba(165,214,167,0.12); color: #a5d6a7; border: 1px solid rgba(165,214,167,0.2); }
.badge-explore  { background: var(--orange-dim); color: var(--orange); border: 1px solid rgba(242,101,34,0.2); }
.badge-ascent   { background: rgba(149,117,205,0.12); color: #9575cd; border: 1px solid rgba(149,117,205,0.2); }
.badge-tech     { background: rgba(77,208,225,0.12); color: #4dd0e1; border: 1px solid rgba(77,208,225,0.2); }
.badge-pro      { background: rgba(239,83,80,0.12); color: #ef5350; border: 1px solid rgba(239,83,80,0.2); }
.badge-joy      { background: rgba(255,202,40,0.12); color: #ffca28; border: 1px solid rgba(255,202,40,0.2); }

.catalogue-count {
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(255,255,255,0.2); letter-spacing: 1px;
  padding: 14px 0; margin-left: auto; flex-shrink: 0; padding-left: 24px;
  white-space: nowrap;
}

/* ── Catalogue grid ────────────────────────────────────────────── */
.catalogue-section { background: var(--bg); padding: 0; }
.catalogue-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; padding: 2px;
}
.range-section { margin-bottom: 2px; }
.range-section-label {
  display: flex; align-items: center; gap: 10px;
  padding: 28px 64px 16px;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}
.range-section-label .range-dot { width: 7px; height: 7px; }

.cat-card {
  background: var(--bg-2); overflow: hidden; cursor: pointer;
  position: relative; transition: background 0.18s;
  display: flex; flex-direction: column;
}
.cat-card:hover { background: var(--bg-3); }
.cat-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--orange); opacity: 0; transition: opacity 0.25s;
}
.cat-card:hover::after { opacity: 1; }
.cat-card-img { aspect-ratio: 1 / 1; background: var(--bg-3); position: relative; overflow: hidden; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-card:hover .cat-card-img img { transform: scale(1.05); }
.cat-card-img-ph {
  aspect-ratio: 1 / 1; background: var(--bg-3);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  position: relative; overflow: hidden;
}
.cat-card-img-ph::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--orange-dim) 0%, transparent 70%);
}
.cat-card-img-ph-icon { font-size: 28px; opacity: 0.18; position: relative; z-index: 1; }
.cat-card-img-ph-sku {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 1.5px; color: var(--orange); opacity: 0.45;
  position: relative; z-index: 1;
}
.cat-card-body { padding: 10px 12px 12px; flex: 1; display: flex; flex-direction: column; }
.cat-card-range { margin-bottom: 5px; }
.cat-card-name { font-size: 12px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 2px; line-height: 1.25; }
.cat-card-cn { font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.25); margin-bottom: 5px; letter-spacing: 0.5px; }
.cat-card-sub { font-size: 10px; color: var(--white-dim); line-height: 1.5; flex: 1; margin-bottom: 8px; }
.cat-card-pills { display: flex; gap: 3px; flex-wrap: wrap; margin-bottom: 8px; }
.cat-card-pill {
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.3px;
  padding: 2px 6px; border-radius: 2px;
  background: var(--orange-dim); color: var(--orange);
  border: 1px solid rgba(242,101,34,0.18);
}
.cat-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 8px; border-top: 1px solid var(--border); margin-top: auto;
}
.cat-card-price { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,0.25); letter-spacing: 1px; }
.cat-card-cta {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--orange); background: none; border: none;
  cursor: pointer; padding: 0; transition: gap 0.2s;
}
.cat-card:hover .cat-card-cta { gap: 7px; }
.cat-gender-tag {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
  background: var(--bg); border: 1px solid var(--border);
  padding: 2px 6px; border-radius: 2px; margin-left: 4px;
}
.catalogue-empty {
  grid-column: 1 / -1; text-align: center; padding: 80px 24px;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,0.2); letter-spacing: 2px;
}

@media (max-width: 1100px) {
  .catalogue-grid { grid-template-columns: repeat(3, 1fr); }
  .catalogue-toolbar { padding: 0 32px; }
  .range-section-label { padding: 24px 32px 12px; }
}
@media (max-width: 768px) {
  .catalogue-toolbar { padding: 0 16px; }
  .cat-tab { padding: 12px 14px; font-size: 10px; }
  .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
  .range-section-label { padding: 20px 16px 10px; }
  .catalogue-count { display: none; }
}

/* ── Products section ──────────────────────────────────────────── */
.products-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.products-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 12px;
}

/* Product category group */
.product-category-group { display: none; }
.product-category-group.visible { display: block; }
.product-cat-label {
  font-family: var(--font-mono); font-size: 9px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.2); margin-bottom: 16px; padding-top: 8px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}
.products-grid-2col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}

.rs-product-card {
  background: var(--bg-3); overflow: hidden;
  cursor: pointer; position: relative; transition: background 0.2s;
}
.rs-product-card:hover { background: var(--bg-4); }
.rs-product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.rs-product-card:hover::before { opacity: 1; }

/* Image placeholder (no product images yet) */
.rs-img-ph {
  aspect-ratio: 3 / 4; height: auto; width: 100%; background: var(--bg-4);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  padding: 24px; text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.rs-img-ph::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--orange-dim) 0%, transparent 70%);
  pointer-events: none;
}
.rs-img-ph-icon { font-size: 32px; opacity: 0.22; position: relative; z-index: 1; }
.rs-img-ph-txt {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.22); position: relative; z-index: 1;
}
.rs-img-ph-code {
  font-family: var(--font-mono); font-size: 9px;
  color: var(--orange); opacity: 0.5; position: relative; z-index: 1;
  letter-spacing: 1px;
}
.rs-img-ph-sub { font-size: 10px; color: rgba(255,255,255,0.1); }

/* Card image wrap */
.rs-product-img-wrap {
  position: relative; overflow: hidden;
  background: var(--bg-4);
}
.rs-product-img-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.rs-product-card:hover .rs-product-img-wrap img { transform: scale(1.04); }

.rs-card-body { padding: 14px 16px 16px; }
.rs-card-cat {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); opacity: 0.7; margin-bottom: 8px;
}
.rs-card-name {
  font-size: 14px; font-weight: 700; letter-spacing: -0.3px;
  margin-bottom: 6px; line-height: 1.2;
}
.rs-card-name-cn {
  font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.3);
  margin-bottom: 8px; letter-spacing: 0.5px;
}
.rs-card-desc {
  font-size: 11px; font-weight: 300; color: var(--white-dim);
  line-height: 1.6; margin-bottom: 10px;
}
/* Spec pills */
.rs-card-specs { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 16px; }
.rs-spec-pill {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.5px;
  padding: 3px 8px; border-radius: 2px;
  background: var(--orange-dim); color: var(--orange);
  border: 1px solid rgba(242,101,34,0.2);
}
.rs-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.rs-card-price {
  font-family: var(--font-mono); font-size: 14px; font-weight: 500; color: var(--white-dim);
}
.rs-card-price.tbd { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.4; }
.rs-card-enquire {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--orange); background: none; border: none;
  cursor: pointer; transition: gap 0.2s; padding: 0;
}
.rs-product-card:hover .rs-card-enquire { gap: 9px; }

/* Gender badge */
.rs-card-gender {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  background: var(--bg); border: 1px solid var(--border);
  padding: 3px 8px; border-radius: 2px;
}

/* ── Brand story section ────────────────────────────────────────── */
.brand-section {
  border-top: 1px solid var(--border);
}
.brand-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 48px;
}
.brand-pillar {
  background: var(--bg-2); padding: 40px 36px;
  position: relative; overflow: hidden;
}
.brand-pillar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.brand-pillar:hover::before { transform: scaleX(1); }
.brand-pillar-letter {
  font-family: var(--font-mono); font-size: 88px; font-weight: 400;
  color: rgba(242,101,34,0.06); line-height: 1;
  margin-bottom: 8px; transition: color 0.3s; display: block;
}
.brand-pillar:hover .brand-pillar-letter { color: rgba(242,101,34,0.1); }
.brand-pillar-word {
  font-size: 22px; font-weight: 800; letter-spacing: -0.5px;
  color: var(--orange); margin-bottom: 10px;
}
.brand-pillar-body {
  font-size: 13px; font-weight: 300; color: var(--white-dim);
  line-height: 1.75;
}
/* Wide brand panel */
.brand-wide {
  grid-column: 1 / -1; background: var(--bg-3); padding: 48px 56px;
  display: flex; gap: 64px; align-items: center;
  border-top: 1px solid var(--border);
}
.brand-wide-stat {
  flex-shrink: 0; text-align: center; min-width: 100px;
}
.brand-wide-stat-val {
  font-family: var(--font-mono); font-size: 32px; color: var(--orange);
  font-weight: 500; line-height: 1;
}
.brand-wide-stat-label {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-top: 6px;
}
.brand-wide-divider {
  width: 1px; background: var(--border); align-self: stretch; flex-shrink: 0;
}
.brand-wide-body {
  font-size: 14px; font-weight: 300; color: var(--white-dim); line-height: 1.85;
}

/* ── Tech / Materials section ──────────────────────────────────── */
.tech-section { border-top: 1px solid var(--border); background: var(--bg-2); }
.tech-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 48px; }
.tech-row { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.tech-item {
  background: var(--bg-3); padding: 36px 32px;
  display: flex; gap: 20px; align-items: flex-start;
}
.tech-item.wide { grid-column: 1 / -1; flex-direction: row; gap: 48px; align-items: center; }
.tech-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 8px;
  background: var(--orange-dim); border: 1px solid var(--orange-glow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 16px; font-weight: 500; color: var(--orange);
}
.tech-title { font-size: 16px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 8px; }
.tech-body { font-size: 13px; font-weight: 300; color: var(--white-dim); line-height: 1.75; }

/* Pad spec table */
.pad-table-wrap {
  grid-column: 1 / -1; background: var(--bg-3); padding: 36px 32px;
  overflow-x: auto;
}
.pad-table {
  width: 100%; border-collapse: collapse; font-size: 12px;
}
.pad-table th {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
  padding: 10px 16px; border-bottom: 1px solid var(--border);
  text-align: left; white-space: nowrap;
}
.pad-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  color: var(--white-dim); font-weight: 300; vertical-align: middle;
}
.pad-table tr:last-child td { border-bottom: none; }
.pad-table tr:hover td { background: var(--bg-4); color: var(--white); }
.pad-table td.pad-name { font-weight: 600; color: var(--white); font-size: 13px; }
.pad-table td.pad-source {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 1px;
  color: var(--orange); text-transform: uppercase;
}
.pad-hours {
  font-family: var(--font-mono); font-size: 10px; color: var(--orange);
  font-weight: 600; letter-spacing: 0.5px; white-space: nowrap;
  text-align: center;
}
.pad-table th:nth-child(5),
.pad-table td:nth-child(5) {
  text-align: center;
}

/* ── How to Order ──────────────────────────────────────────────── */
.order-section { border-top: 1px solid var(--border); }
.order-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.order-step {
  background: var(--bg-2); padding: 40px 32px;
  position: relative; overflow: hidden;
}
.order-step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--orange); transform: scaleX(0);
  transform-origin: left; transition: transform 0.4s ease;
}
.order-step:hover::before { transform: scaleX(1); }
.order-step-num {
  display: block; font-family: var(--font-mono); font-size: 64px;
  font-weight: 400; color: rgba(242,101,34,0.07); line-height: 1;
  margin-bottom: 14px; transition: color 0.3s;
}
.order-step:hover .order-step-num { color: rgba(242,101,34,0.13); }
.order-step-title { font-size: 18px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 10px; }
.order-step-body { font-size: 13px; font-weight: 300; color: var(--white-dim); line-height: 1.75; }
.order-step-action {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 16px; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--orange); cursor: pointer; transition: gap 0.2s;
  background: none; border: none; padding: 0;
}
.order-step:hover .order-step-action { gap: 9px; }

/* ── CTA ───────────────────────────────────────────────────────── */
.rs-cta {
  padding: 120px 64px; text-align: center;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.rs-cta .grid-bg {
  position: absolute; inset: 0; opacity: 0.02;
  background-image:
    linear-gradient(to right, white 1px, transparent 1px),
    linear-gradient(to bottom, white 1px, transparent 1px);
  background-size: 56px 56px;
}
.rs-cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(242,101,34,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.rs-cta .section-title { font-size: clamp(44px, 6vw, 84px); position: relative; margin-bottom: 16px; }
.rs-cta .section-body { margin: 0 auto 36px; text-align: center; max-width: 440px; position: relative; }
.rs-cta-row { display: flex; align-items: center; justify-content: center; gap: 12px; position: relative; }

/* ── Footer ────────────────────────────────────────────────────── */
.rs-footer {
  padding: 36px 64px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.rs-footer-brand {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 1px; color: var(--white-dim);
}
.rs-footer-brand a { color: var(--orange); }
.rs-footer-links { display: flex; gap: 24px; }
.rs-footer-links a { font-size: 12px; color: var(--white-dim); transition: color 0.15s; }
.rs-footer-links a:hover { color: var(--white); }

/* ── Modal ─────────────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.82); backdrop-filter: blur(5px);
  z-index: 1000; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg-2); border: 1px solid var(--border-mid);
  border-radius: 12px; width: 100%; max-width: 540px;
  max-height: 90vh; overflow-y: auto; padding: 40px; position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; cursor: pointer;
  color: var(--white-dim); font-size: 22px; line-height: 1; transition: color 0.15s;
}
.modal-close:hover { color: var(--white); }
.modal-eyebrow {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); opacity: 0.8; margin-bottom: 6px;
}
.modal-title { font-size: 24px; font-weight: 800; letter-spacing: -0.6px; margin-bottom: 6px; }
.modal-desc { font-size: 13px; color: var(--white-dim); line-height: 1.6; margin-bottom: 24px; }
.modal-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 22px; }
.modal-tab {
  background: none; border: 1px solid var(--border-mid); border-radius: 4px;
  padding: 5px 14px; font-size: 11px; cursor: pointer;
  color: var(--white-dim); font-family: var(--font-mono);
  letter-spacing: 0.5px; transition: all 0.15s;
}
.modal-tab:hover { border-color: var(--orange-glow); color: var(--white); }
.modal-tab.active { background: var(--orange); color: var(--white); border-color: var(--orange); font-weight: 700; }
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.modal-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-field { display: flex; flex-direction: column; gap: 5px; }
.modal-field label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3);
}
.modal-field input, .modal-field select, .modal-field textarea {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 4px;
  color: var(--white); font-family: var(--font-body); font-size: 13px;
  padding: 10px 14px; outline: none; transition: border-color 0.15s; width: 100%;
}
.modal-field select { appearance: none; cursor: pointer; }
.modal-field input:focus, .modal-field select:focus, .modal-field textarea:focus { border-color: var(--orange); }
.modal-field input::placeholder, .modal-field textarea::placeholder { color: rgba(255,255,255,0.16); }
.modal-field textarea { resize: vertical; min-height: 100px; }
.modal-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--orange); color: var(--white);
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 0.3px; text-transform: uppercase;
  padding: 14px; border-radius: 4px; border: none; cursor: pointer;
  transition: all 0.2s; margin-top: 4px; width: 100%;
}
.modal-submit:hover { background: var(--orange-soft); transform: translateY(-1px); box-shadow: 0 8px 24px var(--orange-glow); }
.modal-submit:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }
.modal-error { font-size: 11px; color: #ff7070; display: none; }
.modal-error.visible { display: block; }
.modal-success { display: none; text-align: center; padding: 32px 16px; }
.modal-success.visible { display: block; }
.modal-success-icon { font-size: 36px; margin-bottom: 12px; }
.modal-success-title { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 8px; }
.modal-success-desc { font-size: 13px; color: var(--white-dim); line-height: 1.6; }
.modal-success-back {
  display: inline-block; margin-top: 20px; font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 1px; color: var(--white-dim);
  text-decoration: underline; cursor: pointer;
}
.modal-note {
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(255,255,255,0.16); text-align: center; margin-top: 6px;
}

/* ── Mobile sticky CTA ─────────────────────────────────────────── */
.mobile-sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  padding: 12px 16px; background: rgba(10,10,10,0.97);
  border-top: 1px solid var(--border); backdrop-filter: blur(12px); z-index: 998;
}
.mobile-sticky-cta button {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--orange); color: var(--white);
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.3px;
  padding: 14px; border-radius: 4px; width: 100%; border: none; cursor: pointer;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .rs-nav .nav-links, .rs-nav #auth-area { display: none; }
  .nav-hamburger { display: flex; }
  .rs-hero { grid-template-columns: 1fr; }
  .rs-hero-visual { height: 55vw; min-height: 260px; }
  .rs-hero-visual-overlay {
    background: linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.95) 100%);
  }
  .rs-hero-content { padding: 28px 24px 80px; }
  .rs-hero-content::before { display: none; }
  .rs-hero-specbar { left: 24px; }
  .rs-spec-cell { padding: 10px 12px; }
  .section { padding: 56px 24px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid-2col { grid-template-columns: repeat(2, 1fr); }
  .products-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-wide { flex-direction: column; gap: 28px; padding: 36px 24px; }
  .brand-wide-divider { display: none; }
  .tech-row { grid-template-columns: 1fr; }
  .tech-item.wide { flex-direction: column; gap: 20px; }
  .pad-table-wrap { padding: 24px 16px; }
  .order-steps { grid-template-columns: 1fr; }
  .rs-cta { padding: 80px 24px; }
  .rs-footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }
  .modal-form-row { grid-template-columns: 1fr; }
  .modal-box { padding: 28px 20px; }
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 72px; }
}
@media (min-width: 769px) {
  .nav-hamburger { display: none; }
  .mobile-menu { display: none !important; }
  .mobile-sticky-cta { display: none !important; }
}

/* ════════════════════════════════════════════════════════════════
   SHOPEE-STYLE COMPACT GRID
   ════════════════════════════════════════════════════════════════ */

/* Ultra range colour */
.range-dot-ultra  { background: #ff6f00; }
.badge-ultra { background: rgba(255,111,0,0.12); color: #ff6f00; border: 1px solid rgba(255,111,0,0.2); }

.shopee-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  padding: 3px;
  background: #0a0a0a;
}

/* Compact card */
.sc-card {
  background: var(--bg-2);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: background 0.15s;
}
.sc-card:hover { background: var(--bg-3); }
.sc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--orange); opacity: 0; transition: opacity 0.2s;
}
.sc-card:hover::after { opacity: 1; }

/* Square image area */
.sc-img-ph {
  aspect-ratio: 1 / 1;
  background: var(--bg-3);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  position: relative; overflow: hidden;
}
.sc-img-ph::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(242,101,34,0.07) 0%, transparent 70%);
}
.sc-img-ph-icon { font-size: 22px; opacity: 0.15; position: relative; z-index:1; }
.sc-img-ph-sku  { font-family: var(--font-mono); font-size: 8px; letter-spacing: 1px; color: var(--orange); opacity: 0.3; position: relative; z-index:1; }

.sc-img {
  aspect-ratio: 1 / 1;
  width: 100%; object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.sc-card:hover .sc-img { transform: scale(1.04); }

/* Card text */
.sc-body { padding: 7px 8px 9px; }
.sc-range-row {
  display: flex; align-items: center; gap: 4px;
  margin-bottom: 4px; flex-wrap: wrap;
}
.sc-gender {
  font-size: 9px; color: rgba(255,255,255,0.3);
  margin-left: 2px; letter-spacing: 0.5px;
}
.sc-name {
  font-size: 11px; font-weight: 600; line-height: 1.25;
  margin-bottom: 1px; letter-spacing: -0.1px;
}
.sc-cn {
  font-size: 9px; color: rgba(255,255,255,0.2);
  margin-bottom: 4px; letter-spacing: 0.3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sc-var {
  font-family: var(--font-mono); font-size: 8px;
  color: rgba(255,255,255,0.25); letter-spacing: 0.5px;
}

/* Range badge override — even smaller for grid */
.sc-body .rs-range-badge {
  font-size: 7px; padding: 2px 5px; letter-spacing: 1px;
}

/* Responsive grid */
@media (max-width: 1200px) { .shopee-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 960px)  { .shopee-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 680px)  { .shopee-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px)  { .shopee-grid { grid-template-columns: repeat(2, 1fr); } }


/* ════════════════════════════════════════════════════════════════
   PRODUCT DRAWER (modal/slide-up)
   ════════════════════════════════════════════════════════════════ */

.pdrawer-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.pdrawer-overlay.open { opacity: 1; pointer-events: all; }

.pdrawer {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  width: 100%; max-width: 820px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  display: flex; flex-direction: column;
  transform: translateY(24px);
  transition: transform 0.28s cubic-bezier(.22,.68,0,1.2);
}
.pdrawer-overlay.open .pdrawer { transform: translateY(0); }

/* Scrollbar */
.pdrawer::-webkit-scrollbar { width: 4px; }
.pdrawer::-webkit-scrollbar-track { background: transparent; }
.pdrawer::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.pdrawer-close {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 14px 16px 0; margin-left: auto;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.4); transition: color 0.15s;
  float: right;
}
.pdrawer-close:hover { color: #fff; }

/* Pane layout — image left, info right */
.pdrawer-pane { display: flex; gap: 0; }
#pdrawer-product { padding: 0; }

.pdrawer-img-wrap {
  flex: 0 0 42%; min-width: 0;
  background: var(--bg-3); position: relative;
}
.pdrawer-img-ph {
  width: 100%; aspect-ratio: 1 / 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  position: relative; overflow: hidden;
}
.pdrawer-img-ph::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(242,101,34,0.12) 0%, transparent 70%);
}
.pdrawer-img-ph-icon { font-size: 52px; opacity: 0.12; position: relative; z-index:1; }
.pdrawer-img-ph-sku  { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; color: var(--orange); opacity: 0.35; position: relative; z-index:1; }
.pdrawer-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }

.pdrawer-info {
  flex: 1; min-width: 0;
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 0;
}
.pdrawer-meta-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px; flex-wrap: wrap;
}
.pdrawer-cat {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.pdrawer-name {
  font-size: 22px; font-weight: 800; letter-spacing: -0.5px;
  line-height: 1.1; margin-bottom: 4px;
}
.pdrawer-cn {
  font-size: 12px; color: rgba(255,255,255,0.25);
  margin-bottom: 16px; letter-spacing: 0.5px;
}
.pdrawer-price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 22px; padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.pdrawer-price-label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.pdrawer-price {
  font-family: var(--font-mono); font-size: 14px;
  color: var(--orange); letter-spacing: 0.5px;
}

/* Variation blocks */
.pdrawer-var-block { margin-bottom: 18px; }
.pdrawer-var-label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 10px;
}
.pdrawer-var-chosen { color: rgba(255,255,255,0.7); font-weight: 500; }

/* Colour swatches */
.pdrawer-swatches { display: flex; flex-wrap: wrap; gap: 7px; }
.pdrawer-swatch {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.15s, border-color 0.15s;
  position: relative;
}
.pdrawer-swatch:hover { transform: scale(1.15); }
.pdrawer-swatch.active {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}

/* Size buttons */
.pdrawer-sizes { display: flex; flex-wrap: wrap; gap: 6px; }
.pdrawer-size-btn {
  padding: 6px 14px;
  background: var(--bg-3); border: 1px solid var(--border);
  color: var(--white-dim); font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.5px; border-radius: 2px;
  cursor: pointer; transition: all 0.15s;
}
.pdrawer-size-btn:hover { border-color: rgba(242,101,34,0.5); color: #fff; }
.pdrawer-size-btn.active {
  background: var(--orange); border-color: var(--orange);
  color: #fff; font-weight: 700;
}

.pdrawer-order-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px;
  background: var(--orange); border: none; border-radius: 2px;
  color: #fff; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
  cursor: pointer; transition: background 0.15s; margin-top: auto;
  margin-bottom: 12px;
}
.pdrawer-order-btn:hover { background: #d4561e; }
.pdrawer-order-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.pdrawer-note {
  font-size: 10px; color: rgba(255,255,255,0.2);
  line-height: 1.6; text-align: center;
}

/* ── Order form pane ─────────────────────────── */
#pdrawer-order {
  flex-direction: column;
  padding: 28px 32px 32px;
}
.pdrawer-back {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 20px;
  padding: 0; transition: color 0.15s;
}
.pdrawer-back:hover { color: #fff; }
.pdrawer-order-eyebrow {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 2px; color: var(--orange); margin-bottom: 6px;
}
.pdrawer-order-title {
  font-size: 20px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.3px;
}
.pdrawer-order-summary {
  background: var(--bg-3); border: 1px solid var(--border);
  padding: 12px 16px; border-radius: 2px; margin-bottom: 24px;
  font-size: 12px; line-height: 1.8; color: rgba(255,255,255,0.7);
}
.pdrawer-order-summary strong { color: #fff; }

/* Form fields */
.pform { display: flex; flex-direction: column; gap: 14px; }
.pform-row { display: flex; flex-direction: column; gap: 5px; }
.pform-row-half { flex-direction: row; gap: 14px; }
.pform-row-half > div { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.pform-label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.pform-input {
  background: var(--bg-3); border: 1px solid var(--border);
  color: #fff; padding: 10px 12px; border-radius: 2px;
  font-size: 13px; font-family: inherit;
  transition: border-color 0.15s; outline: none; width: 100%; box-sizing: border-box;
}
.pform-input:focus { border-color: var(--orange); }
.pform-select { cursor: pointer; }
.pform-textarea { resize: vertical; min-height: 70px; }
.pform-qty-wrap { display: flex; align-items: center; }
.pform-qty { text-align: center; width: 56px !important; border-radius: 0; }
.pform-qty-btn {
  width: 36px; height: 40px; background: var(--bg-3);
  border: 1px solid var(--border); color: #fff;
  font-size: 16px; cursor: pointer; transition: background 0.15s;
  flex-shrink: 0;
}
.pform-qty-btn:first-child { border-radius: 2px 0 0 2px; border-right: none; }
.pform-qty-btn:last-child  { border-radius: 0 2px 2px 0; border-left: none; }
.pform-qty-btn:hover { background: var(--orange); }

.pform-success {
  background: rgba(46,125,50,0.12); border: 1px solid rgba(46,125,50,0.3);
  color: #a5d6a7; padding: 14px 16px; border-radius: 2px;
  font-size: 12px; line-height: 1.7; text-align: center;
}
.pform-error {
  background: rgba(239,83,80,0.08); border: 1px solid rgba(239,83,80,0.2);
  color: #ef9a9a; padding: 14px 16px; border-radius: 2px;
  font-size: 12px; text-align: center;
}

/* Mobile: drawer becomes bottom sheet */
@media (max-width: 720px) {
  .pdrawer-overlay { align-items: flex-end; }
  .pdrawer {
    border-radius: 8px 8px 0 0;
    max-height: 92vh;
    transform: translateY(100%);
  }
  .pdrawer-overlay.open .pdrawer { transform: translateY(0); }
  .pdrawer-pane { flex-direction: column; }
  .pdrawer-img-wrap { flex: none; max-height: 260px; overflow: hidden; }
  .pdrawer-info { padding: 20px 20px 24px; }
  #pdrawer-order { padding: 20px 20px 28px; }
  .pform-row-half { flex-direction: column; }
}

/* ════════════════════════════════════════════════════════════════
   FIX 1 — Auth modal & nav chip (shared auth.js styles)
   ════════════════════════════════════════════════════════════════ */
.auth-modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 2000;
  align-items: center; justify-content: center;
}
.auth-modal-overlay.open { display: flex; }
.auth-modal {
  background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; width: 360px; max-width: 92vw;
  padding: 36px 32px; text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.auth-modal-icon { font-size: 26px; margin-bottom: 12px; }
.auth-modal-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.auth-modal-sub { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 24px; }
.auth-modal-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 11px 20px;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 6px;
  background: rgba(255,255,255,0.05); font-size: 13px; font-weight: 600;
  font-family: inherit; cursor: pointer; color: #fff;
  transition: background 0.15s, border-color 0.15s; margin-bottom: 10px;
}
.auth-modal-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.auth-modal-cancel {
  font-size: 12px; color: rgba(255,255,255,0.25); cursor: pointer;
  background: none; border: none; font-family: inherit; margin-top: 4px;
  transition: color 0.15s;
}
.auth-modal-cancel:hover { color: rgba(255,255,255,0.6); }

/* Nav sign-in & user chip — dark-theme override */
.nav-signin {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px;
  color: rgba(255,255,255,0.4); text-decoration: none; text-transform: uppercase;
  transition: color 0.15s;
}
.nav-signin:hover { color: var(--orange); }
.user-chip {
  position: relative; display: flex; align-items: center; gap: 8px;
  padding: 4px 10px; border: 1px solid var(--border);
  border-radius: 999px; background: var(--bg-2); cursor: pointer;
}
.user-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
}
.user-name { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.7); white-space: nowrap; }
.user-menu {
  position: absolute; top: 40px; right: 0;
  background: #1a1a1a; border: 1px solid var(--border);
  border-radius: 6px; padding: 6px; min-width: 120px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4); display: none; z-index: 200;
}
.user-chip.open .user-menu { display: block; }
.user-menu a {
  display: block; font-size: 12px; color: #ef9a9a;
  padding: 6px 8px; border-radius: 4px; text-decoration: none;
}
.user-menu a:hover { background: rgba(255,255,255,0.06); }

/* ════════════════════════════════════════════════════════════════
   FIX 2 — Brand section mid-range responsive
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .brand-wide { gap: 36px; padding: 40px 40px; }
  .brand-pillar { padding: 32px 28px; }
  .brand-pillar-letter { font-size: 64px; }
}
@media (max-width: 900px) {
  .brand-wide {
    flex-wrap: wrap; gap: 24px; padding: 32px 28px;
  }
  .brand-wide-stat { min-width: 80px; }
  .brand-wide-divider { display: none; }
  .brand-wide-body { width: 100%; flex-basis: 100%; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 40px; }
}
@media (max-width: 768px) {
  .section { padding: 56px 24px; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-wide { flex-direction: column; gap: 20px; padding: 28px 20px; }
}

/* ════════════════════════════════════════════════════════════════
   FIX 3 — Category section headers in shopee grid
   ════════════════════════════════════════════════════════════════ */
.sg-section-header {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 12px;
  padding: 22px 4px 10px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.sg-section-header:first-child { border-top: none; margin-top: 0; padding-top: 14px; }
.sg-section-range {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
}
.sg-section-cat {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.sg-section-count {
  font-family: var(--font-mono); font-size: 9px;
  color: rgba(255,255,255,0.18); letter-spacing: 0.5px;
  margin-left: auto;
}

/* ── Price on grid card ─────────────────────────────────────────── */
.sc-price {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.5px;
  margin-top: 4px;
  font-weight: 600;
}

/* Hide CN name div when empty */
.pdrawer-cn:empty { display: none; }
.sc-cn:empty { display: none; }