@charset "utf-8";
/* ==========================================================================
   E-Wheels Theme — accessible cross-border mobility store
   Target: English-speaking seniors (EU/US). Large type, high contrast,
   big tap targets. Warm-ink chrome with a terracotta topbar & action
   accents, sage for trust/success, and a cream hero — palette ported
   from the "scooter" design tokens.
   Loaded AFTER cui.css/lib.css so it wins on equal specificity.
   ========================================================================== */

:root {
  /* palette — warm-ink chrome + terracotta topbar/accents + cream hero (scooter tokens) */
  --navy: #2b2722; /* primary brand / headers / dark sections → warm ink (only topbar is terracotta) */
  --navy-700: #3a332c; /* dark-section hover variant */
  --navy-600: #4a4239; /* links / secondary dark */
  --amber: #c0633a; /* primary action / accent → bright terracotta */
  --amber-600: #a5542f; /* deeper terracotta (hover / active) */
  --amber-100: #f6e7dc; /* light terracotta tint (hovers / focus bg) */
  --green: #6f8f6a; /* trust / in-stock / success → sage */
  --red: #b5453a; /* price / sale / error → warm terracotta-red */
  --ink: #2b2722; /* body text */
  --ink-2: #5c544c; /* secondary text */
  --muted: #8c8278; /* meta text */
  --line: #e8ddd0; /* borders */
  --bg: #faf7f2; /* page background → warm cream */
  --card: #ffffff;
  --bg-alt: #f3ece3; /* alt sections → warm surface */
  --navy-tint: #f6e7dc; /* light terracotta wash (tinted areas / hovers) */
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 6px 20px rgba(43, 39, 34, 0.08);
  --shadow-lg: 0 18px 48px rgba(43, 39, 34, 0.16);
  --maxw: 1240px;
  --header-h: 78px;
  --ease: cubic-bezier(0.4, 0.15, 0.2, 1);
  --font:
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, system-ui, -apple-system,
    sans-serif;
}

/* ---- reset / base overrides (kill Chinese fonts from cui/lib) ---- */
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* 防止页面水平滚动 */
}
body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* 防止页面水平滚动 */
}
a {
  color: var(--navy-600);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}
a:hover {
  color: var(--amber-600);
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4 {
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 0.4em;
  font-weight: 800;
}
h1 {
  font-size: clamp(28px, 3.4vw, 46px);
}
h2 {
  font-size: clamp(24px, 2.6vw, 36px);
}
h3 {
  font-size: clamp(20px, 1.8vw, 26px);
}
p {
  margin: 0 0 1em;
}
.container,
.wp {
  margin: 0 120px;
  padding: 0 24px;
}
.wp {
  padding: 0 24px;
} /* keep lib .wp width but tighten */
img {
  max-width: 100%;
}
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  padding: 16px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s var(--ease);
  white-space: nowrap;
  min-height: 54px;
}
.btn--primary {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}
.btn--primary:hover {
  background: var(--amber-600);
  border-color: var(--amber-600);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(192, 99, 58, 0.4);
}
.btn--navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-700);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.btn--ghost:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn--outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: #fff;
}
.btn--lg {
  padding: 18px 38px;
  min-height: 60px;
  font-size: 19px;
}
.btn--block {
  display: flex;
  width: 100%;
}
.btn--sm {
  padding: 11px 18px;
  min-height: 42px;
  font-size: 16px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.topbar {
  background: linear-gradient(90deg, #8f4727, #a5542f);
  color: #fff;
  font-size: 15px;
}
.topbar .wp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar a {
  color: #fff;
}
.topbar a:hover {
  color: #fff;
}
.topbar .tb-left {
  display: flex;
  gap: 22px;
  align-items: center;
}
.topbar .tb-right {
  display: flex;
  gap: 22px;
  align-items: center;
}
.topbar .tb-ico {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar svg {
  width: 17px;
  height: 17px;
  fill: #fff;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(43, 39, 34, 0.05);
}
.site-header .wp {
  display: flex;
  align-items: center;
  gap: 26px;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand__logo {
  height: 46px;
  width: auto;
}
.brand__name {
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1;
}
.brand__name b {
  color: var(--amber);
}
.brand__tag {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}
.primary-nav a {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  position: relative;
}
.primary-nav a:hover {
  color: var(--navy);
  background: var(--navy-tint);
}
.primary-nav a.is-active {
  color: var(--amber-600);
}
.primary-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 3px;
  background: var(--amber);
  border-radius: 3px;
}
.primary-nav .has-drop::after {
  content: '▾';
  margin-left: 6px;
  font-size: 12px;
  color: var(--muted);
}
.web-nav {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 40px;
}
.web-nav > li {
  position: relative;
}
.web-nav > li > a {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  position: relative;
}
.web-nav > li > a:hover {
  color: var(--navy);
  background: var(--navy-tint);
}
.web-nav > li.on > a {
  color: var(--amber-600);
}
.web-nav > li.on > a::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 3px;
  background: var(--amber);
  border-radius: 3px;
}
.web-nav .submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s var(--ease);
  z-index: 50;
  list-style: none;
  margin: 0;
}
.web-nav > li:hover > .submenu,
.web-nav > li:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.web-nav .submenu li {
  margin: 0;
}
.web-nav .submenu li a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 16px;
  color: var(--ink);
  font-weight: 600;
}
.web-nav .submenu li a:hover {
  background: var(--amber-100);
  color: var(--navy);
}
.web-nav .has-submenu > a {
  cursor: pointer;
}
.web-nav .has-submenu > a .iconfont {
  font-size: 12px;
  margin-left: 6px;
  color: var(--muted);
}
.mega {
  position: relative;
}
.mega__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s var(--ease);
  z-index: 50;
}
.mega:hover .mega__panel,
.mega:focus-within .mega__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega__panel a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 16px;
}
.mega__panel a:hover {
  background: var(--amber-100);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.h-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  background: var(--navy-tint);
  min-height: 48px;
}
.h-action:hover {
  background: var(--amber-100);
  color: var(--navy);
}
.h-action svg {
  width: 20px;
  height: 20px;
  fill: var(--navy);
}
.h-action .num {
  color: var(--amber-600);
}
.phone-cta {
  background: var(--amber);
  color: #fff !important;
  font-size: 17px;
}
.phone-cta:hover {
  background: var(--amber-600);
}
.phone-cta svg {
  fill: #fff;
}

.cart-badge {
  position: relative;
}
.cart-badge .count {
  position: absolute;
  top: -7px;
  right: -7px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  min-width: 21px;
  height: 21px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #fff;
}

/* mobile menu toggle */
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.2s;
}
body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   HERO / BANNER
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #faf7f2 0%, #f3ece3 100%);
  color: var(--ink);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -4%;
  top: 0;
  bottom: 0;
  width: 55%;
  background: radial-gradient(
    circle at 70% 40%,
    rgba(192, 99, 58, 0.12),
    transparent 60%
  );
}
.hero .wp {
  position: relative;
  z-index: 2;
  padding: 70px 24px 78px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--amber-100);
  border: 1px solid rgba(192, 99, 58, 0.3);
  color: var(--amber-600);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--ink);
  margin-bottom: 18px;
}
.hero h1 b {
  color: var(--amber);
}
.hero p.lead {
  font-size: 21px;
  color: var(--ink-2);
  max-width: 560px;
  margin-bottom: 30px;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero__stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero__stat b {
  display: block;
  font-size: 30px;
  color: var(--amber);
  font-weight: 900;
}
.hero__stat span {
  font-size: 15px;
  color: var(--muted);
}
.hero__art {
  position: relative;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff, #f6e7dc);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* trust bar */
.trustbar-scroll-wrapper {
  overflow: hidden;
  width: 100%;
}
.trustbar-scroll-content {
  display: flex;
  flex-wrap: nowrap !important;
  gap: 60px;
  animation: scrollLeft 20s linear infinite;
  white-space: nowrap;
}
.trustbar-scroll-content:hover {
  animation-play-state: paused;
}
.trustbar-scroll-content li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
  padding-right: 0;
}
.trustbar-scroll-content svg {
  width: 26px;
  height: 26px;
  fill: #f5a623;
  flex-shrink: 0;
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.trustbar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 100px;
}
.trustbar li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.trustbar svg {
  width: 26px;
  height: 26px;
  fill: #f5a623;
  flex-shrink: 0;
}

/* banner image used by inner pages (kept class .banner / .ban compatible) */
.banner,
.ban {
  height: 240px;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  position: relative;
}
.ban::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(43, 39, 34, 0.72),
    rgba(43, 39, 34, 0.25)
  );
}
.ban .wp {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.ban h1 {
  color: #fff;
  margin: 0;
}
.breadcrumb {
  padding: 18px 0;
  font-size: 16px;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--navy-600);
}
.breadcrumb a:hover {
  color: var(--amber-600);
}
.breadcrumb .sep {
  margin: 0 8px;
  color: var(--line);
}

/* ==========================================================================
   SECTIONS / LAYOUT
   ========================================================================== */
.section {
  padding: 64px 0;
}
.section--tight {
  padding: 42px 0;
}
.section--alt {
  background: var(--bg-alt);
}
.section--navy {
  background: var(--navy);
  color: #fff;
}
.section--navy h2,
.section--navy h3 {
  color: #fff;
}
.section-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head .eyebrow {
  color: var(--amber-600);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 15px;
  display: block;
  margin-bottom: 10px;
}
.section-head p {
  color: var(--ink-2);
  font-size: 19px;
}
.center {
  text-align: center;
}

/* ==========================================================================
   PRODUCT GRID / CARDS
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.22s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: #d9c9b6;
}
.product-card__media {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg);
  overflow: hidden;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.product-card:hover .product-card__media img {
  transform: scale(1.05);
}
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.product-card__badge--new {
  background: var(--green);
}
.product-card__rank {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
  z-index: 2;
}
.product-card__hot-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
  z-index: 2;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-card__cat {
  font-size: 13px;
  font-weight: 700;
  color: var(--amber-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-card__title {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}
.product-card__title a {
  color: inherit;
}
.product-card__spec {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}
.product-card__stars {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--amber);
}
.product-card__stars .rate {
  color: var(--muted);
}
.product-card__foot {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-top: 6px;
}
.price {
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
  white-space: nowrap;
}
.price .from {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  display: block;
  line-height: 1;
}
.price .was {
  font-size: 15px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 700;
  margin-left: 8px;
}
.product-card__buy {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.product-card__buy .btn {
  flex: 1;
}

/* category cards (homepage) */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cat-grid--featured {
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: repeat(2, 320px);
  gap: var(--s-4, 24px);
}
.cat-grid--featured .cat-card {
  aspect-ratio: unset;
  height: 100%;
}
.cat-card--big {
  grid-row: span 2;
}
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--navy-700);
  box-shadow: var(--shadow);
}
.cat-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.4s var(--ease);
}
.cat-card--small .cat-card__img,
.cat-card--big .cat-card__img {
  object-fit: contain;
  object-position: center;
  background: var(--navy-700);
}
.cat-card:hover .cat-card__img {
  transform: scale(1.06);
}
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(43, 39, 34, 0.88) 4%,
    rgba(43, 39, 34, 0.25) 70%
  );
}
.cat-card__body {
  position: relative;
  z-index: 2;
  padding: 24px;
  width: 100%;
}
.cat-card__body h3 {
  color: #fff;
  margin: 0 0 4px;
  font-size: 22px;
}
.cat-card__body span {
  font-size: 15px;
  color: #e3dad0;
}
.cat-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 800;
  color: var(--amber);
  font-size: 16px;
}

/* ==========================================================================
   FEATURES (why choose us)
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
}
.feature__ico {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  background: var(--amber-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__ico svg {
  width: 32px;
  height: 32px;
  fill: var(--amber-600);
}
.feature h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.feature p {
  font-size: 16px;
  color: var(--ink-2);
  margin: 0;
}

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 24px;
  background: var(--navy-tint);
  border-radius: var(--radius);
  text-align: center;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  background: var(--amber);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  border: 4px solid var(--bg);
}
.step h3 {
  font-size: 18px;
  margin: 8px 0 6px;
}
.step p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.testi__stars {
  color: var(--amber);
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testi__quote {
  font-size: 18px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 18px;
  font-style: italic;
}
.testi__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 19px;
}
.testi__author b {
  display: block;
  color: var(--navy);
  font-size: 17px;
}
.testi__author span {
  font-size: 14px;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--amber) 0%, var(--amber-600) 100%);
  color: #fff;
  text-align: center;
  padding: 58px 0;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 10px;
}
.cta-band p {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}
.cta-band .btn {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.cta-band .btn:hover {
  background: var(--navy-700);
}

/* ==========================================================================
   TWO COLUMN (list pages: sidebar + content)
   ========================================================================== */
.layout-2col {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 36px;
  align-items: start;
}
.sidebar {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.panel__head {
  background: var(--navy);
  color: #fff;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 800;
}
.panel__body {
  padding: 8px;
}
.cat-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  transition: 0.15s;
}
.cat-nav a:hover {
  background: var(--navy-tint);
  color: var(--navy);
}
.cat-nav a.is-active {
  background: var(--amber-100);
  color: var(--amber-600);
  font-weight: 800;
}
.cat-nav .sub {
  padding-left: 34px;
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 600;
}
.cat-nav a .arr {
  color: var(--muted);
  font-size: 13px;
}
.help-block {
  padding: 22px;
}
.help-block h4 {
  font-size: 17px;
  margin-bottom: 12px;
  color: var(--navy);
}
.help-block p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0 0 10px;
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.help-block svg {
  width: 18px;
  height: 18px;
  fill: var(--amber-600);
  flex-shrink: 0;
  margin-top: 3px;
}
.help-block .phone {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  display: block;
  margin-top: 8px;
}

/* content main */
.content-main h1.page-title {
  margin-bottom: 18px;
}
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.toolbar .count {
  color: var(--muted);
  font-size: 16px;
}
.toolbar select {
  font: inherit;
  font-size: 16px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  min-height: 46px;
}

/* product list grid (inherits product-grid) */

/* ==========================================================================
   PDP (product detail)
   ========================================================================== */
.pdp {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 44px;
  align-items: start;
}
.pdp__gallery {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pdp__main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pdp__gal {
  flex: 1 1 auto;
  min-width: 0;
}
.pdp__gallery .main-img {
  aspect-ratio: 1;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.pdp__gallery .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp__thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  order: -1;
  flex: 0 0 auto;
}
.pdp__thumbs img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--line);
  cursor: pointer;
}
.pdp__thumbs img:hover {
  border-color: var(--amber);
}
.pdp__cat {
  color: var(--amber-600);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 14px;
}
.pdp h1 {
  font-size: 34px;
  margin-bottom: 10px;
}
.pdp__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  font-size: 16px;
  color: var(--muted);
  flex-wrap: wrap;
}
.pdp__stars {
  color: var(--amber);
  letter-spacing: 1px;
}
.pdp__pricebox {
  background: var(--navy-tint);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 22px;
}
.pdp__pricebox .price {
  font-size: 38px;
}
.pdp__pricebox .save {
  color: var(--green);
  font-weight: 800;
  font-size: 16px;
  margin-left: 10px;
}
.pdp__stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 800;
  font-size: 16px;
  margin-top: 8px;
}
.pdp__stock::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}
.pdp__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}
.pdp__benefits li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 16px;
}
.pdp__benefits svg {
  width: 22px;
  height: 22px;
  fill: var(--green);
  flex-shrink: 0;
}
.qty-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 50px 0 20px;
  flex-wrap: wrap;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.qty button {
  width: 48px;
  height: 54px;
  background: #fff;
  border: 0;
  font-size: 24px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}
.qty button:hover {
  background: var(--navy-tint);
}
.qty input {
  width: 64px;
  height: 54px;
  border: 0;
  text-align: center;
  font: inherit;
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
}
.pdp__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.pdp__actions .btn {
  flex: 1;
  min-width: 140px;
}
.pdp__assurance {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pdp__assurance div {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-2);
}
.pdp__assurance svg {
  width: 22px;
  height: 22px;
  fill: var(--navy-600);
}

/* tabs */
.tabs {
  margin-top: 50px;
}
.tabs__nav {
  display: flex;
  gap: 6px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tabs__nav button {
  background: none;
  border: 0;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  color: var(--muted);
  padding: 14px 22px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.tabs__nav button.is-active {
  color: var(--navy);
  border-color: var(--amber);
}
.tabs__pane {
  display: none;
  line-height: 1.8;
  color: var(--ink-2);
  font-size: 17px;
}
.tabs__pane.is-active {
  display: block;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.spec-table th,
.spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.spec-table th {
  background: var(--bg-alt);
  color: var(--navy);
  font-weight: 800;
  width: 38%;
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field--full {
  grid-column: 1/-1;
}
.field label {
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}
.field label .req {
  color: var(--red);
}
.field input,
.field textarea,
.field select {
  font: inherit;
  font-size: 18px;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  width: 100%;
  min-height: 54px;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--amber);
  outline: none;
  box-shadow: 0 0 0 3px var(--amber-100);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.form-note {
  font-size: 15px;
  color: var(--muted);
  margin-top: 8px;
}

/* generic content (single/article) */
.richtext {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-2);
  max-width: 820px;
}
.richtext h2,
.richtext h3 {
  margin-top: 1.4em;
}
.richtext img {
  border-radius: var(--radius);
  margin: 1.2em 0;
}
.richtext ul,
.richtext ol {
  padding-left: 1.4em;
  margin: 0 0 1em;
}
.richtext li {
  margin-bottom: 0.5em;
}

/* article list */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-item {
  display: flex;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  transition: 0.18s;
}
.news-item:hover {
  box-shadow: var(--shadow);
  border-color: #d9c9b6;
}
.news-item__img {
  width: 200px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg);
}
.news-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-item__body h3 {
  font-size: 21px;
  margin-bottom: 8px;
}
.news-item__body h3 a {
  color: var(--navy);
}
.news-item__meta {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}
.news-item__meta span + span::before {
  content: '•';
  margin: 0 8px;
  color: var(--line);
}
.news-item__body p {
  font-size: 16px;
  color: var(--ink-2);
  margin: 0;
}

/* FAQ */
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  font-size: 26px;
  color: var(--amber);
  font-weight: 800;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item__answer {
  padding: 0 24px 22px;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.7;
}

/* PDP spec / variant selectors */
.pdp__specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
  padding-top: 8px;
}
.spec-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.spec-group__name {
  font-weight: 800;
  color: var(--navy);
  font-size: 16px;
}
.spec-group__values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.spec-btn {
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 11px 20px;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  cursor: pointer;
  min-height: 48px;
  transition: 0.15s;
}
.spec-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.spec-btn.is-active,
.spec-btn.btn-danger {
  border-color: var(--amber);
  background: var(--amber-100);
  color: var(--navy);
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pagination a,
.pagination span {
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  background: #fff;
}
.pagination a:hover {
  border-color: var(--amber);
  color: var(--amber-600);
}
.pagination .current {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.pagination .disabled {
  color: var(--line);
  cursor: default;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy);
  color: #e3dad0;
  padding: 56px 0 0;
  margin-top: 0;
}
.site-footer a {
  color: #e3dad0;
}
.site-footer a:hover {
  color: var(--amber);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .brand__name {
  color: #fff;
}
.footer-brand p {
  font-size: 15px;
  margin: 16px 0;
  max-width: 300px;
  line-height: 1.7;
}
.footer-brand .footer-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.footer-brand .footer-trust span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}
.footer-col h4 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col ul a {
  font-size: 16px;
}
.footer-contact p {
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact svg {
  width: 18px;
  height: 18px;
  fill: var(--amber);
  flex-shrink: 0;
  margin-top: 4px;
}
.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.newsletter input {
  flex: 1;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 9px;
  padding: 0 14px;
  font: inherit;
  font-size: 16px;
}
.newsletter input::placeholder {
  color: #948578;
}
.newsletter button {
  background: var(--amber);
  color: #fff;
  border: 0;
  border-radius: 9px;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
  font-size: 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}
.footer-bottom .pays {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-bottom .pays span {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

/* mini-cart drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: #fff;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
body.cart-open .cart-drawer {
  transform: translateX(0);
}
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 39, 34, 0.5);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
body.cart-open .cart-overlay {
  opacity: 1;
  visibility: visible;
}
.cart-drawer__head {
  background: var(--navy);
  color: #fff;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer__head h3 {
  color: #fff;
  margin: 0;
  font-size: 20px;
}
.cart-drawer__close {
  background: none;
  border: 0;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
}
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.cart-drawer__foot {
  border-top: 1px solid var(--line);
  padding: 20px 24px;
}
.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
}
.mini-cart-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.mini-cart-item img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 9px;
  background: var(--bg);
}
.mini-cart-item h4 {
  font-size: 16px;
  margin: 0 0 4px;
  color: var(--navy);
  font-weight: 700;
}
.mini-cart-item .mc-price {
  color: var(--red);
  font-weight: 800;
  font-size: 16px;
}
.mini-cart-item .mc-qty {
  color: var(--muted);
  font-size: 14px;
}
.cart-empty {
  text-align: center;
  padding: 50px 20px;
  color: var(--muted);
}
.cart-empty svg {
  width: 64px;
  height: 64px;
  fill: var(--line);
  margin: 0 auto 16px;
}

/* add-to-cart toast */
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--navy);
  color: #fff;
  padding: 16px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 17px;
  z-index: 1200;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 12px;
  align-items: center;
  transition: transform 0.3s var(--ease);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}
.toast svg {
  width: 24px;
  height: 24px;
  fill: var(--green);
}

/* floating contact */
.float-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-contact a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: 0.18s;
}
.float-contact .tel {
  background: var(--amber);
}
.float-contact .top {
  background: var(--navy);
}
.float-contact svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.float-contact a:hover {
  transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .product-grid,
  .product-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .cat-grid,
  .feature-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-grid--featured {
    grid-template-columns: 1.2fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }
  .topbar {
    display: none;
  }
  .primary-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 16px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.28s var(--ease);
    z-index: 850;
    margin: 0;
  }
  body.nav-open .primary-nav {
    transform: translateX(0);
  }
  .web-nav {
    flex-direction: column;
    gap: 0;
  }
  .web-nav > li > a {
    padding: 16px;
    font-size: 19px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .web-nav .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 16px;
  }
  .mega__panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 16px;
  }
  .header-actions .h-action span.lbl {
    display: none;
  }
  .hero .wp {
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }
  .hero__art {
    display: none;
  }
  .layout-2col {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .pdp {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 48px 0;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 17px;
  }
  .wp,
  .container {
    padding: 0 16px;
  }
  .product-grid,
  .product-grid--3 {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .cat-grid,
  .cat-grid--featured,
  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .cat-grid--featured .cat-card--big {
    grid-row: auto;
  }
  .cat-grid--featured .cat-card {
    aspect-ratio: 1/1;
    height: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .product-card__title {
    font-size: 17px;
  }
  .price {
    font-size: 20px;
  }
  .news-item {
    flex-direction: column;
  }
  .news-item__img {
    width: 100%;
    height: 180px;
  }
  .hero p.lead {
    font-size: 18px;
  }
  .hero__cta {
    flex-direction: column;
  }
  .hero__cta .btn {
    width: 100%;
  }
  .trustbar ul {
    flex-direction: column;
    gap: 14px;
  }
}

/* ==========================================================================
   v2 MODERN ADDITIONS — list pages + PDP refresh (2026-08)
   Additive only; loaded after existing rules. Tokens unchanged.
   Color semantics held tight: sage = good news (save/in-stock/trust),
   terracotta = action, warm-red = price/sale.
   ========================================================================== */

/* numeric prices align cleanly — senior legibility */
.price,
.pdp__price-now,
.pdp-sticky__price {
  font-variant-numeric: tabular-nums;
}

.col-r {
  min-width: 0;
}

/* ---------- Shop hero (cream category header — replaces .ban on list pages) ---------- */
.shop-hero {
  background: linear-gradient(135deg, #faf7f2 0%, #f3ece3 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.shop-hero::after {
  content: '';
  position: absolute;
  right: -6%;
  top: -25%;
  width: 46%;
  height: 150%;
  background: radial-gradient(
    circle at 60% 40%,
    rgba(192, 99, 58, 0.1),
    transparent 62%
  );
  pointer-events: none;
}
.shop-hero .wp {
  position: relative;
  z-index: 2;
  padding: 46px 24px 40px;
}
.shop-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber-600);
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}
.shop-hero h1 {
  margin: 0 0 10px;
  color: var(--navy);
}
.shop-hero p.lead {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 0 20px;
}
.shop-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.shop-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 15px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(43, 39, 34, 0.04);
}
.shop-hero__chip svg {
  width: 17px;
  height: 17px;
  fill: var(--green);
  flex-shrink: 0;
}

/* ---------- Product card refinements ---------- */
.product-card {
  position: relative;
}
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.product-card__rating .stars {
  color: var(--amber);
  letter-spacing: 1.5px;
  font-size: 14px;
}
/* savings pill (filled by JS); hidden when empty */
.js-save {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  background: rgba(111, 143, 106, 0.16);
  padding: 3px 9px;
  border-radius: 50px;
  margin-left: 6px;
  vertical-align: middle;
}
.js-save:empty {
  display: none;
}

/* ---------- View switch (grid / list) ---------- */
.toolbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.view-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
}
.view-switch button {
  width: 46px;
  height: 46px;
  border: 0;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition:
    background 0.15s var(--ease),
    color 0.15s var(--ease);
}
.view-switch button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.view-switch button:hover {
  color: var(--navy);
  background: var(--navy-tint);
}
.view-switch button.is-active {
  background: var(--navy);
  color: #fff;
}

/* ---------- List view (horizontal cards for easy spec comparison) ---------- */
.product-grid--list {
  grid-template-columns: 1fr;
  gap: 16px;
}
.product-grid--list .product-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: stretch;
}
.product-grid--list .product-card__media {
  aspect-ratio: auto;
}
.product-grid--list .product-card__media img {
  height: 100%;
  min-height: 200px;
}
.product-grid--list .product-card__body {
  padding: 24px 26px;
  gap: 12px;
  justify-content: center;
}
.product-grid--list .product-card__title {
  font-size: 22px;
}
.product-grid--list .product-card__spec {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-grid--list .product-card__buy {
  margin-top: 8px;
}
.product-grid--list .product-card__buy .btn {
  max-width: 240px;
}

/* ---------- Empty state ---------- */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--ink-2);
}
.empty-state svg {
  width: 60px;
  height: 60px;
  fill: none;
  stroke: var(--line);
  stroke-width: 1.6;
  margin: 0 auto 16px;
  display: block;
}
.empty-state h3 {
  color: var(--navy);
  margin-bottom: 8px;
}
.empty-state p {
  margin: 0 auto 20px;
  max-width: 440px;
}

/* ---------- PDP gallery: arrows / active thumb / zoom ---------- */
.pdp__gal {
  position: relative;
}
.pdp__gal .main-img {
  cursor: zoom-in;
}
.pdp__gal .main-img img {
  transition: transform 0.35s var(--ease);
}
.pdp__gal:hover .main-img img {
  transform: scale(1.06);
}
.pdp__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 3px 12px rgba(43, 39, 34, 0.18);
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.18s var(--ease),
    color 0.18s var(--ease);
  z-index: 4;
}
.pdp__arrow:hover {
  background: var(--amber);
  color: #fff;
}
.pdp__arrow--prev {
  left: 12px;
}
.pdp__arrow--next {
  right: 12px;
}
.pdp__zoom-hint {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(43, 39, 34, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 4;
  pointer-events: none;
}
.pdp__zoom-hint svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}
.pdp__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
}
.pdp__thumbs img.is-active {
  border-color: var(--amber);
  box-shadow: 0 0 0 2px var(--amber-100);
}

/* ---------- PDP price box ---------- */
.pdp__price-main {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.pdp__price-main .from {
  font-size: 15px;
  color: var(--muted);
  font-weight: 700;
}
.pdp__price-now {
  font-size: 38px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.pdp__price-was {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 700;
}
.pdp__save {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
  margin-top: 8px;
}
.pdp__save:empty {
  display: none;
}

/* ---------- PDP payment row ---------- */
.pdp__pay {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
}
.pdp__pay-ico {
  width: 18px;
  height: 18px;
  fill: var(--green);
  flex-shrink: 0;
}
.pdp__pay .pays {
  display: inline-flex;
  gap: 7px;
}
.pdp__pay .pays span {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 800;
  color: var(--navy-600);
  letter-spacing: 0.4px;
}

/* ---------- PDP sticky add-to-cart bar (signature) ---------- */
.pdp-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 880;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(43, 39, 34, 0.14);
  transform: translateY(120%);
  transition: transform 0.3s var(--ease);
}
.pdp-sticky.is-visible {
  transform: translateY(0);
}
.pdp-sticky .wp {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
}
.pdp-sticky__img {
  width: 56px;
  height: 56px;
  border-radius: 9px;
  object-fit: cover;
  background: var(--bg);
  flex-shrink: 0;
}
.pdp-sticky__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin-right: auto;
}
.pdp-sticky__title {
  font-weight: 800;
  color: var(--navy);
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdp-sticky__price {
  color: var(--red);
  font-weight: 900;
  font-size: 18px;
}
.pdp-sticky .btn {
  flex-shrink: 0;
}
body.pdp-sticky-on {
  padding-bottom: 84px;
}

/* ---------- Related section ---------- */
.related {
  margin-top: 64px;
}
.related .section-head {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 28px;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .product-card,
  .product-card__media img,
  .pdp__gal .main-img img,
  .pdp-sticky,
  .btn,
  .pdp__arrow,
  .view-switch button,
  a {
    transition: none !important;
  }
  .product-card:hover {
    transform: none;
  }
  .pdp__gal:hover .main-img img {
    transform: none;
  }
}

/* ---------- Responsive additions ---------- */
@media (max-width: 900px) {
  .product-grid--list .product-card {
    grid-template-columns: 200px 1fr;
  }
  .pdp-sticky__title {
    font-size: 15px;
  }
}
@media (max-width: 640px) {
  .shop-hero .wp {
    padding: 34px 16px 30px;
  }
  .product-grid--list .product-card {
    grid-template-columns: 1fr;
  }
  .product-grid--list .product-card__media img {
    min-height: 0;
    aspect-ratio: 16/9;
  }
  .pdp__zoom-hint {
    display: none;
  }
  .pdp-sticky .wp {
    gap: 10px;
    padding: 10px 16px;
  }
  .pdp-sticky__img {
    width: 44px;
    height: 44px;
  }
  .pdp-sticky .btn {
    padding: 12px 18px;
    min-height: 48px;
    font-size: 15px;
  }
  body.pdp-sticky-on {
    padding-bottom: 76px;
  }
}

/* ==========================================================================
   PDP v2 — Jasion-style rebuild (2026-08)
   New blocks only: urgency ribbon, lede/meta, countdown, promo, trust strip,
   gallery showcase, KPI grid, alternating feature rows, FAQ accordion.
   Warm-ink/terracotta tokens. Existing .pdp__* classes are reused unchanged.
   ========================================================================== */

/* ---- urgency ribbon ---- */
.pdp-urgency {
  background: linear-gradient(90deg, var(--amber), var(--amber-600));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-align: center;
  padding: 9px 0;
}
.pdp-urgency .wp {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  justify-content: center;
  align-items: center;
}
.pdp-urgency .dot {
  opacity: 0.6;
}

/* ---- buy box: lede ---- */
.pdp__lede {
  font-size: 18px;
  color: var(--ink-2);
  margin: 0 0 16px;
}

/* ---- meta link (review link beside stars) ---- */
.pdp__meta-link {
  font-size: 14px;
  color: var(--muted);
  text-decoration: underline;
}

/* ---- countdown ---- */
.pdp-countdown {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--amber-100);
  border: 1px dashed var(--amber);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 16px;
}
.pdp-countdown__label {
  font-weight: 700;
  color: var(--amber-600);
  font-size: 14px;
}
.pdp-countdown__clock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pdp-countdown__unit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 4px 10px;
  min-width: 46px;
}
.pdp-countdown__unit b {
  font-size: 20px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pdp-countdown__unit i {
  font-style: normal;
  font-size: 10px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pdp-countdown__sep {
  color: var(--amber-600);
  font-weight: 700;
  font-size: 18px;
}

/* ---- promo / gift banner ---- */
.pdp-promo {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.pdp-promo svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--amber-600);
  stroke-width: 1.8;
  flex-shrink: 0;
}
.pdp-promo p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-2);
}
.pdp-promo b {
  color: var(--ink);
}

/* ---- trust strip ---- */
.pdp-truststrip {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pdp-truststrip li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 600;
}
.pdp-truststrip svg {
  width: 22px;
  height: 22px;
  fill: var(--amber);
  flex-shrink: 0;
}

/* ---- gallery showcase ---- */
.pdp-gallery-show {
  padding: 8px 0 0;
  margin-bottom: 8px;
}
.pdp-gallery-show__rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0 12px;
  scroll-snap-type: x mandatory;
}
.pdp-gallery-show__cell {
  flex: 0 0 auto;
  width: 200px;
  height: 150px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  scroll-snap-align: start;
  box-shadow: var(--shadow);
}
.pdp-gallery-show__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--ease);
}
.pdp-gallery-show__cell:hover img {
  transform: scale(1.05);
}

/* ---- KPI grid ---- */
.pdp-kpis__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pdp-kpi {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}
.pdp-kpi b {
  display: block;
  font-size: 40px;
  line-height: 1;
  color: var(--amber-600);
}
.pdp-kpi b span {
  font-size: 18px;
  color: var(--ink-2);
  margin-left: 3px;
}
.pdp-kpi > span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-2);
}

/* ---- alternating feature rows ---- */
.pdp-featurerow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}
.pdp-featurerow:last-child {
  margin-bottom: 0;
}
.pdp-featurerow__media {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.pdp-featurerow__media img {
  max-width: 80%;
  height: auto;
}
.pdp-featurerow__body .eyebrow {
  display: block;
  margin-bottom: 6px;
}
.pdp-featurerow__body h3 {
  font-size: 28px;
  margin: 0 0 12px;
  color: var(--navy);
}
.pdp-featurerow__body p {
  font-size: 17px;
  color: var(--ink-2);
  margin: 0;
}
.pdp-featurerow:nth-child(even) .pdp-featurerow__media {
  order: 2;
}

/* ---- FAQ accordion (native <details>) ---- */
.pdp-faq {
  max-width: 860px;
  margin: 0 auto;
}
.pdp-faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pdp-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.pdp-faq summary::-webkit-details-marker {
  display: none;
}
.pdp-faq summary::after {
  content: '+';
  font-size: 24px;
  color: var(--amber-600);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
.pdp-faq details[open] summary::after {
  content: '−';
}
.pdp-faq details[open] summary {
  border-bottom: 1px solid var(--line);
}
.pdp-faq details p {
  margin: 0;
  padding: 18px 22px 20px;
  color: var(--ink-2);
  font-size: 16px;
}

/* ---- responsive additions ---- */
@media (max-width: 900px) {
  .pdp__gallery {
    flex-direction: column;
  }
  .pdp__thumbs {
    flex-direction: row;
    order: 0;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .pdp-kpis__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pdp-featurerow {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 36px;
  }
  .pdp-featurerow:nth-child(even) .pdp-featurerow__media {
    order: 0;
  }
  .pdp-featurerow__media {
    min-height: 200px;
  }
  .pdp-truststrip {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .pdp-urgency {
    font-size: 13px;
  }
  .pdp-countdown {
    padding: 10px 12px;
    gap: 8px;
  }
  .pdp-countdown__label {
    width: 100%;
  }
  .pdp-kpi b {
    font-size: 32px;
  }
  .pdp-gallery-show__cell {
    width: 160px;
    height: 120px;
  }
}

/* ==========================================================================
   PDP — Core Specs (6 icons under main image) + Full Specifications table
   Additive only. Warm-ink/terracotta tokens unchanged.
   ========================================================================== */

/* left column wrapper (gallery + core specs stack vertically in the grid cell) */
.pdp__col-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

/* ---- 6 core specs card ---- */
.pdp-coreparams {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.pdp-coreparams__title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 16px;
}
.pdp-coreparams__title::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--amber);
  border-radius: 2px;
}
.pdp-coreparams__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 24px;
}
.pdp-coreparam {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  gap: 7px;
}
.pdp-coreparam__ico {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pdp-coreparam__ico svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--amber-600);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pdp-coreparam__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pdp-coreparam__val {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pdp-coreparam__val i {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-left: 2px;
}
.pdp-coreparam__label {
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 600;
  line-height: 1.2;
}

/* ---- Full Specifications (always visible, above detail tabs) ---- */
.pdp-specs {
  margin-top: 50px;
}
.pdp-specs .section-head {
  margin-bottom: 30px;
}
.pdp-specs__wrap {
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pdp-specs__wrap .spec-table {
  font-size: 15px;
  margin: 0;
}
.pdp-specs__wrap .spec-table th,
.pdp-specs__wrap .spec-table td {
  padding: 13px 18px;
}
.pdp-specs__wrap .spec-table td {
  color: var(--ink);
}
.pdp-specs__wrap .spec-table tbody tr:last-child th,
.pdp-specs__wrap .spec-table tbody tr:last-child td {
  border-bottom: 0;
}
/* 4-column layout for spec table (2 params per row) */
.spec-table--2col {
  width: 100%;
  table-layout: fixed;
}
.spec-table--2col th {
  width: 25%;
}
.spec-table--2col td {
  width: 25%;
}

/* Grid layout for specifications (2 params per row) */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: var(--card);
}
.spec-item__label {
  padding: 13px 18px;
  background: var(--bg-alt);
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
  border-right: 1px solid var(--line);
}
.spec-item__value {
  padding: 13px 18px;
  color: var(--ink);
  font-size: 15px;
}
/* group divider rows (navy banner spanning both columns) */
.spec-table tr.spec-table__group th {
  width: auto;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 18px;
}

/* ---- responsive ---- */
@media (max-width: 900px) {
  .pdp-specs__wrap {
    max-width: 100%;
  }
}
@media (max-width: 560px) {
  .pdp-coreparams {
    padding: 16px;
  }
  .pdp-coreparams__grid {
    gap: 14px 8px;
  }
  .pdp-coreparam__val {
    font-size: 18px;
  }
  .pdp-specs__wrap {
    overflow-x: auto;
  }
  .pdp-specs__wrap .spec-table {
    min-width: 460px;
  }
  /* Responsive: single column on mobile */
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .spec-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .spec-item__label {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

/* ==========================================================================
   ABOUT PAGE (lists_single_about.htm)
   ========================================================================== */
.about-hero {
  background: linear-gradient(135deg, #faf7f2 0%, #f3ece3 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.about-hero::after {
  content: '';
  position: absolute;
  right: -6%;
  top: -25%;
  width: 46%;
  height: 150%;
  background: radial-gradient(
    circle at 60% 40%,
    rgba(192, 99, 58, 0.1),
    transparent 62%
  );
  pointer-events: none;
}
.about-hero .wp {
  position: relative;
  z-index: 2;
  padding: 64px 24px 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.about-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber-600);
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 12px;
}
.about-hero h1 {
  margin: 0 0 14px;
  color: var(--navy);
}
.about-hero h1 b {
  color: var(--amber);
}
.about-hero .lead {
  font-size: 20px;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 0 26px;
}
.about-hero .hero__cta {
  margin-bottom: 24px;
}
.about-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-hero__art {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff, #f6e7dc);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero__art img {
  width: 86%;
  height: auto;
  object-fit: contain;
}

/* stats band (navy) */
.about-stats {
  background: var(--navy);
  color: #fff;
}
.about-stats .wp {
  padding: 44px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.about-stat {
  padding: 8px 12px;
  position: relative;
}
.about-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 56px;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.about-stat b {
  display: block;
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 900;
  color: var(--amber);
  line-height: 1.1;
  margin-bottom: 6px;
}
.about-stat span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
}

/* story (2-col, media left) */
.about-story {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}
.about-story__media {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.about-story__media > img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  border-radius: 20px;
  background: linear-gradient(160deg, #ffffff, #f6e7dc);
  box-shadow: var(--shadow-lg);
  padding: 30px;
}
.about-story__badge {
  position: absolute;
  left: -22px;
  bottom: 26px;
  background: var(--amber);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-story__badge b {
  display: block;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}
.about-story__badge span {
  font-size: 13px;
  opacity: 0.92;
}
.about-story__text .eyebrow {
  color: var(--amber-600);
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}
.about-story__text h2 {
  margin-bottom: 18px;
}
.about-story__text p {
  font-size: 18px;
  color: var(--ink-2);
  margin-bottom: 18px;
}

/* timeline */
.about-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
  margin-top: 20px;
}
.about-timeline::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--amber),
    var(--amber-100) 50%,
    var(--amber)
  );
  z-index: 0;
}
.about-timeline__item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 0;
}
.about-timeline__year {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: var(--amber);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  border: 4px solid var(--bg);
  box-shadow: 0 4px 14px rgba(192, 99, 58, 0.35);
}
.about-timeline__body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
}
.about-timeline__body h3 {
  font-size: 18px;
  margin: 0 0 8px;
}
.about-timeline__body p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0;
}

/* navy-section step tweaks: keep cards light/readable */
.section--navy .step {
  background: #fff;
}
.section--navy .step::before {
  border-color: var(--navy);
}

/* ---- about page responsive ---- */
@media (max-width: 980px) {
  .about-hero .wp,
  .about-story {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-hero__art {
    height: 320px;
    order: -1;
  }
  .about-stats .wp {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
  .about-stat:nth-child(2)::after {
    display: none;
  }
  .about-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 26px;
  }
  .about-timeline::before {
    display: none;
  }
  .about-story__media > img {
    height: 320px;
  }
}
@media (max-width: 560px) {
  .about-hero .wp {
    padding: 44px 24px 40px;
  }
  .about-stats .wp {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .about-stat:not(:last-child)::after {
    display: none;
  }
  .about-timeline {
    grid-template-columns: 1fr;
  }
  .about-story__badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -22px;
  }
}

/* ==========================================================================
   ABOUT PAGE (lists_single_about.htm) - Upower / UF0X-X energy storage
   High-tech minimalist B2B: white + light gray, tech blue, red accent.
   Palette scoped to .up-page so it coexists with the site's warm chrome.
   ========================================================================== */
.up-page {
  --up-blue: #0070f3;
  --up-blue-700: #0058c4;
  --up-blue-050: #eef6ff;
  --up-blue-100: #d8eaff;
  --up-red: #e60000;
  --up-red-050: #ffecec;
  --up-ink: #0b1b2b;
  --up-ink-2: #41506b;
  --up-muted: #738095;
  --up-line: #e6ebf2;
  --up-bg: #ffffff;
  --up-bg-alt: #f8f9fa;
  --up-radius: 18px;
  --up-shadow: 0 10px 30px rgba(11, 27, 43, 0.08);
  --up-shadow-lg: 0 24px 60px rgba(11, 27, 43, 0.16);
  background: var(--up-bg);
}

/* ---- shared atoms ---- */
.up-page .up-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--up-blue);
  margin: 0 0 14px;
}
.up-eyebrow--light {
  color: #fff;
  opacity: 0.85;
}
.up-page .up-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.up-page .up-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  font-weight: 800;
  color: var(--up-ink);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.up-head__sub {
  font-size: 17px;
  color: var(--up-ink-2);
  margin: 0;
}
.up-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease),
    background 0.18s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.up-btn--blue {
  background: var(--up-blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 112, 243, 0.28);
}
.up-btn--blue:hover {
  background: var(--up-blue-700);
  transform: translateY(-2px);
  color: #fff;
}
.up-btn--red {
  background: var(--up-red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(230, 0, 0, 0.25);
}
.up-btn--red:hover {
  background: #c40000;
  transform: translateY(-2px);
  color: #fff;
}
.up-btn--light {
  background: #fff;
  color: var(--up-ink);
  box-shadow: var(--up-shadow);
}
.up-btn--light:hover {
  transform: translateY(-2px);
  box-shadow: var(--up-shadow-lg);
  color: var(--up-ink);
}

/* ---- 1. HERO ---- */
.up-hero {
  position: relative;
  min-height: 760px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.up-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(11, 27, 43, 0.45) 0%,
      rgba(11, 27, 43, 0.1) 38%,
      rgba(11, 27, 43, 0.08) 58%,
      rgba(11, 27, 43, 0.66) 100%
    ),
    linear-gradient(90deg, rgba(11, 27, 43, 0.12) 0%, rgba(11, 27, 43, 0) 55%);
}
.up-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 30px;
}
.up-hero__device {
  display: flex;
  justify-content: center;
}
.up-hero__device svg {
  width: 320px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(11, 27, 43, 0.3));
  animation: upFloat 6s ease-in-out infinite;
}
@keyframes upFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.up-hero__copy {
  text-align: right;
}
.up-hero__copy h1 {
  font-size: clamp(54px, 8vw, 104px);
  line-height: 1;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(11, 27, 43, 0.45);
}
.up-hero__sub {
  font-size: clamp(16px, 1.6vw, 22px);
  color: #fff;
  font-weight: 600;
  margin: 0 0 28px;
  text-shadow: 0 2px 12px rgba(11, 27, 43, 0.5);
}
.up-hero__features {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: auto;
  padding-bottom: 44px;
}
.up-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.up-feat__ico {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.up-feat__ico svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.7;
}

/* ---- 2. ABOUT ---- */
.up-about {
  background: var(--up-bg);
  padding: 100px 0;
}
.up-about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.up-card {
  background: #fff;
  border: 1px solid var(--up-line);
  border-radius: var(--up-radius);
  padding: 34px 28px;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.up-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--up-shadow-lg);
  border-color: var(--up-blue-100);
}
.up-card__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--up-blue-050);
  margin-bottom: 20px;
}
.up-card__ico svg {
  width: 30px;
  height: 30px;
  stroke: var(--up-blue);
  fill: none;
  stroke-width: 1.6;
}
.up-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--up-ink);
  margin: 0 0 10px;
}
.up-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--up-ink-2);
  margin: 0;
}

/* ---- 3. 10+ YEARS ---- */
.up-years {
  background: var(--up-bg-alt);
  padding: 100px 0;
}
.up-years__band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--up-shadow-lg);
  max-width: 1180px;
  margin: 0 auto;
}
.up-years__left {
  background: linear-gradient(160deg, #0b1b2b 0%, #122a45 100%);
  color: #fff;
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.up-years__left h2 {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 800;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.up-years__left h2 span {
  color: var(--up-blue);
}
.up-years__left p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 30px;
  max-width: 420px;
}
.up-years__right {
  background-size: cover;
  background-position: center;
  background-color: #8a1c1c;
  min-height: 420px;
}

/* ---- 4. UPOWER SMART ENERGY ---- */
.up-stats {
  background: var(--up-bg-alt);
  background-image:
    radial-gradient(
      circle at 15% 20%,
      rgba(0, 112, 243, 0.05) 0,
      transparent 40%
    ),
    radial-gradient(circle at 85% 80%, rgba(230, 0, 0, 0.04) 0, transparent 42%);
  padding: 100px 0;
}
.up-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.up-stat {
  background: #fff;
  border: 1px solid var(--up-line);
  border-radius: var(--up-radius);
  padding: 36px 26px 32px;
  text-align: center;
  box-shadow: var(--up-shadow);
  transition: transform 0.2s var(--ease);
}
.up-stat:hover {
  transform: translateY(-4px);
}
.up-stat__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--up-red-050);
  margin-bottom: 22px;
}
.up-stat__ico svg {
  width: 32px;
  height: 32px;
  stroke: var(--up-red);
  fill: none;
  stroke-width: 1.6;
}
.up-stat__num {
  display: block;
  font-size: clamp(34px, 3.4vw, 46px);
  font-weight: 800;
  color: var(--up-ink);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 12px;
}
.up-stat__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--up-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.up-stats__cta {
  text-align: center;
  margin-top: 50px;
}

/* ---- 5. NEWSLETTER ---- */
.up-newsletter {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #0b1b2b;
  padding: 110px 0;
  display: flex;
  align-items: center;
}
.up-newsletter__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 27, 43, 0.78),
    rgba(11, 27, 43, 0.72)
  );
}
.up-newsletter__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.up-newsletter__inner h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.up-newsletter__inner > p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  margin: 0 0 30px;
}
.up-newsletter__form {
  display: flex;
  gap: 12px;
  background: #fff;
  border-radius: 999px;
  padding: 8px 8px 8px 26px;
  box-shadow: var(--up-shadow-lg);
  max-width: 560px;
  margin: 0 auto;
}
.up-newsletter__form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 15px;
  color: var(--up-ink);
  height: 48px;
}
.up-newsletter__form input::placeholder {
  color: var(--up-muted);
}
.up-newsletter__note {
  color: #fff;
  font-size: 14px;
  margin: 16px 0 0;
  display: none;
}

/* ---- responsive ---- */
@media (max-width: 1024px) {
  .up-hero {
    min-height: 680px;
  }
  .up-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .up-hero__copy {
    text-align: center;
  }
  .up-hero__device svg {
    width: 240px;
  }
  .up-hero__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .up-about__grid,
  .up-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .up-years__band {
    grid-template-columns: 1fr;
  }
  .up-years__right {
    min-height: 300px;
  }
}
@media (max-width: 640px) {
  .up-hero {
    min-height: 620px;
  }
  .up-hero__features {
    grid-template-columns: 1fr 1fr;
  }
  .up-about__grid,
  .up-stats__grid {
    grid-template-columns: 1fr;
  }
  .up-about,
  .up-years,
  .up-stats {
    padding: 64px 0;
  }
  .up-newsletter {
    padding: 76px 0;
  }
  .up-newsletter__form {
    flex-direction: column;
    border-radius: 18px;
    padding: 14px;
  }
  .up-newsletter__form input {
    text-align: center;
    height: 44px;
  }
  .up-btn {
    width: 100%;
    justify-content: center;
  }
  .up-years__left {
    padding: 48px 28px;
  }
}

/* ==========================================================================
   HERO SWIPER
   ========================================================================== */
.hero-swiper,
.hero-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.hero-swiper__slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #ffffff, #f6e7dc);
}

.hero-swiper__slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding-top: 60px;
}

.hero-swiper-title {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.01em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  margin: 0;
}

.hero-swiper__slide img {
  width: 88%;
  height: auto;
  object-fit: contain;
}
.hero-swiper__pagination {
  bottom: 12px !important;
}
.hero-swiper__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--ink);
  opacity: 0.35;
}
.hero-swiper__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--amber);
}
.hero-swiper__next,
.hero-swiper__prev {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  box-shadow: var(--shadow);
}
.hero-swiper__next::after,
.hero-swiper__prev::after {
  font-size: 16px;
  font-weight: 700;
}
.hero-swiper__next {
  right: 10px;
}
.hero-swiper__prev {
  left: 10px;
}
