/* ============================================================
   RASKASVARAOSA :: GLOBAL STYLESHEET
   One design language across every page.
   White canvas, single blue accent (#1c69d4), Manrope only.
   ============================================================ */

:root {
  --blue: #1c69d4;
  --blue-hover: #1558b8;
  --blue-soft: rgba(28, 105, 212, 0.08);
  --navy: #1a2129;
  --dark: #1a2129;
  --text-2: #4a4a4a;
  --text-3: #6b6b6b;
  --muted: #9b9b9b;
  --border: #e8e8e8;
  --line: #f0f0f0;
  --surface: #f7f9fc;
  --gray: #f4f4f4;
  --btn-radius: 14px;
  --btn-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --btn-ease-press: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ---- RESET / BASE ------------------------------------------ */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--navy);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; }

/* ============================================================
   BUTTON DNA :: ONE SYSTEM, EVERYWHERE
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  border-radius: var(--btn-radius);
  transition:
    background 180ms var(--btn-ease),
    box-shadow 180ms var(--btn-ease),
    border-color 180ms var(--btn-ease),
    transform 100ms var(--btn-ease-press);
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.15), rgba(255,255,255,0));
  pointer-events: none;
  border-radius: var(--btn-radius) var(--btn-radius) 0 0;
}

.btn--primary {
  color: #fff;
  background: var(--blue);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.18) inset,
    0 6px 20px rgba(28, 105, 212, 0.32);
}
.btn--primary:hover {
  background: var(--blue-hover);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.22) inset,
    0 10px 28px rgba(28, 105, 212, 0.48);
}

.btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.1) inset;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.21);
  border-color: rgba(255, 255, 255, 0.46);
}

.btn--outline {
  color: var(--navy);
  background: transparent;
  border: 1.5px solid rgba(26, 33, 41, 0.28);
  box-shadow: none;
}
.btn--outline::before { display: none; }
.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn--outline-inv {
  color: rgba(255,255,255,0.72);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: none;
}
.btn--outline-inv::before { display: none; }
.btn--outline-inv:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn--danger {
  color: #fff;
  background: #dc2626;
  box-shadow: 0 6px 20px rgba(220,38,38,0.28);
}
.btn--danger:hover { background: #b91c1c; }

.btn--sm  { padding: 10px 20px; font-size: 13px; border-radius: 10px; }
.btn--lg  { padding: 16px 34px; font-size: 16px; border-radius: 16px; }
.btn--full { width: 100%; }

/* ============================================================
   STATUS DOT
   ============================================================ */
.dot-live {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0   rgba(34,197,94,0.55); }
  60%  { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0   rgba(34,197,94,0); }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-anim] {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition:
    opacity 600ms cubic-bezier(0.16,1,0.3,1),
    transform 600ms cubic-bezier(0.16,1,0.3,1);
}
[data-anim].visible { opacity: 1; transform: translateY(0) scale(1); }
[data-anim-delay="1"] { transition-delay: 60ms; }
[data-anim-delay="2"] { transition-delay: 120ms; }
[data-anim-delay="3"] { transition-delay: 180ms; }
[data-anim-delay="4"] { transition-delay: 240ms; }

.anim-up {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  animation: fadeUp 700ms cubic-bezier(0.16,1,0.3,1) forwards;
}
.anim-up--1 { animation-delay: 110ms; }
.anim-up--2 { animation-delay: 220ms; }
.anim-up--3 { animation-delay: 330ms; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0) scale(1); } }

@media (prefers-reduced-motion: reduce) {
  *, [data-anim], .anim-up { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   HERO :: index only (dark warehouse image, glass nav)
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #11161b;
  color: #fff;
  padding: 120px 24px 80px;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('hero-bg.png') center / cover no-repeat;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,14,18,0.78) 0%, rgba(10,14,18,0.42) 38%, rgba(10,14,18,0.72) 100%);
}
.hero__top-fade {
  position: absolute; top: 0; left: 0; right: 0; height: 220px;
  background: linear-gradient(180deg, rgba(10,14,18,0.85), rgba(10,14,18,0));
  z-index: 1; pointer-events: none;
}
.hero__center-fade {
  position: absolute; inset: 0;
  background: radial-gradient(60% 55% at 50% 52%, rgba(10,14,18,0.55) 0%, rgba(10,14,18,0) 70%);
  z-index: 1; pointer-events: none;
}

.hero__nav {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hero__logo {
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.03em; color: #fff; text-decoration: none;
}
.hero__navlinks {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 34px;
}
.hero__navlinks a {
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  color: rgba(255,255,255,0.74); text-decoration: none;
  transition: color 160ms var(--btn-ease);
}
.hero__navlinks a:hover { color: #fff; }
.hero__cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 700; letter-spacing: -0.01em;
  color: #fff; text-decoration: none;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 10px 18px; border-radius: 99px;
  transition: background 160ms var(--btn-ease);
}
.hero__cta:hover { background: rgba(255,255,255,0.2); }

.hero__body {
  position: relative; z-index: 2;
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.hero__title {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1.02;
  color: #fff; margin: 0;
}
.hero__sub {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 400; color: rgba(255,255,255,0.72);
  letter-spacing: -0.01em; line-height: 1.6; margin-top: 22px;
}
.hero__buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 880px) {
  .hero__navlinks { display: none; }
  .hero__nav { padding: 20px; }
  .hero { padding: 100px 20px 72px; min-height: 86vh; }
}

/* ============================================================
   INNER PAGE NAV :: subpages (solid, sticky, white)
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1280px; margin: 0 auto;
  padding: 14px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo {
  font-size: 19px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--navy); text-decoration: none; flex-shrink: 0;
}
.nav__links {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 32px;
}
.nav__links a {
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--text-2); text-decoration: none;
  transition: color 160ms var(--btn-ease);
}
.nav__links a:hover { color: var(--navy); }
.nav__links a.active { color: var(--blue); }
.nav__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__inner { padding: 12px 20px; }
}
@media (max-width: 540px) {
  .nav__cta-outline { display: none; }
}

/* ============================================================
   WHITE CANVAS LAYOUT
   ============================================================ */
.wc        { background: #fff; padding: 96px 0; }
.wc--gray  { background: var(--gray); padding: 96px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.wc--navy  { background: var(--navy); padding: 96px 0; }
.wc-inner  { max-width: 1280px; margin: 0 auto; padding: 0 64px; }

@media (max-width: 768px) {
  .wc, .wc--gray, .wc--navy { padding: 64px 0; }
  .wc-inner { padding: 0 20px; }
}

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
  display: block;
}
.eyebrow--inv { color: rgba(255,255,255,0.42); }

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 2.8vw, 42px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.05; color: var(--navy);
}
.section-sub {
  font-size: 16px; font-weight: 400; color: var(--text-2);
  line-height: 1.62; letter-spacing: -0.01em; margin-top: 14px; max-width: 600px;
}

/* ============================================================
   PAGE HEADER BAND :: subpage titles
   ============================================================ */
.page-head { background: #fff; border-bottom: 1px solid var(--border); padding: 56px 0 52px; }
.page-head__inner { max-width: 1280px; margin: 0 auto; padding: 0 64px; }
.crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 18px; }
.crumb a { color: var(--muted); text-decoration: none; transition: color 150ms; }
.crumb a:hover { color: var(--blue); }
.page-head__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 4vw, 54px); font-weight: 700;
  letter-spacing: -0.04em; line-height: 1.02; color: var(--navy); margin: 0 0 14px;
}
.page-head__sub { font-size: 17px; font-weight: 400; color: var(--text-3); line-height: 1.6; max-width: 580px; }
@media (max-width: 768px) {
  .page-head { padding: 40px 0 36px; }
  .page-head__inner { padding: 0 20px; }
}

/* Image hero variant (dark photo background, white text) */
.page-head--img { position: relative; background: #11161b; border-bottom: none; padding: 0; overflow: hidden; }
.page-head--img .page-head__bg { position: absolute; inset: 0; background: url('products-hero.png') center / cover no-repeat; z-index: 0; }
.page-head--img .page-head__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,14,18,0.72) 0%, rgba(10,14,18,0.42) 50%, rgba(10,14,18,0.82) 100%);
}
.page-head--img .page-head__inner { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 72px; }
.page-head--img .crumb, .page-head--img .crumb a { color: rgba(255,255,255,0.6); }
.page-head--img .crumb a:hover { color: #fff; }
.page-head--img .page-head__title { color: #fff; }
.page-head--img .page-head__sub { color: rgba(255,255,255,0.74); }
@media (max-width: 768px) { .page-head--img .page-head__inner { padding-top: 48px; padding-bottom: 44px; } }

/* ============================================================
   CATEGORY CHIPS
   ============================================================ */
.chips { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto;
  font-size: 13px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--text-2); text-decoration: none;
  padding: 9px 16px; border: 1px solid var(--border); border-radius: 99px;
  white-space: nowrap; transition: border-color 150ms, color 150ms, background 150ms;
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1.5px solid var(--border); border-radius: 14px;
  padding: 7px 7px 7px 18px; max-width: 680px;
  transition: border-color 160ms, box-shadow 160ms;
}
.search:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(28,105,212,0.12); }
.search svg { color: var(--muted); flex-shrink: 0; }
.search input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: 'Manrope', sans-serif; font-size: 15px; color: var(--navy);
}
.search input::placeholder { color: #b0b0b0; }

/* ============================================================
   SHOP LAYOUT :: sidebar + product grid
   ============================================================ */
.shop { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
@media (max-width: 880px) { .shop { grid-template-columns: 1fr; gap: 32px; } }

.side__label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.side__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.side__list a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; font-weight: 500; color: var(--text-2); text-decoration: none;
  padding: 11px 0; border-bottom: 1px solid var(--line); transition: color 150ms;
}
.side__list a:hover { color: var(--navy); }
.side__list a.active { color: var(--blue); font-weight: 700; }
.side__count { font-size: 11px; font-weight: 600; color: #b8b8b8; }

.toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.toolbar__meta { font-size: 14px; color: var(--text-3); }
.toolbar__meta strong { color: var(--navy); }
.select {
  background: #fff; border: 1.5px solid var(--border); border-radius: 10px;
  padding: 9px 14px; font-family: 'Manrope', sans-serif; font-size: 13px;
  font-weight: 600; color: var(--text-2); outline: none; cursor: pointer;
}

.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); }
@media (max-width: 720px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .prod-grid { grid-template-columns: 1fr; } }
.prod { background: #fff; display: flex; flex-direction: column; transition: background 180ms var(--btn-ease); }
.prod:hover { background: var(--surface); }
.prod__thumb { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 46px; background: #fff; }
.prod__body { padding: 18px 20px 22px; border-top: 1px solid var(--line); display: flex; flex-direction: column; flex: 1; }
.prod__cat { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 7px; }
.prod__name { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; color: var(--navy); line-height: 1.36; margin-bottom: 16px; }
.prod__cta { margin-top: auto; font-size: 13px; font-weight: 600; color: var(--blue); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: gap 160ms var(--btn-ease); }
.prod__cta:hover { gap: 9px; }

/* ============================================================
   PANEL :: bordered callout box
   ============================================================ */
.panel { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 40px; }
.panel--center { text-align: center; }
.panel--blue { border-color: rgba(28,105,212,0.28); }
.panel__title { font-size: 21px; font-weight: 700; letter-spacing: -0.025em; color: var(--navy); margin-bottom: 10px; }
.panel__text { font-size: 14px; color: var(--text-3); line-height: 1.6; max-width: 440px; }
.panel--center .panel__text { margin-left: auto; margin-right: auto; }

/* ============================================================
   OFFERS GRID
   ============================================================ */
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); }
@media (max-width: 800px) { .offers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .offers { grid-template-columns: 1fr; } }
.offer { background: #fff; display: flex; flex-direction: column; transition: background 180ms var(--btn-ease); }
.offer:hover { background: var(--surface); }
.offer__thumb { position: relative; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.offer__badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--blue); color: #fff; padding: 4px 11px; border-radius: 99px;
}
.offer__badge--red { background: #dc2626; }
.offer__body { padding: 18px 22px 24px; border-top: 1px solid var(--line); }
.offer__cat { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 7px; }
.offer__name { font-size: 15px; font-weight: 700; letter-spacing: -0.015em; color: var(--navy); line-height: 1.36; margin-bottom: 8px; }
.offer__meta { font-size: 13px; font-weight: 400; color: var(--text-3); line-height: 1.55; }

/* ============================================================
   BANNER :: outlet / emergency callout
   ============================================================ */
.banner { border-radius: 16px; padding: 28px 36px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.banner--blue { background: var(--blue); color: #fff; }
.banner--blue .banner__eyebrow { color: rgba(255,255,255,0.66); }
.banner--blue .banner__title { color: #fff; }
.banner--blue .banner__text { color: rgba(255,255,255,0.82); }
.banner--soft { background: var(--surface); border: 1px solid var(--border); }
.banner__main { flex: 1; min-width: 260px; }
.banner__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.banner__title { font-size: 22px; font-weight: 700; letter-spacing: -0.025em; color: var(--navy); margin-bottom: 8px; }
.banner__text { font-size: 14px; color: var(--text-3); max-width: 520px; line-height: 1.6; }
.banner__icon { font-size: 30px; flex-shrink: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.cbox { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 32px; }
.cbox__label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.cbox__title { font-size: 19px; font-weight: 700; letter-spacing: -0.025em; color: var(--navy); margin-bottom: 18px; }

.crow { display: flex; align-items: flex-start; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.crow:last-child { border-bottom: none; }
.crow__icon { flex-shrink: 0; width: 36px; height: 36px; background: var(--blue-soft); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--blue); }
.crow__label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.crow__value { font-size: 14px; font-weight: 500; color: var(--navy); line-height: 1.5; }
.crow__value a { color: var(--blue); text-decoration: none; }
.crow__value a:hover { text-decoration: underline; }

.hours { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hour { background: var(--surface); border-radius: 10px; padding: 12px 14px; }
.hour--open { border: 1px solid rgba(28,105,212,0.2); }
.hour--closed .hour__time { color: var(--muted); }
.hour__day { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.hour__time { font-size: 14px; font-weight: 600; color: var(--navy); }

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); }
@media (max-width: 860px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team { grid-template-columns: 1fr; } }
.tm { background: #fff; padding: 22px; transition: background 200ms var(--btn-ease); }
.tm:hover { background: var(--surface); }
.tm__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-soft); display: flex; align-items: center; justify-content: center; font-size: 17px; margin-bottom: 12px; }
.tm__name { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.tm__role { font-size: 12px; font-weight: 400; color: var(--muted); margin-bottom: 10px; }
.tm__contact a { display: block; font-size: 12px; font-weight: 500; color: var(--blue); text-decoration: none; line-height: 1.8; }
.tm__contact a:hover { text-decoration: underline; }

.btable { width: 100%; border-collapse: collapse; }
.btable td { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.btable td:first-child { color: var(--text-3); width: 46%; }
.btable td:last-child { color: var(--navy); font-weight: 500; }
.btable td a { color: var(--blue); text-decoration: none; }
.btable tr:last-child td { border-bottom: none; }

.map { border-radius: 16px; overflow: hidden; height: 380px; border: 1px solid var(--border); background: var(--surface); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   FORM
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-3);
}
.form-input {
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 400;
  color: var(--navy); background: #fff; border: 1.5px solid #e0e0e0;
  border-radius: 10px; padding: 12px 16px; outline: none; width: 100%;
  transition: border-color 160ms var(--btn-ease), box-shadow 160ms var(--btn-ease);
}
.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(28,105,212,0.12);
}
.form-input::placeholder { color: #b0b0b0; }
select.form-input { cursor: pointer; appearance: none; -webkit-appearance: none; }
textarea.form-input { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* Benefit check list */
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-icon {
  width: 20px; height: 20px; background: var(--blue); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.check-text { font-size: 15px; font-weight: 400; color: var(--text-2); letter-spacing: -0.01em; line-height: 1.55; }

/* Inline CTA row */
.cta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.wc-footer { background: #fff; border-top: 1px solid var(--border); padding: 80px 0 40px; }
.wc-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px; margin-bottom: 60px;
}
@media (max-width: 1024px) { .wc-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px)  { .wc-footer__grid { grid-template-columns: 1fr; gap: 36px; } }
.wc-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid var(--border); gap: 20px; flex-wrap: wrap;
}
.foot-brand { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: -0.025em; color: var(--navy); margin-bottom: 10px; }
.foot-desc { font-size: 13px; font-weight: 400; color: var(--text-3); line-height: 1.72; max-width: 240px; letter-spacing: -0.01em; margin-bottom: 20px; }
.foot-social { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid var(--border); color: var(--text-3); text-decoration: none; border-radius: 8px; transition: border-color 150ms, color 150ms; }
.foot-social:hover { border-color: var(--blue); color: var(--blue); }
.foot-col-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.foot-links { display: flex; flex-direction: column; gap: 10px; }
.foot-links a { font-size: 13px; font-weight: 400; color: var(--text-2); letter-spacing: -0.01em; text-decoration: none; transition: color 150ms; }
.foot-links a:hover { color: var(--navy); }
.foot-contact-row { display: flex; align-items: flex-start; gap: 9px; }
.foot-contact-row svg { flex-shrink: 0; margin-top: 2px; color: var(--muted); }
.foot-contact-row span { font-size: 13px; color: var(--text-2); letter-spacing: -0.01em; }
.foot-contact-row a { font-size: 13px; color: var(--blue); letter-spacing: -0.01em; text-decoration: none; font-weight: 500; }
.foot-copy { font-size: 12px; color: var(--muted); letter-spacing: -0.01em; }
.foot-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-legal a { font-size: 12px; color: var(--muted); letter-spacing: -0.01em; text-decoration: none; transition: color 150ms; }
.foot-legal a:hover { color: var(--text-2); }

/* ============================================================
   ECOM COMPONENTS (PLP / PDP / fitment / cart)
   Same tokens, same Manrope, white canvas, single blue accent.
   ============================================================ */

/* Cart badge on nav */
.nav__cart { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; color: var(--navy); text-decoration: none; transition: background 150ms; }
.nav__cart:hover { background: var(--surface); }
.cart-badge { position: absolute; top: 2px; right: 2px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 99px; background: var(--blue); color: #fff; font-size: 10px; font-weight: 800; display: none; align-items: center; justify-content: center; }

/* ---- FITMENT SEARCH (hero) -------------------------------- */
.fitment {
  background: #fff; border-radius: 16px; padding: 10px;
  display: flex; gap: 8px; align-items: stretch; flex-wrap: wrap;
  box-shadow: 0 18px 50px rgba(10,14,18,0.28); max-width: 760px;
}
.fitment__field { position: relative; flex: 1 1 130px; }
.fitment__field select, .fitment__field input {
  width: 100%; height: 50px; border: 1.5px solid var(--border); border-radius: 11px;
  padding: 0 14px; font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--navy); background: #fff; outline: none; appearance: none; -webkit-appearance: none; cursor: pointer;
}
.fitment__field input { font-weight: 500; cursor: text; }
.fitment__field select:focus, .fitment__field input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(28,105,212,0.12); }
.fitment__field::after { content: ''; position: absolute; right: 14px; top: 21px; width: 8px; height: 8px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); pointer-events: none; }
.fitment__field--text::after { display: none; }
.fitment .btn { height: 50px; flex: 0 0 auto; }
.fitment__tabs { display: flex; gap: 4px; margin-bottom: 10px; }
.fitment__tab { font-size: 12px; font-weight: 700; letter-spacing: -0.01em; color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); padding: 7px 14px; border-radius: 99px; cursor: pointer; transition: all 150ms; }
.fitment__tab.active { background: #fff; color: var(--navy); border-color: #fff; }

/* ---- BRAND ROW ------------------------------------------- */
.brandrow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
@media (max-width: 900px) { .brandrow { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 540px) { .brandrow { grid-template-columns: repeat(2, 1fr); } }
.brandrow a { background: #fff; display: flex; align-items: center; justify-content: center; padding: 22px 12px; font-size: 15px; font-weight: 800; letter-spacing: -0.02em; color: var(--navy); text-decoration: none; transition: background 160ms, color 160ms; }
.brandrow a:hover { background: var(--surface); color: var(--blue); }

/* ---- BENEFIT / TRUST ICON ROW ---------------------------- */
.benefits { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
@media (max-width: 900px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .benefits { grid-template-columns: 1fr; } }
.benefit { display: flex; flex-direction: column; gap: 10px; }
.benefit__icon { width: 42px; height: 42px; border-radius: 11px; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; }
.benefit__title { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; color: var(--navy); }
.benefit__text { font-size: 13px; color: var(--text-3); line-height: 1.55; }

.trustrow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
@media (max-width: 700px) { .trustrow { grid-template-columns: repeat(2, 1fr); } }
.trustrow__item { background: #fff; display: flex; align-items: center; gap: 12px; padding: 20px 22px; }
.trustrow__item svg { color: var(--blue); flex-shrink: 0; }
.trustrow__t { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.trustrow__s { font-size: 12px; color: var(--text-3); }

/* ---- STAR RATING ----------------------------------------- */
.stars { display: inline-flex; gap: 1px; color: #f59e0b; font-size: 13px; line-height: 1; }
.stars .off { color: #dcdcdc; }
.rate-line { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-3); }
.rate-line a { color: var(--blue); text-decoration: none; }

/* ---- PRODUCT CARD (shared PLP/landing) ------------------- */
.pcard { background: #fff; border: 1px solid var(--border); border-radius: 14px; display: flex; flex-direction: column; overflow: hidden; transition: border-color 160ms, box-shadow 160ms, transform 160ms; }
.pcard:hover { border-color: #d8d8d8; box-shadow: 0 10px 30px rgba(26,33,41,0.08); transform: translateY(-2px); }
.pcard__media { position: relative; aspect-ratio: 4/3; background: #fff; display: flex; align-items: center; justify-content: center; padding: 14px; }
.pcard__media img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pcard__badge { position: absolute; top: 10px; left: 10px; font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 9px; border-radius: 99px; background: var(--navy); color: #fff; }
.pcard__badge--stock { background: #15803d; }
.pcard__badge--order { background: #b45309; }
.pcard__fit { position: absolute; top: 10px; right: 10px; font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: 99px; background: rgba(21,128,61,0.1); color: #15803d; display: inline-flex; align-items: center; gap: 4px; }
.pcard__body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; border-top: 1px solid var(--line); }
.pcard__cat { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.pcard__name { font-size: 14px; font-weight: 700; letter-spacing: -0.015em; color: var(--navy); line-height: 1.36; text-decoration: none; }
.pcard__name:hover { color: var(--blue); }
.pcard__code { font-size: 11px; color: var(--muted); margin-top: 5px; }
.pcard__meta { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.pcard__stock { font-size: 11px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.pcard__stock--in { color: #15803d; } .pcard__stock--low { color: #b45309; } .pcard__stock--order { color: var(--muted); }
.pcard__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.pcard__foot { margin-top: 14px; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.pcard__price { line-height: 1.1; }
.pcard__price b { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--navy); }
.pcard__price small { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }
.pcard__add { flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px; border: none; background: var(--blue); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background 150ms, transform 100ms; }
.pcard__add:hover { background: var(--blue-hover); } .pcard__add:active { transform: scale(0.94); }

.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1100px) { .pgrid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .pgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 430px) { .pgrid { grid-template-columns: 1fr; } }

/* image placeholder (no photo) */
.ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: repeating-linear-gradient(135deg, #f7f9fc, #f7f9fc 10px, #f2f5f9 10px, #f2f5f9 20px); border-radius: 8px; color: #c2ccd6; }

/* ---- PLP LAYOUT ------------------------------------------ */
.plp { display: grid; grid-template-columns: 270px 1fr; gap: 36px; align-items: start; }
@media (max-width: 940px) { .plp { grid-template-columns: 1fr; } .plp__filters { display: none; } }
.facet { border-bottom: 1px solid var(--line); padding: 18px 0; }
.facet:first-child { padding-top: 0; }
.facet__title { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.facet__opt { display: flex; align-items: center; gap: 9px; padding: 5px 0; font-size: 14px; color: var(--text-2); cursor: pointer; }
.facet__opt input { width: 16px; height: 16px; accent-color: var(--blue); cursor: pointer; }
.facet__opt .ct { margin-left: auto; font-size: 11px; color: var(--muted); }
.facet__opt:hover { color: var(--navy); }
.range-row { display: flex; align-items: center; gap: 8px; }
.range-row input { width: 100%; height: 40px; border: 1.5px solid var(--border); border-radius: 9px; padding: 0 10px; font-family: 'Manrope', sans-serif; font-size: 13px; outline: none; }

/* ---- PDP ------------------------------------------------- */
.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 960px) { .pdp { grid-template-columns: 1fr; gap: 32px; } }
.gallery__main { aspect-ratio: 4/3; border: 1px solid var(--border); border-radius: 16px; background: #fff; display: flex; align-items: center; justify-content: center; padding: 28px; overflow: hidden; }
.gallery__main img { max-width: 100%; max-height: 100%; object-fit: contain; }
.gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery__thumb { width: 76px; height: 70px; border: 1.5px solid var(--border); border-radius: 11px; background: #fff; display: flex; align-items: center; justify-content: center; padding: 8px; cursor: pointer; transition: border-color 150ms; }
.gallery__thumb.active, .gallery__thumb:hover { border-color: var(--blue); }
.gallery__thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }

.buybox__cat { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); }
.buybox__title { font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--navy); margin: 10px 0 12px; }
.buybox__nums { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 13px; color: var(--text-3); margin-bottom: 18px; }
.buybox__nums b { color: var(--navy); }
.codechip { display: inline-flex; align-items: center; gap: 6px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 3px 9px; font-size: 12px; font-weight: 600; color: var(--navy); }

.pricecard { border: 1.5px solid var(--border); border-radius: 16px; padding: 22px; margin-bottom: 18px; }
.vat-toggle { display: inline-flex; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 3px; margin-bottom: 14px; }
.vat-toggle button { border: none; background: transparent; font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700; color: var(--text-3); padding: 6px 14px; border-radius: 7px; cursor: pointer; transition: all 150ms; }
.vat-toggle button.active { background: #fff; color: var(--navy); box-shadow: 0 1px 4px rgba(26,33,41,0.1); }
.price-big { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; color: var(--navy); line-height: 1; }
.price-sub { font-size: 13px; color: var(--text-3); margin-top: 6px; }
.stock-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; padding: 7px 13px; border-radius: 99px; margin: 16px 0 6px; }
.stock-pill--in { background: rgba(21,128,61,0.1); color: #15803d; }
.stock-pill--low { background: rgba(180,83,9,0.1); color: #b45309; }
.stock-pill--order { background: var(--surface); color: var(--text-2); }
.delivery-line { font-size: 13px; color: var(--text-2); display: flex; align-items: flex-start; gap: 8px; margin: 10px 0 18px; line-height: 1.5; }
.delivery-line svg { color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.delivery-line b { color: var(--navy); }

.buy-row { display: flex; gap: 12px; align-items: stretch; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; flex-shrink: 0; }
.qty button { width: 44px; height: 54px; border: none; background: #fff; font-size: 20px; color: var(--navy); cursor: pointer; transition: background 120ms; }
.qty button:hover { background: var(--surface); }
.qty input { width: 48px; height: 54px; border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); text-align: center; font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); outline: none; }
.buy-row .btn { flex: 1; height: 54px; font-size: 16px; }
.trust-inline { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 14px; font-size: 12px; color: var(--text-3); }
.trust-inline span { display: inline-flex; align-items: center; gap: 6px; }
.trust-inline svg { color: #15803d; }

/* fitment checker */
.fitcheck { border: 1.5px solid var(--border); border-radius: 16px; padding: 20px 22px; margin-bottom: 18px; }
.fitcheck__title { font-size: 14px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.fitcheck__row { display: flex; gap: 8px; flex-wrap: wrap; }
.fitcheck__row select { flex: 1 1 120px; height: 44px; border: 1.5px solid var(--border); border-radius: 10px; padding: 0 12px; font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600; color: var(--navy); background: #fff; outline: none; }
.fitcheck__result { margin-top: 14px; padding: 12px 14px; border-radius: 11px; font-size: 13px; font-weight: 700; display: none; align-items: center; gap: 9px; }
.fitcheck__result.ok { display: flex; background: rgba(21,128,61,0.1); color: #15803d; }
.fitcheck__result.no { display: flex; background: rgba(220,38,38,0.08); color: #dc2626; }

/* fitment vehicle list + OEM chips */
.veh-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.veh-list__row { background: #fff; display: flex; justify-content: space-between; gap: 12px; padding: 13px 16px; font-size: 13px; }
.veh-list__row b { color: var(--navy); } .veh-list__row span { color: var(--text-3); }
.oem-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.oem-chips .codechip { cursor: default; }

/* spec table */
.spectable { width: 100%; border-collapse: collapse; }
.spectable td { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: top; }
.spectable td:first-child { color: var(--text-3); width: 46%; }
.spectable td:last-child { color: var(--navy); font-weight: 600; }
.spectable tr:last-child td { border-bottom: none; }

/* PDP section tabs */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab-btn { flex: 0 0 auto; font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: -0.01em; color: var(--text-3); background: none; border: none; padding: 14px 18px; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 150ms, border-color 150ms; }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--blue); }
.tab-panel { display: none; padding-top: 28px; }
.tab-panel.active { display: block; }

/* sticky add-to-cart bar */
.sticky-buy { position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: rgba(255,255,255,0.95); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid var(--border); padding: 12px 0; transform: translateY(110%); transition: transform 260ms var(--btn-ease); box-shadow: 0 -8px 30px rgba(26,33,41,0.08); }
.sticky-buy.show { transform: translateY(0); }
.sticky-buy__inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 18px; }
.sticky-buy__name { font-size: 14px; font-weight: 700; color: var(--navy); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sticky-buy__price { font-size: 18px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; flex-shrink: 0; }
@media (max-width: 560px) { .sticky-buy__name { display: none; } }

/* reviews */
.review { padding: 20px 0; border-bottom: 1px solid var(--line); }
.review:last-child { border-bottom: none; }
.review__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.review__name { font-size: 13px; font-weight: 700; color: var(--navy); }
.review__date { font-size: 12px; color: var(--muted); margin-left: auto; }
.review__body { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* FAQ accordion */
.faq { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:last-child { border-bottom: none; }
.faq__q { width: 100%; text-align: left; background: #fff; border: none; padding: 20px 24px; font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq__q:hover { background: var(--surface); }
.faq__q .ico { flex-shrink: 0; transition: transform 200ms var(--btn-ease); color: var(--blue); }
.faq__item.open .faq__q .ico { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 240ms var(--btn-ease); }
.faq__a-inner { padding: 0 24px 22px; font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* cart table */
.cart-row { display: grid; grid-template-columns: 80px 1fr auto auto auto; gap: 18px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
@media (max-width: 640px) { .cart-row { grid-template-columns: 64px 1fr auto; grid-row-gap: 10px; } .cart-row__qty { grid-column: 2 / 4; } }
.cart-thumb { width: 80px; height: 70px; border: 1px solid var(--border); border-radius: 10px; background: #fff; display: flex; align-items: center; justify-content: center; padding: 8px; }
.cart-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cart-summary { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 26px; position: sticky; top: 90px; }
.cart-summary__row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-2); padding: 8px 0; }
.cart-summary__row--total { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 16px; font-size: 18px; font-weight: 800; color: var(--navy); }

/* generic section heading helper used by ecom pages */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }

/* ---- HORIZONTAL CAROUSEL (single-row product scroll) ----- */
.carousel { position: relative; }
.prow {
  display: flex; gap: 18px; overflow-x: auto; scroll-behavior: smooth;
  scroll-snap-type: x proximity; padding: 4px 2px 14px; scrollbar-width: none;
}
.prow::-webkit-scrollbar { display: none; }
.prow > * { flex: 0 0 252px; scroll-snap-align: start; }
@media (max-width: 560px) { .prow > * { flex: 0 0 80%; } }
.carousel__arrow {
  position: absolute; top: 42%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; box-shadow: 0 8px 24px rgba(26,33,41,0.14); cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: var(--navy); z-index: 5;
  transition: background 150ms, transform 100ms, opacity 150ms;
}
.carousel__arrow:hover { background: var(--surface); }
.carousel__arrow:active { transform: translateY(-50%) scale(0.94); }
.carousel__arrow--prev { left: -16px; }
.carousel__arrow--next { right: -16px; }
.carousel__arrow[disabled] { opacity: 0.35; cursor: default; }
@media (max-width: 760px) { .carousel__arrow { display: none; } }
