/* ============================================================
   RENÉ CLINIC — Design System
   Editorial luxury · wine + cream · serif display
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Palette */
  --white:        #FFFFFF;   /* pure white sections */
  --paper:        #FBF7F3;   /* lightest warm surface */
  --cream:        #F0E6DE;   /* logo background */
  --cream-deep:   #E8DAD0;   /* warm panel */
  --clay:         #C9A98F;   /* taupe accent */
  --clay-soft:    #DCC6B4;
  --gold:         #B08D57;   /* refined metallic accent */
  --wine:         #8A2B2B;   /* brand primary */
  --wine-deep:    #6E2020;
  --wine-soft:    #A84545;
  --ink:          #3A2A26;   /* text */
  --ink-soft:     #6E5A53;
  --espresso:     #241917;   /* deep footer tone */
  --line:         rgba(58, 42, 38, 0.14);
  --line-soft:    rgba(58, 42, 38, 0.08);
  --on-wine:      #F4E9E1;

  /* Type */
  --brand:   'Cormorant Garamond', serif;            /* logo wordmark only */
  --display: 'Anuphan', 'Cormorant Garamond', sans-serif;
  --serif-th: 'Anuphan', sans-serif;
  --body:    'Anuphan', system-ui, sans-serif;

  /* Rhythm */
  --maxw: 1440px;
  --gutter: clamp(22px, 5vw, 64px);
  --section-y: clamp(72px, 11vw, 152px);
  --radius: 4px;
  --radius-img: 16px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* subtle paper grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }

/* ---------- Type scale ---------- */
.kicker {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.kicker::before {
  content: ""; width: 34px; height: 1px; background: var(--clay);
}
.kicker.center { justify-content: center; }
.kicker.center::after {
  content: ""; width: 34px; height: 1px; background: var(--clay);
}

h1, h2, h3, .display { font-family: var(--display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); }
.serif-th { font-family: var(--serif-th); }

.h-hero { font-size: clamp(44px, 7.4vw, 96px); font-weight: 600; }
.h1 { font-size: clamp(38px, 6.5vw, 80px); }
.h2 { font-size: clamp(30px, 4.6vw, 54px); }
.h3 { font-size: clamp(22px, 2.6vw, 30px); }

.lead { font-size: clamp(17px, 1.8vw, 21px); color: var(--ink-soft); font-weight: 300; line-height: 1.75; }
.muted { color: var(--ink-soft); }
.tnum { font-variant-numeric: tabular-nums; }
em.it { font-family: var(--serif-th); font-style: normal; color: var(--wine); font-weight: 600; }

/* eyebrow numbering */
.idx { font-family: var(--display); font-style: italic; color: var(--clay); font-size: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--body); font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 30px; border-radius: 999px;
  transition: all 0.4s var(--ease);
  position: relative; white-space: nowrap;
}
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-primary { background: var(--wine); color: var(--on-wine); }
.btn-primary:hover { background: var(--wine-deep); }
.btn-outline { border: 1px solid var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--wine); color: var(--wine); }
.btn-light { background: var(--cream); color: var(--wine); }
.btn-light:hover { background: #fff; }
.btn-ghost-wine { border: 1px solid rgba(244,233,225,0.4); color: var(--on-wine); }
.btn-ghost-wine:hover { background: rgba(244,233,225,0.12); }

.link-underline {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; letter-spacing: 0.08em; color: var(--wine); font-weight: 500;
  padding-bottom: 3px; border-bottom: 1px solid var(--clay);
  transition: gap 0.4s var(--ease), border-color 0.4s var(--ease);
}
.link-underline:hover { gap: 16px; border-color: var(--wine); }

/* ---------- Header / Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding-block: 19px;
  background: #fff;
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav.scrolled {
  background: #fff;
  box-shadow: 0 6px 24px -16px rgba(58,42,38,0.4), 0 1px 0 var(--line-soft);
  padding-block: 13px;
}
.brand { display: flex; align-items: baseline; gap: 12px; }
.brand .mark {
  font-family: var(--brand); font-weight: 600; font-size: 27px;
  color: var(--wine); letter-spacing: 0.02em; line-height: 1;
}
.brand .mark sup { font-size: 0.5em; vertical-align: super; }
.brand .sub {
  font-family: var(--body); font-size: 10px; letter-spacing: 0.42em;
  text-transform: uppercase; color: var(--ink-soft); font-weight: 500;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
/* dot separators between menu items (luxe) — centered on the boundary between links */
.nav-links a:not(.nav-cta) { position: relative; letter-spacing: 0.05em; }
.nav-links a:not(.nav-cta):not(:first-child)::before {
  content: "·";
  position: absolute; left: 0; top: 50%; transform: translate(-50%, -50%);
  color: var(--clay); font-weight: 700; font-size: 15px; pointer-events: none;
}
.nav-links a {
  font-size: 15.5px; font-weight: 600; letter-spacing: 0.03em; color: var(--ink);
  position: relative; padding: 10px 19px; transition: color 0.3s; white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 20px; right: 20px; bottom: 4px; height: 1px;
  background: var(--wine); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--wine); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; }
.nav-links a.nav-cta, .nav-links a.nav-cta:hover { color: #fff; }
.nav-links a.nav-cta::after { display: none; }

/* ---- nav dropdown (บริการ submenu) ---- */
.nav-links .has-sub { position: relative; display: inline-flex; align-items: center; }
.nav-links .has-sub:not(:first-child)::before {
  content: "·"; position: absolute; left: 0; top: 50%; transform: translate(-50%, -50%);
  color: var(--clay); font-weight: 700; font-size: 15px; pointer-events: none;
}
.nav-links .has-sub > a .caret { font-size: 11px; opacity: 0.55; margin-left: 1px; display: inline-block; transition: transform 0.3s var(--ease); }
.nav-links .has-sub:hover > a .caret { transform: rotate(180deg); }
/* hover bridge over the gap so the menu stays open */
.has-sub::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 16px; }
.sub-menu {
  position: absolute; top: 100%; left: 50%; margin-top: 8px;
  transform: translateX(-50%) translateY(8px);
  min-width: 215px; background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: 0 24px 56px -22px rgba(58,42,38,0.38);
  padding: 8px; display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s; z-index: 200;
}
.has-sub:hover .sub-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.sub-menu a { display: block; padding: 11px 16px; border-radius: 9px; font-size: 14.5px; font-weight: 400; letter-spacing: 0.02em; color: var(--ink); white-space: nowrap; }
.sub-menu a::before, .sub-menu a::after { content: none !important; display: none !important; }
.sub-menu a:hover, .sub-menu a[aria-current="page"] { background: var(--cream); color: var(--wine); }
.nav--over:not(.scrolled) .sub-menu a { color: var(--ink); text-shadow: none; }
.drawer-sub { font-size: 0.82em !important; opacity: 0.7; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--ink); transition: 0.3s var(--ease); }

/* centered-logo nav layout */
.nav--center .nav-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.nav--center .nav-side { display: flex; align-items: center; gap: 36px; }
.nav--center .nav-left { justify-self: start; }
.nav--center .nav-right { justify-self: end; }
.brand--logo { justify-self: center; display: block; }
.brand--logo img { height: 64px; width: auto; display: block; transition: height 0.4s var(--ease); }
.nav.scrolled .brand--logo img { height: 52px; }
@media (max-width: 900px) {
  .nav--center .nav-inner { grid-template-columns: 1fr auto 1fr; }
  .nav--center .nav-side { display: none; }
  .nav--center .nav-toggle { display: flex; grid-column: 1; justify-self: start; }
  .nav--center .brand--logo { grid-column: 2; }
}

/* nav sitting over a dark hero image (homepage): white until scrolled */
.nav--over:not(.scrolled) .nav-links a { color: #fff; text-shadow: 0 1px 14px rgba(0,0,0,0.4); }
.nav--over:not(.scrolled) .nav-links a::after { background: #fff; }
.nav--over:not(.scrolled) .nav-links a:hover { color: rgba(255,255,255,0.78); }
.nav--over:not(.scrolled) .brand .mark { color: #fff; text-shadow: 0 1px 14px rgba(0,0,0,0.4); }
.nav--over:not(.scrolled) .brand .sub { color: rgba(255,255,255,0.85); text-shadow: 0 1px 12px rgba(0,0,0,0.4); }
.nav--over:not(.scrolled) .nav-toggle span { background: #fff; }
.nav--over:not(.scrolled) .nav-links a.nav-cta { color: #fff; text-shadow: none; }

/* language switch (TH / EN) */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; margin-left: 14px; padding-left: 14px; border-left: 1px solid var(--line); }
.lang-switch a { font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; padding: 4px 9px; border-radius: 999px; color: var(--ink-soft); }
.lang-switch a::before, .lang-switch a::after { content: none !important; display: none !important; }
.lang-switch a:hover { color: var(--wine); }
.lang-switch a.is-active { background: var(--wine); color: #fff; }
.lang-switch a.is-active:hover { color: #fff; }
.nav--over:not(.scrolled) .lang-switch { border-left-color: rgba(255,255,255,0.4); }
.nav--over:not(.scrolled) .lang-switch a { color: #fff; text-shadow: 0 1px 14px rgba(0,0,0,0.4); }
.nav--over:not(.scrolled) .lang-switch a.is-active { background: rgba(255,255,255,0.22); }
.drawer-lang { border-left: 0; padding-left: 0; margin-left: 0; margin-top: 22px; gap: 12px; }
.drawer-lang a { border: 1px solid var(--line); padding: 9px 20px; font-size: 14px; }
.drawer-lang a.is-active { background: var(--wine); color: #fff; border-color: var(--wine); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 300; background: var(--cream);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 6px; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer a { font-family: var(--display); font-size: 36px; color: var(--wine); padding: 10px; }
.drawer .close { position: absolute; top: 26px; right: 26px; font-size: 30px; color: var(--ink); line-height: 1; }

/* ---------- Footer (light) ---------- */
.footer { background: var(--cream); color: var(--ink); padding-block: clamp(60px, 8vw, 96px) 40px; }
.footer a { color: var(--ink); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--line); }
.footer .mark { font-family: var(--brand); font-size: 46px; font-weight: 600; color: var(--wine); line-height: 1; }
.footer .mark sup { font-size: 0.45em; vertical-align: super; color: var(--clay); }
.footer .tagline { color: var(--ink-soft); max-width: 34ch; margin-top: 18px; font-weight: 300; }
.footer h4 { font-family: var(--body); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--wine); margin-bottom: 20px; font-weight: 500; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { opacity: 0.78; transition: opacity 0.3s; font-weight: 300; }
.footer ul a:hover { opacity: 1; color: var(--wine); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; font-size: 13px; color: var(--ink-soft); flex-wrap: wrap; gap: 12px; }

/* ---------- Floating contact widget ---------- */
.cw { position: fixed; right: clamp(16px, 3vw, 34px); bottom: clamp(16px, 3vw, 34px); z-index: 400; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.cw-item {
  display: flex; align-items: center; gap: 12px;
  opacity: 0; transform: translateY(12px) scale(0.92);
  transition: all 0.4s var(--ease); pointer-events: none;
}
.cw.open .cw-item { opacity: 1; transform: none; pointer-events: auto; }
.cw.open .cw-item:nth-child(1) { transition-delay: 0.06s; }
.cw.open .cw-item:nth-child(2) { transition-delay: 0.12s; }
.cw-label {
  background: var(--ink); color: var(--on-wine); font-size: 13px; letter-spacing: 0.02em;
  padding: 8px 14px; border-radius: 999px; white-space: nowrap; font-weight: 300;
  box-shadow: 0 8px 24px rgba(58,42,38,0.22);
}
.cw-btn {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; box-shadow: 0 10px 30px rgba(58,42,38,0.28);
  transition: transform 0.35s var(--ease);
}
.cw-btn:hover { transform: translateY(-3px) scale(1.05); }
.cw-btn.line { background: #06C755; }
.cw-btn.fb { background: #1877F2; }
.cw-toggle {
  width: 64px; height: 64px; border-radius: 50%; background: var(--wine); color: var(--on-wine);
  display: grid; place-items: center; box-shadow: 0 12px 34px rgba(110,32,32,0.4);
  transition: transform 0.4s var(--ease), background 0.3s;
}
.cw-toggle:hover { background: var(--wine-deep); }
.cw.open .cw-toggle { transform: rotate(135deg); }
.cw-toggle svg { transition: transform 0.4s var(--ease); }

/* ---------- Image slots ---------- */
image-slot {
  --is-empty-bg: var(--cream-deep);
  background: var(--cream-deep);
  border: 1px solid var(--line-soft);
}

/* generic placeholder visual (non image-slot) */
.ph {
  background: var(--cream-deep);
  display: grid; place-items: center;
  color: var(--clay); position: relative; overflow: hidden;
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(201,169,143,0.08) 18px, rgba(201,169,143,0.08) 19px);
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Hairline divider ---------- */
.rule { height: 1px; background: var(--line); border: 0; }
.rule-clay { height: 1px; background: var(--clay); border: 0; }

/* ---------- Page hero (interior masthead) — centered editorial ---------- */
.page-hero {
  position: relative; overflow: hidden; text-align: center;
  padding-top: clamp(132px, 15vw, 188px);
  padding-bottom: clamp(52px, 6.5vw, 88px);
  background: linear-gradient(180deg, #f8f1ea 0%, var(--cream) 58%, #ead9c8 100%);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='104' height='104'%3E%3Cpath d='M52 20 C54 40 64 50 84 52 C64 54 54 64 52 84 C50 64 40 54 20 52 C40 50 50 40 52 20 Z' fill='%238A2B2B'/%3E%3C/svg%3E");
  background-size: 104px 104px; opacity: 0.04;
}
.page-hero::after {
  content: ""; position: absolute; left: 50%; bottom: -0.3em; transform: translateX(-50%);
  font-family: var(--brand); font-style: italic; font-weight: 600;
  font-size: clamp(180px, 30vw, 440px); line-height: 1; color: var(--wine);
  opacity: 0.05; pointer-events: none; z-index: 0; white-space: nowrap;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .crumb {
  display: flex; justify-content: center; align-items: center; gap: 6px;
  white-space: nowrap;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 20px;
}
.page-hero .crumb a { color: var(--wine); }
.page-hero .crumb a:hover { opacity: 0.68; }
.page-hero .kicker { margin-bottom: 20px; }
.page-hero h1 { margin-inline: auto; max-width: 20ch; }
.page-hero .lead { margin-inline: auto; }
.page-hero .svc-nav { justify-content: center; }
.page-hero .chips { justify-content: center; }
.page-hero .rev-rating { justify-content: center; }
.page-hero .crumb a:hover { color: var(--wine); }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.pillar { padding: 8px clamp(20px,2.4vw,36px); border-left: 1px solid var(--line); }
.pillar:first-child { border-left: 0; padding-left: 0; }
.pillar .idx { display: block; margin-bottom: 18px; font-size: 22px; }
.pillar h3 { font-size: 21px; margin-bottom: 10px; }
.pillar p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Service cards (overview) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.svc-card { position: relative; background: #FDFBF9; border: 1px solid var(--line-soft); border-radius: var(--radius-img); overflow: hidden; display: flex; flex-direction: column; min-height: 520px; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(58,42,38,0.16); }
.svc-card .svc-media { aspect-ratio: 1 / 1; height: auto; box-shadow: none; border-radius: 0; }
.svc-card .svc-body { padding: 34px clamp(26px,3vw,40px) 38px; display: flex; flex-direction: column; flex: 1; }
.svc-card .svc-body h3 { font-size: 25px; line-height: 1.25; margin-bottom: 12px; }
.svc-card .svc-body p { color: var(--ink-soft); margin-bottom: 24px; flex: 1; }

/* ---------- Skin Vitamin cards (services page) ---------- */
.vita-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px,2vw,26px); }
.vcard { display: flex; flex-direction: column; background: #FDFBF9; border: 1px solid var(--line-soft); border-radius: var(--radius-img); overflow: hidden; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.vcard:hover { transform: translateY(-6px); box-shadow: 0 28px 64px -34px rgba(58,42,38,0.45); }
.vcard-media { position: relative; aspect-ratio: 1/1; }
.vcard-media img { width: 100%; height: 100%; object-fit: cover; }
.vcard-flag { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: 11px; letter-spacing: 0.08em; font-weight: 600; color: #fff; background: rgba(110,32,32,0.92); padding: 6px 13px; border-radius: 999px; }
.vcard-body { padding: 22px clamp(18px,1.8vw,24px) 26px; display: flex; flex-direction: column; flex: 1; }
.vcard-body h3 { font-size: 21px; line-height: 1.3; color: var(--ink); }
.vcard-tag { font-size: 14px; color: var(--wine); font-weight: 500; margin: 8px 0 14px; }
.vcard-body .ticks { border-top: 1px solid var(--line-soft); margin-top: auto; }
.vcard-body .ticks li { padding: 10px 0; font-size: 14px; }
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .vita-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .vita-grid { grid-template-columns: 1fr; }
}

/* ---------- Vitamin IV Drip — benefit cards + care columns ---------- */
.drip-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,1.6vw,22px); }
.drip-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-img); padding: 30px clamp(22px,2vw,28px) 32px; box-shadow: 0 16px 42px -30px rgba(58,42,38,0.4); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.drip-card:hover { transform: translateY(-5px); box-shadow: 0 26px 60px -34px rgba(58,42,38,0.45); }
.drip-card .drip-num { display: block; font-family: var(--display); font-style: italic; font-size: 26px; color: var(--clay); line-height: 1; margin-bottom: 16px; }
.drip-card h4 { font-size: 19px; line-height: 1.3; margin-bottom: 8px; }
.drip-card p { font-size: 14px; color: var(--ink-soft); }
.drip-care { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,2vw,26px); align-items: stretch; }
.drip-care-col { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-img); padding: clamp(28px,2.6vw,38px); box-shadow: 0 16px 42px -30px rgba(58,42,38,0.4); }
.drip-care-col h4 { font-size: 21px; margin-bottom: 14px; }
.drip-care-col .ticks { border-top: 1px solid var(--line-soft); }
.drip-care-col .ticks li { padding: 12px 0; font-size: 15px; align-items: flex-start; }
@media (max-width: 1000px) {
  .drip-benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .drip-benefits, .drip-care { grid-template-columns: 1fr; }
}

/* ---------- Service body content (rich, from category.content) ---------- */
.svc-content { max-width: 880px; }
.svc-content h3, .svc-content h4 { font-family: var(--serif-th); color: var(--wine); font-size: 22px; margin: 36px 0 8px; }
.svc-content > h3:first-child, .svc-content > h4:first-child, .svc-content > *:first-child { margin-top: 0; }
.svc-content p { font-size: 15.5px; line-height: 1.95; color: var(--ink-soft); margin-bottom: 14px; }
.svc-content ul, .svc-content ol { list-style: none; margin: 12px 0 8px; padding: 0; }
.svc-content li { position: relative; padding: 13px 0 13px 30px; border-bottom: 1px solid var(--line-soft); font-size: 15.5px; line-height: 1.8; color: var(--ink-soft); }
.svc-content li:last-child { border-bottom: 0; }
.svc-content li::before { content: ""; position: absolute; left: 4px; top: 22px; width: 7px; height: 7px; border-radius: 50%; background: var(--clay); }
.svc-content strong { color: var(--ink); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--wine); color: var(--on-wine); text-align: center; }
.cta-band .h2 { color: var(--on-wine); max-width: 18ch; margin: 0 auto 14px; }
.cta-band p { color: rgba(244,233,225,0.78); max-width: 46ch; margin: 0 auto 36px; }
.cta-band .row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-s { margin-top: 18px; } .mt-m { margin-top: 32px; } .mt-l { margin-top: 56px; }
.maxch { max-width: 56ch; }
.flex { display: flex; } .gap-16 { gap: 16px; } .wrapf { flex-wrap: wrap; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 88px); align-items: center; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .pillars { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION BACKGROUND RHYTHM
   ============================================================ */
.bg-white { background: var(--white); }
.bg-paper { background: var(--paper); }
.bg-cream { background: var(--cream); }
.bg-wine  { background: var(--wine); color: var(--on-wine); }

/* a hairline at the top edge to define white/paper boundaries */
.edge-top { border-top: 1px solid var(--line-soft); }

/* ============================================================
   EDITORIAL IMAGERY
   ============================================================ */
.eimg { position: relative; overflow: hidden; border-radius: var(--radius-img); background: var(--cream-deep); }
.eimg img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.4s var(--ease); }
.eimg.zoom:hover img { transform: scale(1.05); }
/* warm editorial wash so stock images sit in the brand world */
.eimg.warm::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(138,43,43,0.04), rgba(58,42,38,0.12));
  mix-blend-mode: multiply;
}
.eimg .cap {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #fff; font-weight: 500;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.eimg .seal {
  position: absolute; right: 16px; top: 16px; z-index: 2;
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6); color: #fff;
  display: grid; place-items: center; text-align: center;
  font-family: var(--display); font-style: italic; font-size: 13px; line-height: 1.1;
  backdrop-filter: blur(2px);
}

/* framed image: thin inner keyline for a couture feel */
.framed { position: relative; }
.framed::before {
  content: ""; position: absolute; inset: 12px; z-index: 3; pointer-events: none;
  border: 1px solid rgba(255,255,255,0.28); border-radius: calc(var(--radius-img) - 8px);
}

/* ============================================================
   FAINT LINE TEXTURE (subtle pinstripe — only on select panels)
   ============================================================ */
.bg-cream, .cta-band { position: relative; }
.bg-cream > *, .cta-band > * { position: relative; z-index: 1; }
.bg-cream::before, .cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: var(--pat);
}
.bg-cream { --pat: repeating-linear-gradient(90deg, transparent 0 10px, rgba(138,43,43,0.04) 10px 11px); }
.cta-band { --pat: repeating-linear-gradient(90deg, transparent 0 10px, rgba(240,230,222,0.06) 10px 11px); }
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 22px; }
.marquee-track { display: flex; gap: 56px; white-space: nowrap; animation: marquee 38s linear infinite; }
.marquee-track span { font-family: var(--display); font-style: italic; font-size: clamp(22px,3vw,34px); color: var(--clay); display: inline-flex; align-items: center; gap: 56px; }
.marquee-track span::after { content: "✦"; color: var(--wine); font-style: normal; font-size: 0.5em; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================================================
   QUIET CAPTION / OVERLINE
   ============================================================ */
.overline { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.signature { font-family: var(--display); font-style: italic; color: var(--wine); }

/* gold rule */
.rule-gold { height: 1px; background: var(--gold); border: 0; opacity: 0.7; }

/* ============================================================
   LUXURY POLISH LAYER
   ============================================================ */
/* slim metallic line across the very top of the page */
body { border-top: 2px solid var(--gold); }

/* kicker: gold hairlines + small lead diamond */
.kicker::before, .kicker.center::after { background: var(--gold); }
.kicker { gap: 16px; }

/* editorial images get a soft, expensive shadow + warmer keyline */
.eimg { box-shadow: 0 30px 70px -34px rgba(58,42,38,0.45); }
.svc-card, .promo { box-shadow: 0 30px 70px -38px rgba(58,42,38,0.4); }

/* circular seal in gold */
.eimg .seal { border-color: rgba(240,230,222,0.85); box-shadow: inset 0 0 0 1px rgba(176,141,87,0.5); width: 72px; height: 72px; letter-spacing: 0.04em; }

/* refined primary button with subtle depth */
.btn-primary { box-shadow: none; }
.btn { letter-spacing: 0.14em; }

/* scrolled nav: hairline goes faint gold */
.nav.scrolled { box-shadow: 0 1px 0 rgba(176,141,87,0.28); }

/* monogram dignity: tiny gold tracking line under brand on hover */
.brand .mark { transition: color 0.3s; }

/* decorative section ornament (use: <span class="ornament">✦</span>) */
.ornament { display: inline-block; color: var(--gold); font-size: 13px; opacity: 0.9; }

/* drop a touch more air between major sections */
:root { --section-y: clamp(80px, 12vw, 168px); }

/* italic display accents glow slightly warmer */
em.it, .signature { color: var(--wine); }

/* marquee stars in gold */
.marquee-track span::after { color: var(--gold); }

/* refined link underline in gold */
.link-underline { border-color: var(--gold); }
.link-underline:hover { border-color: var(--wine); }

/* page-hero gets a hairline gold base */
.page-hero { border-bottom: 1px solid var(--clay); }

/* ============================================================
   CAROUSEL / SLIDER
   ============================================================ */
.carousel { position: relative; }
.carousel-track {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: none;
  scroll-behavior: smooth; padding: 18px 4px 52px; margin: 0 -4px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * { scroll-snap-align: start; flex: 0 0 auto; }
.carousel-nav { display: flex; gap: 10px; align-items: center; }
.cbtn {
  width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; background: transparent; color: var(--ink);
  transition: all 0.35s var(--ease); font-size: 18px;
}
.cbtn:hover:not(:disabled) { border-color: var(--wine); color: var(--wine); }
.cbtn:disabled { opacity: 0.28; cursor: default; }
.carousel-track .promo { width: clamp(280px, calc((100% - 44px) / 3), 440px); min-height: 430px; }
.carousel-track .acard { width: clamp(260px, calc((100% - 44px) / 3), 400px); }
.carousel-track .result-card { width: clamp(240px, calc((100% - 66px) / 4), 300px); }
.carousel-track .svc-card { width: clamp(240px, calc((100% - 66px) / 4), 360px); min-height: 0; }
@media (max-width: 640px) {
  .carousel-track .svc-card { width: 100%; max-width: none; }
}

/* ============================================================
   PAGE-SPECIFIC — HOME
   ============================================================ */
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.hero-stats { display: flex; align-items: center; gap: 30px; margin-top: 48px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-stats .hs-n { display: block; font-family: var(--display); font-size: 26px; color: var(--wine); font-weight: 600; }
.hero-stats .hs-l { display: block; font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
.hero-stats .hs-div { width: 1px; height: 38px; background: var(--line); }
.hero-media { position: relative; }
.hero-img { width: 100%; aspect-ratio: 4/5; }
.hero-tag { position: absolute; left: -22px; bottom: 36px; background: var(--paper); padding: 18px 26px; border-radius: 4px; box-shadow: 0 20px 50px rgba(58,42,38,0.14); text-align: center; }
.hero-tag span { display: block; font-size: 22px; color: var(--wine); }
.hero-tag small { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.04em; white-space: nowrap; }
.about-points { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.about-points .ap { display: flex; align-items: center; gap: 12px; font-size: 15.5px; }
.about-points .ap-mark { color: var(--clay); font-size: 13px; }
.teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.hero-banner { padding-top: 90px; background: linear-gradient(180deg, #efe7da 0%, #e8ddcb 100%); }
.hero-banner img { width: 100%; height: auto; display: block; }

/* Hero slider — cross-fade image slideshow (driven by [data-hero-slider] in app.js) */
.hero-slider { position: relative; overflow: hidden; }
.hs-track { position: relative; }
.hs-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s var(--ease); display: block; }
.hs-slide.is-active { position: relative; opacity: 1; z-index: 1; }
.hs-slide img { width: 100%; height: auto; display: block; }
a.hs-slide { cursor: pointer; }
.hs-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.78); color: var(--ink); font-size: 20px;
  display: grid; place-items: center; cursor: pointer; backdrop-filter: blur(4px);
  box-shadow: 0 6px 20px rgba(58,42,38,0.18); transition: background 0.3s, transform 0.3s;
}
.hs-arrow:hover { background: #fff; color: var(--wine); }
.hs-prev { left: 18px; }
.hs-next { right: 18px; }
.hs-dots { position: absolute; left: 0; right: 0; bottom: 16px; z-index: 3; display: flex; justify-content: center; gap: 9px; }
.hs-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0;
  background: rgba(255,255,255,0.6); cursor: pointer; transition: all 0.3s var(--ease);
}
.hs-dots button.is-active { background: #fff; width: 26px; border-radius: 999px; }
@media (max-width: 640px) {
  .hs-arrow { width: 38px; height: 38px; font-size: 16px; }
  .hs-prev { left: 10px; } .hs-next { right: 10px; }
}
.herocta { padding-block: clamp(34px,5vw,52px); border-top: 1px solid var(--line); }
.herocta-inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(28px,5vw,64px); flex-wrap: wrap; }
.herocta-line { font-size: clamp(24px,3.2vw,40px); line-height: 1.18; color: var(--ink); margin-top: 12px; }
.herocta-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.promo-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 22px; }
.promo { position: relative; min-height: 440px; display: flex; align-items: flex-end; border-radius: var(--radius-img); overflow: hidden; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.promo:hover { transform: translateY(-6px); box-shadow: 0 28px 64px rgba(58,42,38,0.2); }
.promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.promo:hover img { transform: scale(1.05); }
.promo::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(36,25,23,0) 30%, rgba(36,25,23,0.82) 100%); }
.promo-body { position: relative; z-index: 2; padding: 30px clamp(22px,2.4vw,34px); color: #fff; }
.promo-body h3 { color: #fff; font-size: 24px; margin: 10px 0 6px; }
.promo--feature .promo-body h3 { font-size: 30px; }
.promo-body p { color: rgba(255,255,255,0.82); font-size: 14px; font-weight: 300; max-width: 36ch; }
.promo-flag { display: inline-block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--paper); border: 1px solid rgba(255,255,255,0.5); padding: 5px 12px; border-radius: 999px; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px,3vw,40px); }
.acard { display: flex; flex-direction: column; height: 100%; }
.acard-body { padding-top: 22px; display: flex; flex-direction: column; flex: 1; }
.acard-meta { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--wine); font-weight: 500; }
.acard-body h3 { font-size: 22px; line-height: 1.3; margin: 12px 0 10px; }
.acard-body h3 a { transition: color 0.3s; }
.acard-body h3 a:hover { color: var(--wine); }
.acard-body p { font-size: 14.5px; color: var(--ink-soft); }
/* push the trailing "อ่านต่อ" link to the bottom so it aligns across cards */
.acard-body .link-underline { margin-top: auto; align-self: flex-start; padding-top: 18px; }

.rev-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px 40px; margin-bottom: 50px; flex-wrap: wrap; }
.rev-rating { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--ink-soft); margin-top: 18px; }
.rev-rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 18px; }
.rev-rating strong { color: var(--ink); font-family: var(--display); font-size: 24px; font-weight: 600; }
.teaser-grid .eimg { transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.teaser-grid .eimg:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(58,42,38,0.18); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; }
  .teaser-grid { grid-template-columns: 1fr 1fr; }
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .promo--feature { grid-column: 1 / -1; }
  .article-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .hero-stats { flex-wrap: wrap; gap: 18px; }
}

/* ============================================================
   PAGE-SPECIFIC — SERVICES
   ============================================================ */
.svc-nav { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.svc-nav a { display: inline-flex; align-items: center; gap: 12px; padding: 13px 26px; border: 1px solid var(--line); border-radius: 999px; font-size: 15px; transition: all 0.35s var(--ease); }
.svc-nav a:hover { border-color: var(--wine); color: var(--wine); }
.svc-nav a.is-active { background: var(--wine); color: #fff; border-color: var(--wine); }
.svc-nav a.is-active .idx { color: #fff; }
.svc-nav a .idx { font-size: 16px; }

.group-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.grp { background: var(--paper); padding: 38px clamp(26px,2.6vw,38px) 42px; }
.grp-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.grp-top .idx { font-size: 30px; }
.grp-hl { font-size: 12px; letter-spacing: 0.06em; color: var(--wine); background: var(--cream); padding: 6px 14px; border-radius: 999px; font-weight: 500; }
.grp h3 { margin-bottom: 10px; }
.grp p { font-size: 14.5px; margin-bottom: 22px; }
.ticks { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line-soft); }
.ticks li { padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 15.5px; display: flex; align-items: center; gap: 12px; }
.ticks li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--clay); flex-shrink: 0; }

.adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px,3vw,40px); }
.adv { padding-top: 24px; border-top: 2px solid var(--wine); }
.adv-no { font-size: 22px; display: block; margin-bottom: 14px; }
.adv h4 { font-size: 20px; margin-bottom: 8px; }
.adv p { font-size: 14.5px; color: var(--ink-soft); }

.trust { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px,6vw,80px); background: var(--paper); padding: clamp(36px,5vw,64px); border-radius: var(--radius); }
.trust-list { display: flex; flex-direction: column; }
.trust-list .ti { display: flex; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.trust-list .ti:first-child { padding-top: 0; }
.trust-list .ti:last-child { border-bottom: 0; padding-bottom: 0; }
.ti-no { font-family: var(--display); font-style: italic; font-size: 28px; color: var(--clay); flex-shrink: 0; line-height: 1; }
.ti h4 { font-size: 20px; margin-bottom: 6px; }
.ti p { font-size: 14.5px; color: var(--ink-soft); }

.note { display: flex; align-items: flex-start; gap: 18px; margin-top: 40px; padding: 26px 30px; background: var(--paper); border-left: 2px solid var(--wine); border-radius: var(--radius); }
.note-mark { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--wine); color: var(--on-wine); display: grid; place-items: center; font-family: var(--display); font-size: 16px; }
.note p { font-size: 14.5px; color: var(--ink-soft); }
.note strong { color: var(--ink); font-weight: 500; }

@media (max-width: 900px) {
  .group-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr 1fr; }
  .trust { grid-template-columns: 1fr; }
  .svc-head.grid-2 > div.svc-media-order { order: 0 !important; }
}
@media (max-width: 540px) {
  .adv-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE-SPECIFIC — REVIEWS
   ============================================================ */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: var(--cream); border-radius: var(--radius-img); padding: 36px clamp(26px,2.6vw,38px) 32px; display: flex; flex-direction: column; box-shadow: 0 24px 60px -38px rgba(58,42,38,0.4); }
.q-stars { color: var(--gold); letter-spacing: 3px; font-size: 16px; margin-bottom: 18px; }
.quote blockquote { font-family: var(--display); font-size: 22px; line-height: 1.45; color: var(--ink); font-style: italic; flex: 1; }
.quote figcaption { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; color: var(--ink-soft); }
.quote figcaption span { color: var(--wine); font-weight: 500; }
.masonry { column-count: 4; column-gap: 18px; }
.masonry .eimg { width: 100%; margin-bottom: 18px; break-inside: avoid; }
@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr; }
  .masonry { column-count: 2; }
}
@media (max-width: 540px) {
  .masonry { column-count: 1; }
}

/* ============================================================
   PAGE-SPECIFIC — CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,88px); align-items: start; }
.info-list { margin-top: 36px; display: flex; flex-direction: column; gap: 8px; }
.info { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.info:last-child { border-bottom: 0; }
.info-ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--wine); color: #fff; display: grid; place-items: center; font-size: 20px; line-height: 1; box-shadow: 0 8px 20px -10px rgba(110,32,32,0.7); }
.info h3 { font-size: 19px; margin-bottom: 5px; }
.info p { font-size: 15.5px; color: var(--ink); line-height: 1.6; }
.info a:hover { color: var(--wine); }
.chan { display: flex; flex-direction: column; gap: 4px; }

.book-card { background: var(--cream); border-radius: var(--radius-img); padding: clamp(28px,3.4vw,44px); box-shadow: 0 30px 70px -40px rgba(58,42,38,0.45); }
.bform { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.bform label { display: flex; flex-direction: column; gap: 8px; font-size: 13px; letter-spacing: 0.04em; color: var(--ink-soft); font-weight: 500; }
.bform input, .bform select, .bform textarea {
  font-family: var(--body); font-size: 15.5px; font-weight: 300; color: var(--ink);
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); transition: border-color 0.3s;
}
.bform input:focus, .bform select:focus, .bform textarea:focus { outline: none; border-color: var(--wine); }
.bform input::placeholder, .bform textarea::placeholder { color: var(--clay); }
.form-note { background: var(--paper); border-left: 2px solid var(--wine); padding: 14px 18px; border-radius: var(--radius); font-size: 14px; color: var(--ink-soft); margin-top: 4px; }
.bform .err { color: var(--wine); font-size: 12.5px; font-weight: 400; }

/* Contact chat card — funnels enquiries to Facebook Messenger / LINE */
.chat-card { display: flex; flex-direction: column; }
.chat-btns { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.chat-btns .btn { width: 100%; justify-content: center; font-size: 16px; padding: 16px 22px; }
.btn-messenger { color: #fff; background: linear-gradient(95deg, var(--wine) 0%, var(--wine-deep) 100%); box-shadow: 0 16px 32px -16px rgba(110,32,32,0.75); }
.btn-messenger:hover { filter: brightness(1.08); }
.btn-line { color: #fff; background: #06C755; box-shadow: 0 16px 32px -16px rgba(6,199,85,0.7); }
.btn-line:hover { filter: brightness(1.05); }

.map-wrap { position: relative; height: clamp(360px, 46vw, 560px); background: var(--cream-deep); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.25) sepia(0.12); }
.map-card { position: absolute; left: clamp(20px,4vw,64px); bottom: clamp(20px,4vw,48px); background: var(--paper); padding: 26px 30px; border-radius: var(--radius-img); box-shadow: 0 28px 64px -28px rgba(58,42,38,0.4); max-width: 320px; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* hide elements with x-cloak until Alpine ready / toast */
[x-cloak] { display: none !important; }
.toast { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 500;
  background: var(--ink); color: var(--on-wine); padding: 14px 22px; border-radius: 999px;
  display: flex; align-items: center; gap: 12px; box-shadow: 0 18px 40px rgba(58,42,38,0.3); font-size: 14.5px; }
.toast .tick { width: 22px; height: 22px; border-radius: 50%; background: var(--wine); color: #fff; display: grid; place-items: center; font-size: 13px; }

/* ============================================================
   LIST PAGES — articles & promotions index (RENE)
   ============================================================ */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px,3vw,40px); }
.promo-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.promo-list-grid .promo { width: 100%; min-height: 380px; }

/* category / filter chips */
.chips { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px;
  border: 1px solid var(--line); border-radius: 999px; font-size: 14px; color: var(--ink);
  transition: all 0.3s var(--ease); background: #fff;
}
.chip:hover { border-color: var(--wine); color: var(--wine); }
.chip.is-active { background: var(--wine); color: var(--on-wine); border-color: var(--wine); }
.chip .n { font-size: 12px; opacity: 0.7; }

/* empty state */
.empty-note { text-align: center; color: var(--ink-soft); padding: clamp(40px,8vw,90px) 0; }

/* ============================================================
   RENE PAGINATION
   ============================================================ */
.rene-pager { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: clamp(44px,6vw,72px); flex-wrap: wrap; }
.rene-pager a, .rene-pager span {
  min-width: 46px; height: 46px; padding: 0 14px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; border: 1px solid var(--line); color: var(--ink);
  transition: all 0.3s var(--ease); font-variant-numeric: tabular-nums;
}
.rene-pager a:hover { border-color: var(--wine); color: var(--wine); }
.rene-pager .is-current { background: var(--wine); color: var(--on-wine); border-color: var(--wine); }
.rene-pager .is-disabled { opacity: 0.35; pointer-events: none; }
.rene-pager .dots { border: 0; min-width: 24px; }

/* ============================================================
   ARTICLE / PROMOTION — detail (show) pages
   ============================================================ */
.post-hero { padding-top: clamp(100px, 10vw, 124px); padding-bottom: clamp(22px,3vw,38px); background: var(--cream); border-bottom: 1px solid var(--line-soft); }
.post-meta { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--wine); font-weight: 500; }
.post-title { font-size: clamp(30px,4.6vw,52px); margin: 16px 0 14px; line-height: 1.14; }
.post-sub { color: var(--ink-soft); font-size: clamp(16px,1.7vw,19px); max-width: 60ch; }
.post-cover { width: 100%; aspect-ratio: 16/8; margin-top: clamp(28px,4vw,48px); }
.post-body { max-width: 760px; margin-inline: auto; }

/* prose: styles Summernote/rich HTML output in the brand world */
.prose-rene { color: var(--ink); font-size: 17px; line-height: 1.85; font-weight: 300; }
.prose-rene > * + * { margin-top: 1.1em; }
.prose-rene h1, .prose-rene h2, .prose-rene h3, .prose-rene h4 { font-family: var(--display); color: var(--ink); line-height: 1.25; margin-top: 1.6em; }
.prose-rene h2 { font-size: clamp(24px,3vw,34px); }
.prose-rene h3 { font-size: clamp(20px,2.4vw,26px); }
.prose-rene p { color: var(--ink); }
.prose-rene a { color: var(--wine); border-bottom: 1px solid var(--gold); }
.prose-rene a:hover { border-color: var(--wine); }
.prose-rene strong { font-weight: 600; color: var(--ink); }
.prose-rene em { font-style: italic; }
.prose-rene ul, .prose-rene ol { padding-left: 1.4em; }
.prose-rene li { margin-top: 0.5em; }
.prose-rene ul li::marker { color: var(--clay); }
.prose-rene img { width: 100%; border-radius: var(--radius-img); margin-block: 1.4em; box-shadow: 0 30px 70px -34px rgba(58,42,38,0.45); }
.prose-rene blockquote { border-left: 2px solid var(--wine); padding: 4px 0 4px 22px; font-family: var(--display); font-style: italic; font-size: 1.15em; color: var(--ink-soft); }
.prose-rene hr { border: 0; height: 1px; background: var(--line); margin-block: 2em; }

@media (max-width: 900px) {
  .post-grid { grid-template-columns: 1fr 1fr; }
  .promo-list-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .post-grid, .promo-list-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESULTS — gallery posts, before/after slider, video
   ============================================================ */
.result-card { display: flex; flex-direction: column; background: var(--cream); border-radius: var(--radius-img); overflow: hidden; height: 100%; box-shadow: 0 30px 70px -38px rgba(58,42,38,0.4); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.result-card:hover { transform: translateY(-6px); box-shadow: 0 34px 76px -36px rgba(58,42,38,0.5); }
.result-card .rc-media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.result-card .rc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.result-card:hover .rc-media img { transform: scale(1.05); }
.result-card .rc-badge { position: absolute; top: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; font-size: 11px; letter-spacing: 0.08em; color: #fff; background: rgba(36,25,23,0.6); backdrop-filter: blur(3px); padding: 6px 12px; border-radius: 999px; }
.result-card .rc-badge.is-video { right: 14px; left: auto; }
.result-card .rc-body { padding: 22px clamp(20px,2.4vw,28px) 26px; display: flex; flex-direction: column; flex: 1; }
.result-card .rc-treat { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--wine); font-weight: 500; }
.result-card .rc-title { font-family: var(--serif-th); font-size: 19px; line-height: 1.3; margin: 10px 0 8px; color: var(--ink); }
.result-card .rc-sum { font-size: 14px; color: var(--ink-soft); }
.result-card .rc-cta { margin-top: auto; align-self: flex-start; padding-top: 16px; }

/* before/after comparison slider */
.ba-slider { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius-img); user-select: none; touch-action: pan-y; background: var(--cream-deep); box-shadow: 0 30px 70px -34px rgba(58,42,38,0.45); }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba-before-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; z-index: 2; }
.ba-before-wrap img { width: 100vw; max-width: none; }            /* keep before img sized to full slider */
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; z-index: 3; transform: translateX(-1px); box-shadow: 0 0 0 1px rgba(58,42,38,0.18); }
.ba-handle::after { content: "‹ ›"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--wine); display: grid; place-items: center; font-size: 16px; letter-spacing: 2px; box-shadow: 0 8px 24px rgba(58,42,38,0.3); cursor: ew-resize; }
.ba-label { position: absolute; bottom: 16px; z-index: 4; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; background: rgba(36,25,23,0.55); padding: 6px 14px; border-radius: 999px; pointer-events: none; }
.ba-label.before { left: 16px; }
.ba-label.after  { right: 16px; }

.ba-single { width: 100%; max-width: 620px; margin-inline: auto; border-radius: var(--radius-img); overflow: hidden; }
.ba-single img { width: 100%; height: auto; object-fit: contain; display: block; }

/* responsive video embed */
.video-embed { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-img); overflow: hidden; background: #000; box-shadow: 0 30px 70px -34px rgba(58,42,38,0.45); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Nav luxe polish ---------- */
.nav { box-shadow: 0 1px 0 rgba(176,141,87,0.18); }
.nav-links a:not(.nav-cta):hover::before { color: var(--clay); }

/* ============================================================
   LUXE QUICK WINS — site-wide polish
   ============================================================ */

/* 1) refined text selection */
::selection      { background: var(--wine); color: var(--on-wine); }
::-moz-selection { background: var(--wine); color: var(--on-wine); }

/* 2) elegant scrollbar */
html { scrollbar-color: var(--clay) transparent; scrollbar-width: thin; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--clay), var(--clay-soft));
  border-radius: 99px; border: 3px solid var(--paper);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* 3) gold-foil wordmark in the footer */
.footer .mark {
  background: linear-gradient(135deg, #C9A05A 0%, #E7CB8A 28%, #B0883F 52%, #EAD09A 76%, #9E7530 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.footer .mark sup { -webkit-text-fill-color: var(--clay); color: var(--clay); }

/* 4) gold sheen sweep across primary buttons on hover */
.btn-primary { overflow: hidden; }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 55%; height: 100%; z-index: 0; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(231,203,138,0.40), transparent);
  transform: skewX(-18deg); transition: left 0.7s var(--ease);
}
.btn-primary:hover::after { left: 135%; }
.btn-primary > * { position: relative; z-index: 1; }

/* 5) refined keyboard focus ring (gold) */
a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px;
}

html { scrollbar-gutter: stable; }

/* nav CTA: no shadow */
.nav-cta { box-shadow: none !important; }

/* ============================================================
   SPEED ADDICT SOCIETY — brand override (appended after René base)
   ดำ = brand surfaces (nav/footer/hero/story) · ขาว = product area · amber accent
   ============================================================ */
:root{
  --wine:#FEB800; --wine-deep:#E0A400; --wine-soft:#FFC83A;
  --gold:#FEB800; --clay:#C9892F; --on-wine:#0A0A0A;
}

/* Wordmark */
.sa-wordmark{ font-family:'Bebas Neue','Anuphan',sans-serif, var(--display); display:block; line-height:1; }
.sa-wordmark .l1{ font-weight:700; letter-spacing:.02em; text-transform:uppercase; color:#fff; font-size:21px; display:block; }
.sa-wordmark .l2{ font-weight:500; letter-spacing:.26em; text-transform:uppercase; color:var(--wine); font-size:8.5px; display:block; margin-top:3px; }

/* ---- Nav: solid black always ---- */
.nav{ background:#0A0A0A !important; box-shadow:0 1px 0 rgba(255,255,255,.08) !important; }
.nav.scrolled{ background:#0A0A0A !important; box-shadow:0 8px 24px -16px rgba(0,0,0,.8), 0 1px 0 rgba(255,255,255,.08) !important; }
.nav-links a{ color:rgba(255,255,255,.82) !important; }
.nav-links a:hover, .nav-links a[aria-current="page"]{ color:var(--wine) !important; }
.nav-links a:not(.nav-cta)::after{ background:var(--wine) !important; }
.nav-links a:not(.nav-cta):hover::before{ color:var(--wine) !important; }
.nav--over:not(.scrolled) .nav-links a{ color:rgba(255,255,255,.82) !important; text-shadow:none !important; }
.nav--over:not(.scrolled) .nav-links a:hover{ color:var(--wine) !important; }
.nav--over:not(.scrolled) .nav-toggle span{ background:#fff !important; }
.nav-cta, .nav-links a.nav-cta, .nav--over:not(.scrolled) .nav-links a.nav-cta{
  background:var(--wine) !important; color:#0A0A0A !important; border-radius:999px;
  padding:9px 18px !important; font-weight:600 !important; box-shadow:none !important; }
.nav-toggle span{ background:#fff !important; }
.lang-switch a{ color:rgba(255,255,255,.55) !important; }
.lang-switch a:hover{ color:#fff !important; }
.lang-switch a.is-active{ background:var(--wine) !important; color:#0A0A0A !important; }
.sub-menu{ background:#141414 !important; border-color:rgba(255,255,255,.10) !important; }
.sub-menu a{ color:rgba(255,255,255,.78) !important; }
.sub-menu a:hover, .sub-menu a[aria-current="page"]{ background:rgba(255,255,255,.06) !important; color:var(--wine) !important; }
.nav-cart{ display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:999px; color:#fff; position:relative; }
.nav-cart:hover{ background:rgba(255,255,255,.10); }
.nav-cart .badge{ position:absolute; top:2px; right:2px; min-width:17px; height:17px; padding:0 4px; border-radius:999px; background:var(--wine); color:#0A0A0A; font-size:10px; font-weight:700; display:flex; align-items:center; justify-content:center; font-family:'Bebas Neue','Anuphan',sans-serif; }

/* ---- Drawer dark ---- */
.drawer{ background:#0A0A0A !important; }
.drawer a{ color:#fff !important; font-family:'Bebas Neue','Anuphan',sans-serif, var(--display); }
.drawer .close{ color:#fff !important; }
.drawer-sub{ color:rgba(255,255,255,.6) !important; font-size:22px !important; }

/* ---- Footer black ---- */
.footer{ background:#0A0A0A !important; color:rgba(255,255,255,.7) !important; }
.footer a{ color:rgba(255,255,255,.7) !important; }
.footer a:hover{ color:var(--wine) !important; opacity:1; }
.footer .mark{ font-family:'Bebas Neue','Anuphan',sans-serif, var(--display) !important; color:#fff !important; font-size:34px !important; letter-spacing:.01em; }
.footer .mark .amber{ color:var(--wine); }
.footer h4{ color:#fff !important; }
.footer .tagline{ color:rgba(255,255,255,.6) !important; }
.footer-bottom{ color:rgba(255,255,255,.4) !important; border-top:1px solid rgba(255,255,255,.10); }

/* ---- Contact widget accent ---- */
.cw-btn.fb, .cw-toggle{ background:var(--wine) !important; color:#0A0A0A !important; }

/* ============================================================
   SPEED ADDICT — Home building blocks
   ============================================================ */
.sa-hero{ position:relative; min-height:100vh; display:flex; align-items:flex-end; background:#0A0A0A; color:#fff; overflow:hidden; }
.sa-hero__media{ position:absolute; inset:0; z-index:0; }
.sa-hero__media img, .sa-hero__media video{ width:100%; height:100%; object-fit:cover; opacity:.5; }
.sa-hero__scrim{ position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.25) 38%, rgba(10,10,10,.95) 100%); }
.sa-hero__inner{ position:relative; z-index:2; padding-top:150px; padding-bottom:clamp(54px,8vw,120px); }
.sa-eyebrow-amber{ font-family:'Bebas Neue','Anuphan',sans-serif, var(--display); letter-spacing:.34em; text-transform:uppercase; color:var(--wine); font-size:13px; font-weight:500; }
.sa-display{ font-family:'Bebas Neue','Anuphan',sans-serif, var(--display); text-transform:uppercase; font-weight:700; line-height:.9; letter-spacing:.01em; color:#fff; font-size:clamp(46px,8.5vw,108px); margin-top:14px; }
.sa-display .amber{ color:var(--wine); }
.sa-sub{ color:rgba(255,255,255,.82); font-weight:300; font-size:clamp(16px,1.6vw,20px); max-width:48ch; line-height:1.7; margin-top:22px; }
.sa-hero__cta{ display:flex; gap:14px; flex-wrap:wrap; margin-top:34px; }

/* Section headings */
.sa-kicker{ font-family:'Bebas Neue','Anuphan',sans-serif, var(--display); letter-spacing:.3em; text-transform:uppercase; color:var(--wine); font-size:12px; font-weight:600; }
.sa-h2{ font-family:'Bebas Neue','Anuphan',sans-serif, var(--display); text-transform:uppercase; font-weight:700; line-height:1; letter-spacing:.01em; color:var(--ink); font-size:clamp(28px,4vw,35px); margin-top:8px; }
.sa-h2--light{ color:#fff; }

/* Buttons */
.sa-amber-btn{ display:inline-flex; align-items:center; gap:8px; background:var(--wine); color:#0A0A0A; font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.06em; font-weight:600; padding:13px 26px; border-radius:999px; transition:.2s; }
.sa-amber-btn:hover{ background:var(--wine-soft); }
.sa-ghost-btn{ display:inline-flex; align-items:center; gap:8px; border:1px solid rgba(255,255,255,.32); color:#fff; font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.06em; font-weight:500; padding:13px 26px; border-radius:999px; transition:.2s; }
.sa-ghost-btn:hover{ border-color:var(--wine); color:var(--wine); }
.sa-dark-btn{ display:inline-flex; align-items:center; gap:8px; background:#0A0A0A; color:#fff; font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.06em; font-weight:600; padding:13px 26px; border-radius:999px; transition:.2s; }
.sa-dark-btn:hover{ background:var(--wine); color:#0A0A0A; }

/* Bike tiles */
.sa-bikes{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
@media(min-width:880px){ .sa-bikes{ grid-template-columns:repeat(4,1fr); } }
.sa-bike{ position:relative; aspect-ratio:4/5; border-radius:14px; overflow:hidden; background:#141414; display:flex; align-items:flex-end; }
.sa-bike img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.72; transition:.45s; z-index:0; }
.sa-bike:hover img{ opacity:.9; transform:scale(1.05); }
.sa-bike__scrim{ position:absolute; inset:0; background:linear-gradient(180deg,rgba(10,10,10,.05),rgba(10,10,10,.88)); z-index:1; }
.sa-bike__count{ position:absolute; top:12px; left:12px; z-index:2; background:#FEB800; color:#141414; font-family:'Bebas Neue','Anuphan',sans-serif; font-weight:700; font-size:12.5px; letter-spacing:.04em; padding:4px 10px; border-radius:999px; }
.sa-bike__label{ position:relative; z-index:2; padding:18px; }
.sa-bike__label .n{ font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; font-weight:700; color:#fff; font-size:21px; letter-spacing:.02em; line-height:1; }
.sa-bike__label .s{ color:rgba(255,255,255,.72); font-size:12px; margin-top:5px; letter-spacing:.02em; }

/* Product grid + card */
.sa-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
@media(min-width:760px){ .sa-grid{ grid-template-columns:repeat(3,1fr); } }
@media(min-width:1080px){ .sa-grid{ grid-template-columns:repeat(4,1fr); } }
.sa-card{ background:#fff; border:1px solid #ECECEC; border-radius:14px; overflow:hidden; display:flex; flex-direction:column; transition:.25s; }
.sa-card:hover{ box-shadow:0 16px 44px rgba(0,0,0,.10); transform:translateY(-3px); border-color:#E0E0E0; }
.sa-card__media{ aspect-ratio:1/1; background:#F4F4F5; position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.sa-card__media img{ width:100%; height:100%; object-fit:cover; }
.sa-card__ph{ font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.2em; color:#CFCFCF; font-size:12px; }
.sa-card__body{ padding:14px 16px 16px; display:flex; flex-direction:column; gap:6px; flex:1; }
.sa-card__cat{ font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.16em; font-size:10.5px; color:var(--wine);
  display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.sa-card__name{ font-weight:600; color:var(--ink); font-size:14.5px; line-height:1.35; min-height:2.7em;
  display:-webkit-box; -webkit-line-clamp:2; line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.sa-card__foot{ margin-top:auto; display:flex; align-items:baseline; gap:8px; }
.sa-card__price{ font-family:'Bebas Neue','Anuphan',sans-serif; font-weight:600; color:var(--ink); font-size:18px; }
.sa-card__old{ font-size:13px; color:#A0A0A0; text-decoration:line-through; }
.sa-badge{ position:absolute; top:10px; left:10px; background:var(--wine); color:#0A0A0A; font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.08em; font-size:10px; font-weight:600; padding:4px 9px; border-radius:999px; z-index:1; }
.sa-badge--dark{ background:#0A0A0A; color:#fff; }

/* Brand strip */
.sa-brands{ display:flex; flex-wrap:wrap; gap:12px 34px; align-items:center; }
.sa-brands span{ font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.14em; color:rgba(255,255,255,.55); font-size:clamp(15px,1.7vw,22px); font-weight:500; }

/* Dark band */
.sa-dark{ background:#0A0A0A; color:#fff; }
.sa-dark .sa-h2{ color:#fff; }

/* Split feature (story) */
.sa-split{ display:grid; grid-template-columns:1fr; gap:36px; align-items:center; }
@media(min-width:900px){ .sa-split{ grid-template-columns:1.05fr .95fr; gap:64px; } }
.sa-split__media{ aspect-ratio:5/4; border-radius:18px; overflow:hidden; background:#141414; }
.sa-split__media img{ width:100%; height:100%; object-fit:cover; }
.sa-lede{ color:rgba(255,255,255,.78); font-weight:300; line-height:1.85; font-size:clamp(15px,1.5vw,18px); }

/* ── Speed Addict: kill René page-hero/post-hero watermark + cream → clean white ── */
.page-hero{ background:#FFFFFF !important; border-bottom:1px solid #ECECEC !important; }
.page-hero::before{ display:none !important; }
.page-hero::after{ content:none !important; display:none !important; }
.post-hero{ background:#FFFFFF !important; border-bottom:1px solid #ECECEC !important; }
.post-hero::before, .post-hero::after{ display:none !important; content:none !important; }

/* ── Speed Addict: tighter page-hero (was 188px pad / 595px tall — too empty) ── */
.page-hero{ padding: 104px 0 42px !important; }
.post-hero{ padding-top: 96px !important; }

/* ── Speed Addict: neutral ink/paper tokens (kill warm-brown on card names/prices/text) ── */
:root{ --ink:#141414; --ink-soft:#5A5A5A; --paper:#F6F6F6; --line:rgba(20,20,20,.10); --line-soft:rgba(20,20,20,.06); }
body::before{ display:none !important; }

/* ── Speed Addict: product variant pills ── */
.sa-variant-pill{ border:1px solid #ddd; border-radius:999px; padding:8px 16px; font-size:13px; font-weight:600; cursor:pointer; background:#fff; color:var(--ink); transition:.15s; }
.sa-variant-pill:hover{ border-color:var(--wine); }
.sa-variant-pill.is-on{ border-color:var(--wine); color:var(--wine); background:#FBEEDD; }

/* ════════════════════════════════════════════════════════════
   SPEED ADDICT — cinematic / editorial polish
   ════════════════════════════════════════════════════════════ */
/* Hero: video with a darker overlay so text reads clearly */
.sa-hero__media img, .sa-hero__media video{ opacity:.85; }
.sa-hero__scrim{ background:
   linear-gradient(0deg, rgba(8,8,8,.32), rgba(8,8,8,.32)),
   linear-gradient(180deg, rgba(10,10,10,.62) 0%, rgba(10,10,10,.30) 30%, rgba(10,10,10,.72) 72%, rgba(10,10,10,.98) 100%),
   linear-gradient(90deg, rgba(10,10,10,.82) 0%, rgba(10,10,10,.32) 48%, rgba(10,10,10,0) 80%); }
.sa-hero{ min-height:100vh; }
.sa-hero__inner{ padding-bottom:clamp(60px,9vw,130px); }
.sa-display{ font-size:clamp(50px,9vw,120px); letter-spacing:-.01em; }
.sa-hero__scroll{ position:absolute; left:50%; bottom:22px; transform:translateX(-50%); z-index:2; color:rgba(255,255,255,.55); font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.3em; font-size:10px; display:flex; flex-direction:column; align-items:center; gap:6px; }
.sa-hero__scroll::after{ content:''; width:1px; height:34px; background:linear-gradient(rgba(255,255,255,.5),transparent); animation:saScroll 1.8s ease-in-out infinite; }
@keyframes saScroll{ 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* Moving "tape" strip (moto detail) */
.sa-tape{ background:var(--wine); overflow:hidden; padding:11px 0; white-space:nowrap; }
.sa-tape__track{ display:inline-block; animation:saMarquee 28s linear infinite; }
.sa-tape__track span{ font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.22em; font-weight:600; font-size:13px; color:#0A0A0A; margin:0 26px; }
.sa-tape__track span::before{ content:'★'; margin-right:26px; opacity:.5; }
@keyframes saMarquee{ from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* Brand marquee (infinite scroll, monochrome) */
.sa-brand-marquee{ overflow:hidden; -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.sa-brand-marquee__track{ display:inline-flex; align-items:center; gap:56px; animation:saMarquee 32s linear infinite; }
.sa-brand-marquee__track span{ font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.12em; font-weight:500; font-size:clamp(18px,2vw,26px); color:rgba(255,255,255,.4); transition:.25s; flex-shrink:0; }
.sa-brand-marquee:hover .sa-brand-marquee__track{ animation-play-state:paused; }
.sa-brand-marquee__track span:hover{ color:var(--wine); }
/* logo chips (real brand logos on white cards over the dark band) */
.sa-brand-marquee__track--logos{ gap:24px; }
.sa-brand-logo{ flex-shrink:0; display:inline-flex; align-items:center; justify-content:center;
  width:158px; height:88px; background:#fff; border-radius:18px; padding:16px 22px;
  box-shadow:0 10px 30px -18px rgba(0,0,0,.6); transition:transform .25s var(--ease), box-shadow .25s var(--ease); }
.sa-brand-logo img{ max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; display:block; }
.sa-brand-marquee:hover .sa-brand-logo:hover{ transform:translateY(-4px); box-shadow:0 16px 36px -16px rgba(254,184,0,.5); }
@media (max-width:560px){ .sa-brand-logo{ width:128px; height:74px; padding:13px 18px; } }
/* brand GRID (white cards on the dark band — prominent, reads as a full roster) */
.sa-brand-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:12px; max-width:1120px; margin:0 auto; }
@media(min-width:560px){ .sa-brand-grid{ grid-template-columns:repeat(3,1fr); gap:14px; } }
@media(min-width:900px){ .sa-brand-grid{ grid-template-columns:repeat(6,1fr); } }
.sa-brand-cell{ background:#fff; border-radius:16px; height:94px; display:flex; align-items:center; justify-content:center; padding:16px 18px; transition:transform .25s var(--ease), box-shadow .25s var(--ease); }
.sa-brand-cell:hover{ transform:translateY(-4px); box-shadow:0 16px 38px -16px rgba(254,184,0,.5); }
.sa-brand-cell--logo img{ max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; display:block; }
.sa-brand-cell--name span{ font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.03em; font-size:19px; line-height:1.04; color:#141414; text-align:center; }

/* Empty product-card placeholder — engineered look, not plain text */
.sa-card__ph{ position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px;
  background:
    repeating-linear-gradient(45deg, #F1F2F4 0 12px, #ECEEF0 12px 24px);
  color:#B7BCC2; font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.22em; font-size:11px; }
.sa-card__ph::before{ content:'SA'; font-size:26px; font-weight:700; letter-spacing:.04em; color:#C7CCD2; }

/* Section rhythm + headings */
.sa-h2{ letter-spacing:-.005em; }
.sa-kicker{ font-size:11.5px; }
.sa-bike:hover{ transform:translateY(-2px); }
.sa-bike{ transition:transform .25s; }
.sa-card{ transition:transform .25s, box-shadow .25s; }

/* ════ 8PULSE FEEL — poster type (Bebas Neue / Anton) + motion ════ */
.sa-display{ font-family:'Anton','Bebas Neue','Anuphan',sans-serif !important; letter-spacing:.005em; font-weight:400 !important; line-height:.86; }
.sa-h2{ font-family:'Bebas Neue','Noto Sans Thai','Anuphan',sans-serif; letter-spacing:.015em; line-height:.92; font-weight:700; }
.sa-display, .sa-h2{ -webkit-font-smoothing:antialiased; }
.sa-tape__track span, .sa-brand-marquee__track span{ font-family:'Bebas Neue','Anuphan',sans-serif; letter-spacing:.06em; }
.page-hero h1, .post-title{ font-family:'Anton','Bebas Neue','Anuphan',sans-serif !important; letter-spacing:.01em; line-height:.92; }

/* Rotating "BUILT FOR ___" band */
.sa-rotate{ background:#0A0A0A; color:#fff; padding:clamp(40px,6vw,72px) 0; overflow:hidden; }
.sa-rotate__inner{ display:flex; align-items:center; justify-content:center; gap:18px; flex-wrap:wrap; font-family:'Anton','Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; font-size:clamp(30px,6vw,72px); line-height:1; letter-spacing:.01em; }
.sa-rotate__static{ color:#fff; }
.sa-rotate__words{ position:relative; height:1.05em; overflow:hidden; min-width:10.5ch; text-align:left; }
.sa-rotate__words span{ display:block; color:var(--wine); position:absolute; left:0; top:0; width:100%; white-space:nowrap; animation:saRotate 8s infinite; opacity:0; }
.sa-rotate__words span:nth-child(1){ animation-delay:0s } .sa-rotate__words span:nth-child(2){ animation-delay:2s }
.sa-rotate__words span:nth-child(3){ animation-delay:4s } .sa-rotate__words span:nth-child(4){ animation-delay:6s }
@keyframes saRotate{ 0%{opacity:0;transform:translateY(40%)} 4%{opacity:1;transform:translateY(0)} 22%{opacity:1;transform:translateY(0)} 27%{opacity:0;transform:translateY(-40%)} 100%{opacity:0} }

/* Parallax-ish fixed image bands */
.sa-parallax{ background-attachment:fixed; background-size:cover; background-position:center; }
@media(hover:none){ .sa-parallax{ background-attachment:scroll; } }

/* ── Brand accent = logo yellow #FEB800. Bright on dark surfaces/fills; dark-gold for TEXT on light (readability) ── */
:root{ --wine:#FEB800; --wine-deep:#E0A400; --wine-soft:#FFC83A; --gold:#FEB800; --on-wine:#141414; --clay-soft:#FEB800; }
/* inside light areas, var(--wine) becomes readable dark-gold + on-fill text flips to white */
/* ตัวอักษร/ลิงก์/kicker บนพื้นสว่าง = ทองเข้ม #9C6B00 (AA 4.7:1) — fills ยังเหลืองสดจาก rule ด้านล่าง */
.bg-white, .bg-paper, .section.bg-white, .sa-card, .chips, .contact-grid, .info-list, .map-card{ --wine:#9C6B00; --on-wine:#ffffff; }
/* hero band พื้นเข้ม = คง amber สด อ่านชัดบนดำ */
.page-hero, .post-hero{ --wine:#FEB800; --on-wine:#0A0A0A; }
/* product cards: category label readable gold */
.sa-card__cat{ color:#9C6B00; }
/* keep bright-yellow FILLS even when they sit on light areas (buttons/badges/active) — yellow + black text = logo */
.btn-primary, .sa-amber-btn, .nav-cta, .sa-badge:not(.sa-badge--dark), .chip.is-active{ background:#FEB800!important; color:#141414!important; border-color:#FEB800!important; }
.btn-primary svg, .sa-amber-btn svg{ color:#141414; }
.sa-tape, .cta-band{ background:#FEB800; }
/* rotating "Built for ___" words = bright-yellow TEXT on the dark band (no fill — fill made it yellow-on-yellow/invisible) */
.sa-rotate__words span{ background:transparent; color:#FEB800; }
.sa-variant-pill.is-on{ background:#FEB800; color:#141414; border-color:#FEB800; }

/* ── Homepage only: nav transparent over hero at top → solid black on scroll · enlarged logo at top ── */
.nav--home:not(.scrolled){
  background:transparent !important;
  background-image:linear-gradient(to bottom, rgba(0,0,0,.42), rgba(0,0,0,0)) !important;
  box-shadow:none !important;
}
.nav--home .brand{ position:relative; z-index:6; }
/* enlarge via transform (keeps nav height + links fixed — logo just overhangs onto the hero); snaps back on scroll */
.nav--home .brand img{ transform-origin:left top; transition:transform .4s var(--ease), filter .4s var(--ease); will-change:transform; }
.nav--home:not(.scrolled) .brand img{ transform:scale(2.05); filter:drop-shadow(0 10px 26px rgba(0,0,0,.55)); }
@media (max-width:640px){ .nav--home:not(.scrolled) .brand img{ transform:scale(1.5); } }

/* ════════ SHOP SIDEBAR FILTER (products page) ════════ */
[x-cloak]{ display:none !important; }
.shop-layout{ display:grid; grid-template-columns:248px 1fr; gap:36px; align-items:start; }
.shop-results{ min-width:0; }
.shop-filters{ font-size:14px; }
.shop-filters__top{ display:flex; align-items:center; gap:10px; padding-bottom:4px; }
.shop-filters__title{ font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.16em; font-size:15px; color:#141414; }
.shop-filters__clear{ margin-left:auto; font-size:12.5px; color:#9C6B00; text-decoration:underline; }
.shop-filters__close{ display:none; }
.shop-filters__done{ display:none; }
.filt-group{ border-top:1px solid var(--line); padding:15px 0; }
.filt-group__head{ display:flex; justify-content:space-between; align-items:center; width:100%; font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.14em; font-size:12.5px; color:#9C6B00; margin-bottom:7px; }
.filt-group__head.as-btn{ background:none; border:0; cursor:pointer; padding:0; }
.filt-chev{ transition:transform .25s var(--ease); font-size:14px; opacity:.7; }
.filt-chev.is-open{ transform:rotate(180deg); }
.filt-list{ display:flex; flex-direction:column; gap:1px; }
.filt-link{ display:flex; justify-content:space-between; align-items:center; gap:8px; padding:8px 11px; border-radius:8px; color:var(--ink); position:relative; line-height:1.3; }
.filt-link:hover{ background:#FAFAF8; color:#141414; }
.filt-link.is-active{ font-weight:600; color:#141414; background:#FFF8E6; }
.filt-link.is-active::before{ content:""; position:absolute; left:0; top:6px; bottom:6px; width:3px; background:#FEB800; border-radius:0 3px 3px 0; }
.filt-n{ font-size:12px; color:var(--ink-soft); flex-shrink:0; }
.brand-search{ width:100%; padding:9px 12px; border:1px solid var(--line); border-radius:8px; font-size:13.5px; margin-bottom:8px; font-family:inherit; }
.brand-search:focus{ outline:none; border-color:#FEB800; }
.shop-fbar{ display:flex; flex-wrap:wrap; align-items:center; gap:9px; margin-bottom:16px; }
.fbar-label{ font-size:13px; color:var(--ink-soft); }
.chip--filter{ background:#FEB800 !important; color:#141414 !important; border-color:#FEB800 !important; padding:6px 14px; font-size:13px; }
.chip--filter .x{ font-weight:700; margin-left:2px; }
.fbar-clear{ font-size:12.5px; color:#9C6B00; text-decoration:underline; margin-left:2px; }
.shop-toolbar{ display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:22px; flex-wrap:wrap; }
.shop-count{ font-family:'Bebas Neue','Anuphan',sans-serif; letter-spacing:.06em; font-size:15px; color:#141414; }
.shop-sort{ font-size:13px; color:var(--ink-soft); display:inline-flex; align-items:center; gap:7px; }
.shop-sort select{ border:1px solid var(--line); border-radius:8px; padding:7px 10px; font-size:13.5px; font-family:inherit; background:#fff; cursor:pointer; }
.shop-sort select:focus{ outline:none; border-color:#FEB800; }
.shop-layout .sa-grid{ grid-template-columns:repeat(2,1fr); }
@media(min-width:1240px){ .shop-layout .sa-grid{ grid-template-columns:repeat(3,1fr); } }
.filters-trigger{ display:none; }
.filters-scrim{ display:none; }
@media(max-width:980px){
  .shop-layout{ grid-template-columns:1fr; }
  .filters-trigger{ display:inline-flex; align-items:center; justify-content:center; gap:8px; width:100%; padding:13px; margin-bottom:18px; border:1px solid var(--ink); border-radius:999px; font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.1em; font-size:14px; background:#fff; color:#141414; cursor:pointer; }
  .filters-scrim{ display:block; position:fixed; inset:0; background:rgba(20,20,20,.5); z-index:59; }
  .shop-filters{ position:fixed; inset:0 auto 0 0; width:min(86vw,340px); max-height:none; transform:translateX(-100%); background:#fff; z-index:60; overflow:auto; padding:22px 20px 90px; transition:transform .3s var(--ease); box-shadow:8px 0 40px rgba(0,0,0,.25); }
  .shop-filters.is-open{ transform:none; }
  .shop-filters__close{ display:block; margin-left:6px; background:none; border:0; font-size:26px; line-height:1; color:#141414; cursor:pointer; }
  .shop-filters__done{ display:block; position:sticky; bottom:-22px; margin:14px -20px -22px; padding:14px 20px; background:#fff; border-top:1px solid var(--line); }
  .shop-filters__done button{ width:100%; padding:13px; border:0; border-radius:999px; background:#FEB800; color:#141414; font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.1em; font-size:15px; cursor:pointer; }
}

/* ════════ DARK PAGE HERO (หน้ารอง — แมตช์สไตล์หน้าแรก) ════════ */
.page-hero, .post-hero{
  background:
    radial-gradient(115% 95% at 50% -10%, rgba(254,184,0,.12) 0%, rgba(10,10,10,0) 45%),
    linear-gradient(180deg, rgba(12,12,12,.72) 0%, rgba(10,10,10,.80) 50%, rgba(10,10,10,.97) 100%),
    url('/img/placeholder/hero-harley.jpg') center 28% / cover no-repeat,
    #0A0A0A !important;
  border-bottom:1px solid rgba(255,255,255,.08) !important;
  --wine:#FEB800; --on-wine:#141414;          /* kicker/ลิงก์เหลืองสดบนพื้นดำ (override dark-gold ของ light-surface) */
}
.page-hero::before, .page-hero::after, .post-hero::before, .post-hero::after{ content:none !important; display:none !important; }
.page-hero .crumb, .post-hero .crumb{ color:rgba(255,255,255,.5); }
.page-hero .crumb a, .post-hero .crumb a{ color:#FEB800; }
.page-hero .crumb a:hover, .post-hero .crumb a:hover{ color:#fff; opacity:1; }
.page-hero .kicker, .post-hero .kicker, .post-eyebrow{ color:#FEB800 !important; }
.page-hero h1, .page-hero .h1, .post-hero h1, .post-title{ color:#fff !important; }
.page-hero h1 em, .page-hero .h1 .it, .post-title em{ color:#fff; }
.page-hero .lead, .post-hero .lead, .page-hero > .wrap > p, .post-hero .post-meta{ color:rgba(255,255,255,.72) !important; }
.page-hero .rev-rating, .page-hero .rev-rating strong{ color:#fff; }
.page-hero .stars{ color:#FEB800; }
/* chips inside a dark hero (e.g. บทความ): outlined on dark, yellow when active */
.page-hero .chip{ background:transparent; border-color:rgba(255,255,255,.22); color:rgba(255,255,255,.82); }
.page-hero .chip:hover{ border-color:#FEB800; color:#fff; }
.page-hero .chip.is-active{ background:#FEB800 !important; color:#141414 !important; border-color:#FEB800 !important; }
.page-hero .chip .n{ color:inherit; opacity:.7; }

/* ── Product detail title (no hero · fonts match site headings) ── */
.product-detail .prod-eyebrow{ font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.16em; font-size:12px; color:var(--wine); margin-bottom:9px; }
.product-detail .prod-title{ font-family:'Bebas Neue','Anuphan',sans-serif; font-weight:700; font-size:clamp(25px,3.1vw,38px); line-height:1.12; color:var(--ink); letter-spacing:.01em; }
.product-detail .crumb a{ color:var(--wine); }
.product-detail .crumb a:hover{ opacity:.7; }

/* ════════ FIXES & POLISH (batch) ════════ */
/* 1) cart toast: was --on-wine(#141414) dark-on-dark → white text */
.toast{ color:#fff !important; }
.toast .tick{ background:#FEB800; color:#141414; }

/* 2) contact widget: Facebook = FB blue · all circles same size · no rotate (same before/after) */
.cw-btn.fb{ background:#1877F2 !important; color:#fff !important; }
.cw-btn, .cw-toggle{ width:58px; height:58px; }
.cw.open .cw-toggle{ transform:none; }

/* 3) homepage logo at top = 75px (from 48px base) */
.nav--home:not(.scrolled) .brand img{ transform:scale(1.5625); }
@media(max-width:640px){ .nav--home:not(.scrolled) .brand img{ transform:scale(1.3); } }

/* 4) hero headline: line 1 slides in from left, line 2 from right — meet in the middle */
@keyframes saSlideL{ from{ opacity:0; transform:translateX(-90px); } to{ opacity:1; transform:translateX(0); } }
@keyframes saSlideR{ from{ opacity:0; transform:translateX(90px); }  to{ opacity:1; transform:translateX(0); } }
.sa-hero .sa-ln{ display:inline-block; will-change:transform,opacity; }
.sa-hero .sa-ln--l{ animation:saSlideL .95s cubic-bezier(.2,.75,.2,1) both; }
.sa-hero .sa-ln--r{ animation:saSlideR .95s cubic-bezier(.2,.75,.2,1) .18s both, saBlink 5s 1.6s infinite; }
/* periodic amber blink + glow once it has settled into place (~every 5s) */
@keyframes saBlink{
  0%, 84%, 100%{ opacity:1; text-shadow:0 0 0 rgba(254,184,0,0); }
  87%{ opacity:.32; }
  90%{ opacity:1; text-shadow:0 0 22px rgba(254,184,0,.9), 0 0 6px rgba(254,184,0,.8); }
  93%{ opacity:.45; }
  96%{ opacity:1; text-shadow:0 0 16px rgba(254,184,0,.75); }
}
@media(prefers-reduced-motion:reduce){ .sa-hero .sa-ln{ animation:none !important; opacity:1 !important; } }

/* 5) category cards with product image (home "หมวดหมู่อะไหล่") */
.sa-cat-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
@media(min-width:680px){ .sa-cat-grid{ grid-template-columns:repeat(4,1fr); } }
.sa-cat-card{ position:relative; display:block; border-radius:16px; overflow:hidden; aspect-ratio:4/3; background:#141414; }
.sa-cat-card__media{ position:absolute; inset:0; display:block; }
.sa-cat-card__media img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.sa-cat-card:hover .sa-cat-card__media img{ transform:scale(1.07); }
.sa-cat-card__ph{ position:absolute; inset:0; display:grid; place-items:center; font-family:'Bebas Neue',sans-serif; letter-spacing:.2em; color:#555; font-size:20px; }
.sa-cat-card__scrim{ position:absolute; inset:0; background:linear-gradient(to top, rgba(10,10,10,.88) 0%, rgba(10,10,10,.15) 58%, transparent 100%); }
.sa-cat-card__body{ position:absolute; left:0; right:0; bottom:0; padding:14px 16px; display:flex; flex-direction:column; gap:2px; z-index:1; }
.sa-cat-card__name{ font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.04em; font-size:16px; line-height:1.12; color:#fff; }
.sa-cat-card__n{ font-size:12px; font-weight:600; color:#FEB800; }

/* ════════ STOREFRONT NAV: search + account + cart-count (parity with shop header) ════════ */
.nav-actions{ display:inline-flex; align-items:center; gap:3px; position:relative; }
.nav-actions a::before, .nav-actions button::before, .nav-acct__menu a::before{ content:none !important; }
.nav-actions a::after{ display:none !important; }
.nav-ic{ display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:999px; background:none; border:0; color:#fff; cursor:pointer; padding:0; transition:background .2s, color .2s; }
.nav-ic:hover{ background:rgba(255,255,255,.10); color:#fff; }
.nav-acct{ position:relative; display:inline-flex; }
.nav-acct__menu{ position:absolute; top:calc(100% + 8px); right:0; min-width:210px; background:#141414; border:1px solid rgba(255,255,255,.10); border-radius:14px; padding:8px; display:flex; flex-direction:column; gap:1px; box-shadow:0 24px 56px -22px rgba(0,0,0,.85); z-index:210; }
.nav-acct__hi{ font-size:11px; color:rgba(255,255,255,.5); padding:6px 12px 8px; border-bottom:1px solid rgba(255,255,255,.08); margin-bottom:4px; font-family:'Bebas Neue','Anuphan',sans-serif; letter-spacing:.05em; text-transform:uppercase; }
.nav-acct__menu a, .nav-acct__menu button{ display:block; width:100%; text-align:left; padding:9px 12px; border-radius:8px; font-size:14px; color:rgba(255,255,255,.85) !important; background:none; border:0; cursor:pointer; font-family:inherit; }
.nav-acct__menu a:hover, .nav-acct__menu button:hover{ background:rgba(255,255,255,.07); color:#FEB800 !important; }
.nav-acct__menu form{ margin:4px 0 0; border-top:1px solid rgba(255,255,255,.08); padding-top:4px; }
.nav-search{ position:absolute; top:calc(100% + 10px); right:0; width:min(380px,80vw); background:#141414; border:1px solid rgba(255,255,255,.10); border-radius:14px; padding:10px; box-shadow:0 24px 56px -22px rgba(0,0,0,.85); z-index:210; }
.nav-search form{ display:flex; gap:8px; }
.nav-search input{ flex:1; min-width:0; background:#0A0A0A; border:1px solid rgba(255,255,255,.14); border-radius:999px; padding:11px 16px; color:#fff; font-size:14px; font-family:inherit; }
.nav-search input::placeholder{ color:rgba(255,255,255,.4); }
.nav-search input:focus{ outline:none; border-color:#FEB800; }
.nav-search button{ flex-shrink:0; width:44px; border-radius:999px; background:#FEB800; color:#141414; border:0; cursor:pointer; display:grid; place-items:center; }
/* mobile drawer additions */
.drawer-search{ display:flex; gap:8px; margin:6px 0 14px; }
.drawer-search input{ flex:1; min-width:0; background:#141414; border:1px solid rgba(255,255,255,.14); border-radius:999px; padding:11px 16px; color:#fff; font-size:14px; }
.drawer-search input::placeholder{ color:rgba(255,255,255,.4); }
.drawer-search input:focus{ outline:none; border-color:#FEB800; }
.drawer-search button{ flex-shrink:0; width:46px; border-radius:999px; background:#FEB800; color:#141414; border:0; display:grid; place-items:center; }
.drawer-cart{ display:inline-flex; align-items:center; }
.drawer-cart .badge{ display:inline-flex; align-items:center; justify-content:center; min-width:20px; height:20px; padding:0 6px; margin-left:8px; border-radius:999px; background:#FEB800; color:#141414; font-size:11px; font-weight:700; font-family:'Bebas Neue','Anuphan',sans-serif; }
.drawer-logout{ margin:0; }
.drawer-logout button{ background:none; border:0; color:rgba(255,255,255,.65); cursor:pointer; font-family:inherit; font-size:inherit; padding:0; }
.drawer-logout button:hover{ color:#FEB800; }

/* ════════ PRODUCT DETAIL (PDP) ════════ */
.pd-top{ background:#0A0A0A; padding:clamp(104px,11vw,128px) 0 22px; border-bottom:1px solid rgba(255,255,255,.08); }
.pd-crumb{ font-size:13px; color:rgba(255,255,255,.5); letter-spacing:.02em; }
.pd-crumb a{ color:#FEB800; }
.pd-crumb a:hover{ color:#fff; }
.pd-crumb span{ color:rgba(255,255,255,.85); }

.pd-layout{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:48px; align-items:start; }
@media(max-width:900px){ .pd-layout{ grid-template-columns:1fr; gap:26px; } }

.pd-gallery__main{ position:relative; width:100%; aspect-ratio:1/1; border-radius:18px; overflow:hidden; background:#F4F4F5; display:flex; align-items:center; justify-content:center; }
.pd-gallery__main img{ width:100%; height:100%; object-fit:cover; }
.pd-ph{ font-family:'Bebas Neue',sans-serif; letter-spacing:.2em; color:#CFCFCF; text-transform:uppercase; font-size:15px; }
.pd-thumbs{ display:flex; gap:10px; margin-top:12px; flex-wrap:wrap; }
.pd-thumb{ width:74px; height:74px; border-radius:12px; overflow:hidden; background:#F4F4F5; border:2px solid transparent; padding:0; cursor:pointer; transition:border-color .2s; }
.pd-thumb img{ width:100%; height:100%; object-fit:cover; }
.pd-thumb.is-on{ border-color:#FEB800; }

.pd-eyebrow{ font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.18em; font-size:12px; color:#9C6B00; margin-bottom:8px; }
.pd-title{ font-family:'Anton','Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; font-weight:400; line-height:1.04; font-size:clamp(26px,3.2vw,40px); color:#141414; letter-spacing:.005em; }
.pd-meta{ margin-top:12px; display:flex; flex-wrap:wrap; gap:10px; font-size:12px; color:var(--ink-soft); letter-spacing:.04em; }

.pd-buy{ margin-top:22px; border:1px solid var(--line); border-radius:18px; padding:22px; background:#FCFCFB; }
.pd-pricerow{ display:flex; align-items:baseline; gap:12px; flex-wrap:wrap; }
.pd-price{ font-family:'Bebas Neue','Anuphan',sans-serif; font-size:40px; line-height:1; color:#141414; }
.pd-old{ text-decoration:line-through; color:var(--ink-soft); font-size:16px; }
.pd-save{ background:#FEB800; color:#141414; font-size:12px; font-weight:700; padding:3px 10px; border-radius:999px; align-self:center; }
.pd-stock{ margin-top:12px; display:inline-flex; align-items:center; gap:7px; font-size:13px; font-weight:600; }
.pd-stock .dot{ width:8px; height:8px; border-radius:50%; }
.pd-stock.is-in{ color:#2F7D4F; } .pd-stock.is-in .dot{ background:#2F7D4F; }
.pd-stock.is-out{ color:#B0392B; } .pd-stock.is-out .dot{ background:#B0392B; }
.pd-variants{ margin-top:18px; }
.pd-vlabel{ font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.16em; font-size:11px; color:var(--ink-soft); display:block; margin-bottom:8px; }
.pd-vpills{ display:flex; flex-wrap:wrap; gap:8px; }
.pd-form{ margin-top:18px; display:flex; gap:12px; align-items:stretch; flex-wrap:wrap; }
.pd-qty{ display:inline-flex; align-items:center; border:1px solid var(--line); border-radius:999px; overflow:hidden; background:#fff; }
.pd-qty button{ width:42px; height:50px; border:0; background:none; font-size:20px; cursor:pointer; color:#141414; line-height:1; }
.pd-qty button:disabled{ opacity:.3; cursor:default; }
.pd-qty input{ width:46px; text-align:center; border:0; font-size:17px; font-family:'Bebas Neue','Anuphan',sans-serif; background:none; -moz-appearance:textfield; }
.pd-qty input::-webkit-outer-spin-button, .pd-qty input::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }
.pd-add{ flex:1; min-width:190px; justify-content:center; height:50px; }
.pd-assure{ margin-top:18px; display:flex; flex-direction:column; gap:8px; }
.pd-assure span{ font-size:13px; color:var(--ink-soft); display:flex; gap:8px; align-items:center; }
.pd-assure .ck{ color:#2F7D4F; font-weight:800; }

.pd-specs{ margin-top:24px; border-top:1px solid var(--line); }
.pd-spec{ display:flex; gap:14px; padding:13px 0; border-bottom:1px solid var(--line); align-items:flex-start; }
.pd-spec__k{ flex:0 0 96px; font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.12em; font-size:11px; color:var(--ink-soft); padding-top:4px; }
.pd-spec__v{ flex:1; font-size:14.5px; color:#141414; }
.pd-spec__v > a{ color:#9C6B00; font-weight:600; }
.pd-fit{ display:flex; flex-wrap:wrap; gap:7px; }
.pd-fit a{ font-size:12.5px; border:1px solid #E5E5E5; border-radius:999px; padding:5px 13px; color:#141414; }
.pd-fit a:hover{ border-color:#FEB800; }
.pd-desc{ margin-top:22px; font-size:15px; line-height:1.85; color:var(--ink-soft); }
.pd-contact{ margin-top:20px; font-size:13.5px; color:var(--ink-soft); }
.pd-contact a{ color:#9C6B00; font-weight:600; text-decoration:underline; }

/* ════════ AUTH: LINE login button + divider ════════ */
.auth-line{ display:flex; align-items:center; justify-content:center; gap:10px; width:100%; padding:13px 18px; border-radius:999px; background:#06C755; color:#fff; font-weight:600; font-size:15px; transition:filter .2s; }
.auth-line:hover{ filter:brightness(1.06); color:#fff; }
.auth-line svg{ flex-shrink:0; }
.auth-or{ display:flex; align-items:center; gap:14px; margin:18px 0; color:var(--ink-soft); font-size:12px; text-transform:uppercase; letter-spacing:.08em; }
.auth-or::before, .auth-or::after{ content:""; flex:1; height:1px; background:var(--line); }

/* ── Order tracking lookup form ── */
.track-label{ display:block; font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.12em; font-size:12px; color:var(--ink-soft); margin-bottom:7px; }
.track-input{ width:100%; padding:13px 16px; border:1px solid var(--line); border-radius:12px; font-size:15px; font-family:inherit; background:#fff; }
.track-input:focus{ outline:none; border-color:#FEB800; }

/* ════════ PRODUCT REVIEWS ════════ */
.pd-rating{ display:inline-flex; align-items:center; gap:7px; margin-top:12px; }
.pd-rating__stars{ color:#E0E0E0; font-size:15px; letter-spacing:1px; }
.pd-rating__stars .on{ color:#FEB800; }
.pd-rating__num{ font-weight:700; color:#141414; font-size:14px; }
.pd-rating__count{ font-size:13px; color:var(--ink-soft); }
.rv-summary{ display:flex; align-items:center; gap:18px; padding:4px 0 22px; border-bottom:1px solid var(--line); margin-bottom:6px; }
.rv-summary__num{ font-family:'Bebas Neue','Anuphan',sans-serif; font-size:48px; line-height:1; color:#141414; }
.rv-stars{ color:#E0E0E0; font-size:18px; letter-spacing:2px; }
.rv-stars.sm{ font-size:14px; letter-spacing:1px; }
.rv-stars .on{ color:#FEB800; }
.rv-list{ display:flex; flex-direction:column; }
.rv-item{ padding:18px 0; border-bottom:1px solid var(--line); }
.rv-item__head{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.rv-author{ font-weight:600; color:#141414; font-size:14px; }
.rv-verified{ background:#E7F6EC; color:#2F7D4F; font-size:11px; font-weight:700; padding:2px 8px; border-radius:999px; margin-left:6px; }
.rv-date{ font-size:12px; color:var(--ink-soft); margin-left:auto; }
.rv-title{ font-weight:600; color:#141414; margin-top:8px; }
.rv-body{ color:var(--ink-soft); font-size:14.5px; line-height:1.7; margin-top:4px; }
.rv-form{ margin-top:30px; background:#fff; border:1px solid var(--line); border-radius:18px; padding:24px; }
.rv-form__title{ font-family:'Bebas Neue','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.08em; font-size:18px; color:#141414; margin-bottom:16px; }
.rv-rate-input{ display:flex; gap:4px; margin-bottom:16px; }
.rv-rate-input button{ background:none; border:0; cursor:pointer; font-size:32px; line-height:1; color:#E0E0E0; padding:0; transition:color .15s; }
.rv-rate-input button.on{ color:#FEB800; }
.toast-cta{ background:#FEB800; color:#141414 !important; font-weight:700; padding:5px 14px; border-radius:999px; font-size:13px; margin-left:6px; white-space:nowrap; }
.toast-cta:hover{ filter:brightness(1.05); }


/* ════════ CLIENT: all inputs except textarea = 30px rounded (2026-06-30) ════════ */
/* targets text-like inputs + selects; excludes checkbox/radio/range/file/color + textarea. !important beats inline Tailwind rounded-* utilities */
input:not([type=checkbox]):not([type=radio]):not([type=range]):not([type=file]):not([type=color]):not([type=image]):not([type=submit]):not([type=button]):not([type=reset]),
select{ border-radius:0 !important; }

/* ════════ FIX: nav account + cart SVG icons collapsing to width:0 in flex (invisible) — 2026-06-30 ════════ */
.nav-ic svg, .nav-cart svg, .nav-actions svg { flex-shrink: 0; }
.nav-ic svg  { width: 20px; height: 20px; }
.nav-cart svg{ width: 22px; height: 22px; }
.drawer-acct svg, .nav-acct__menu svg { flex-shrink: 0; }

/* ════════ FOOTER redesign: 5-col + social + LINE QR (2026-06-30) ════════ */
.footer-top{ grid-template-columns:1.7fr .9fr 1.15fr 1.2fr 1fr !important; gap:40px !important; align-items:start; }
.footer-brand .tagline{ max-width:32ch; line-height:1.7; }
.footer-social{ display:flex; gap:10px; margin-top:20px; }
.footer-social a{ width:38px; height:38px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; background:rgba(255,255,255,.08); color:rgba(255,255,255,.78) !important; opacity:1 !important; transition:background .2s, color .2s, transform .2s; }
.footer-social a:hover{ background:#FEB800; color:#141414 !important; transform:translateY(-2px); }
.footer-social svg{ flex-shrink:0; }
.footer-contact a, .footer-contact .addr{ display:inline-block; }
.footer-contact .addr{ opacity:.55; line-height:1.55; font-weight:300; }
.footer-line h4{ margin-bottom:14px; }
.footer-qr{ display:block; width:132px; height:132px; border-radius:16px; overflow:hidden; background:#fff; padding:9px; box-shadow:0 12px 30px -12px rgba(0,0,0,.6); }
.footer-qr img{ width:100%; height:100%; display:block; }
.footer-qr--empty{ display:grid; place-items:center; background:rgba(255,255,255,.05); border:1px dashed rgba(255,255,255,.22); color:rgba(255,255,255,.4); font-family:'Bebas Neue','Anuphan',sans-serif; letter-spacing:.12em; font-size:18px; text-align:center; box-shadow:none; }
.footer-line-btn{ display:inline-flex; align-items:center; gap:7px; margin-top:13px; padding:9px 17px; border-radius:999px; background:#06C755; color:#fff !important; font-size:13px; font-weight:700; opacity:1 !important; transition:background .2s; }
.footer-line-btn:hover{ background:#05b34c; color:#fff !important; }
.footer-line-btn svg{ flex-shrink:0; }
@media(max-width:1080px){
  .footer-top{ grid-template-columns:repeat(3,1fr) !important; row-gap:40px !important; }
  .footer-brand{ grid-column:1 / -1; }
}
/* ── footer มือถือ: ซ่อนเมนูนำทาง (ซ้ำ drawer) · คอลัมน์เดียว · จัดกึ่งกลางทั้งหมด ── */
@media(max-width:600px){
  .footer-menu{ display:none !important; }
  .footer-top{ grid-template-columns:1fr !important; text-align:center; gap:32px !important; padding-bottom:40px; }
  .footer-brand{ grid-column:1 / -1; display:flex; flex-direction:column; align-items:center; }
  .footer-brand img{ margin:0 auto 6px !important; }
  .footer-brand .tagline{ max-width:40ch; margin-inline:auto; }
  .footer-social{ justify-content:center; }
  .footer h4{ text-align:center; }
  .footer-contact li{ justify-content:center; text-align:center; }
  .footer-line{ grid-column:1 / -1; display:flex; flex-direction:column; align-items:center; }
  .footer-qr{ margin-inline:auto; }
  .footer-line-btn{ margin-inline:auto; }
  .footer-bottom{ flex-direction:column; justify-content:center; text-align:center; gap:8px; }
}

/* Shop-by-Bike: image already supported by .sa-bike img; ensure label legible */
.sa-bike__label .n{ text-shadow:0 1px 12px rgba(0,0,0,.6); }

/* ════════ CLIENT: tighter sections + distinct brand band + smaller footer (2026-06-30) ════════ */
/* 1) reduce every section's top/bottom padding (was clamp(80px,12vw,168px) — too tall) */
:root{ --section-y: clamp(46px, 6.5vw, 92px) !important; }

/* 2) "แบรนด์ที่เราจำหน่าย" → its own compact band, visually split from the story/about below */
.sa-brand-band{
  background:#0F0F10; color:#fff; overflow:hidden;
  border-top:1px solid rgba(255,255,255,.09);
  border-bottom:1px solid rgba(255,255,255,.09);
  padding:clamp(34px,4.5vw,58px) 0;
}
.sa-brand-band .sa-kicker{ color:var(--wine); }
.sa-brand-band .sa-h2{ color:#fff; }

/* 3) footer — smaller type + tidy rhythm */
.footer{ font-size:13.5px; }
.footer .tagline{ font-size:12px; line-height:1.65; }
.footer h4{ font-size:10.5px; margin-bottom:16px; }
.footer ul li{ margin-bottom:9px; }
.footer ul a, .footer-contact a, .footer-contact .addr{ font-size:12.5px; }
.footer-contact li{ display:flex; align-items:flex-start; gap:8px; }
.footer-contact li svg{ flex-shrink:0; margin-top:2px; color:var(--wine); opacity:.9; }
.footer-line h4{ font-size:10.5px; }
.footer-line-btn{ font-size:12.5px; }
.footer-bottom{ font-size:11.5px; }

/* ════════ CLIENT: Noto Sans Thai for page headers + product listings (Anton/Bebas รองรับไทยไม่ดี) — 2026-06-30 ════════ */
.page-hero h1, .page-hero .h1,
.post-title, .post-hero h1,
.pd-title,
.sa-card__name, .sa-card__cat{
  font-family:'Noto Sans Thai','Anuphan',sans-serif !important;
  text-transform:none !important;
  letter-spacing:0 !important;
}
.page-hero h1, .page-hero .h1, .post-title, .post-hero h1{ font-weight:800 !important; line-height:1.12 !important; }
.pd-title{ font-weight:700 !important; line-height:1.2 !important; }
.sa-card__name{ font-weight:600 !important; }
.sa-card__cat{ font-weight:700 !important; letter-spacing:.04em !important; }

/* ════════ CLIENT: about-page bottom CTA → dark theme (was a flat yellow band) ════════ */
.cta-band{ background:#0A0A0A !important; color:#fff !important; }
.cta-band .kicker{ color:#FEB800 !important; }
.cta-band h2, .cta-band .h2{ color:#fff !important; font-family:'Noto Sans Thai','Anuphan',sans-serif !important; text-transform:none !important; font-weight:800 !important; letter-spacing:0 !important; }
.cta-band p{ color:rgba(255,255,255,.70) !important; }
.cta-band::before{ background:repeating-linear-gradient(90deg, transparent 0 10px, rgba(255,255,255,.04) 10px 11px) !important; opacity:1 !important; }
.cta-band .btn-light{ background:#FEB800 !important; color:#141414 !important; border-color:#FEB800 !important; }
.cta-band .btn-light:hover{ background:#ffc62e !important; }
.cta-band .btn-ghost-wine{ background:transparent !important; border:1px solid rgba(255,255,255,.32) !important; color:#fff !important; }
.cta-band .btn-ghost-wine:hover{ border-color:#FEB800 !important; color:#FEB800 !important; }

/* ════════ CLIENT: "Built for ___" band → parallax background (fixed bg moves on scroll) — 2026-06-30 ════════ */
.sa-rotate{
  background-image:
    linear-gradient(rgba(10,10,10,.72), rgba(10,10,10,.82)),
    url('/img/placeholder/hero-motorcycle.jpg') !important;
  background-size: cover, cover !important;
  background-position: center, center !important;
  background-attachment: fixed, fixed !important;   /* parallax */
  background-repeat: no-repeat, no-repeat !important;
}
@media(hover:none){ .sa-rotate{ background-attachment: scroll, scroll !important; } } /* mobile: fixed bg is janky → scroll */

/* ════════ CLIENT: homepage nav logo = crisp 81px before scroll (only on home), snaps to 48px on scroll ════════ */
.nav--home .brand img{ transition:height .35s var(--ease), transform .4s var(--ease), filter .4s var(--ease); }
.nav--home:not(.scrolled) .brand img{ transform:none !important; height:100px !important; filter:drop-shadow(0 8px 22px rgba(0,0,0,.5)) !important; }
@media (max-width:640px){ .nav--home:not(.scrolled) .brand img{ height:66px !important; } }

/* ════════ CLIENT: page-hero — smaller heading, no kicker, breadcrumb beneath the sub-text — 2026-06-30 ════════ */
.page-hero .wrap{ display:flex; flex-direction:column; align-items:center; text-align:center; }
.page-hero .kicker{ display:none !important; }            /* remove the "DEALS / Journal / ..." kicker (cluttered) */
.page-hero h1, .page-hero .h1{ order:1; font-size:clamp(26px,4.2vw,44px) !important; margin-top:0 !important; }
.page-hero .lead{ order:2; margin-top:15px !important; font-size:14.5px; }
.page-hero .crumb{ order:3; margin-top:20px !important; margin-bottom:0 !important; font-size:13px; opacity:.72; }
.page-hero .chips{ order:4; margin-top:18px; }

/* ════════════════════════════════════════════════════════════════
   STOREFRONT DARK MODE — toggle adds .sa-dark on <html> (2026-06-30)
   Brand surfaces (nav/hero/footer) are already dark; this flips the
   LIGHT content areas (product grid, detail, filters, forms, sections).
   ════════════════════════════════════════════════════════════════ */
html.sa-dark{
  color-scheme:dark;
  --white:#16181B; --paper:#1A1D21; --cream:#1E2126; --cream-deep:#262A30;
  --clay:#9AA0A8; --clay-soft:#7B818A;
  --ink:#ECEAEE; --ink-soft:#B6BCC4;
  --line:rgba(255,255,255,.11); --line-soft:rgba(255,255,255,.06);
  --wine:#FEB800; --on-wine:#141414;
}
html.sa-dark body{ background:#0E1013 !important; color:var(--ink); }

/* sections / panels */
html.sa-dark .section.bg-white, html.sa-dark .bg-white{ background:#0F1113 !important; }
html.sa-dark .bg-paper, html.sa-dark .section.bg-paper{ background:#141619 !important; }
html.sa-dark .edge-top{ border-top-color:rgba(255,255,255,.07) !important; }
/* re-assert bright amber accent on what were light surfaces (override the dark-gold scope) */
html.sa-dark .bg-white, html.sa-dark .bg-paper, html.sa-dark .section.bg-white,
html.sa-dark .sa-card, html.sa-dark .chips, html.sa-dark .contact-grid,
html.sa-dark .info-list, html.sa-dark .map-card, html.sa-dark .page-hero, html.sa-dark .post-hero{ --wine:#FEB800 !important; --on-wine:#141414 !important; }
html.sa-dark .sa-card__cat{ color:#FEB800 !important; }

/* product cards */
html.sa-dark .sa-card{ background:#181B1F !important; border-color:rgba(255,255,255,.09) !important; }
html.sa-dark .sa-card:hover{ box-shadow:0 16px 44px rgba(0,0,0,.55) !important; border-color:rgba(255,255,255,.18) !important; }
html.sa-dark .sa-card__media{ background:#0F1113 !important; }
html.sa-dark .sa-card__name{ color:var(--ink) !important; }
html.sa-dark .sa-card__price{ color:var(--ink) !important; }
html.sa-dark .sa-card__old{ color:#7B818A !important; }
html.sa-dark .sa-card__ph{ color:#4A4F55 !important; }

/* product detail */
html.sa-dark .pd-gallery__main{ background:#0F1113 !important; }
html.sa-dark .pd-thumb{ background:#0F1113 !important; border-color:rgba(255,255,255,.1) !important; }
html.sa-dark .pd-title, html.sa-dark .pd-price, html.sa-dark .pd-eyebrow{ color:var(--ink) !important; }
html.sa-dark .pd-eyebrow{ color:#FEB800 !important; }
html.sa-dark .pd-buy{ background:#15181C !important; border-color:rgba(255,255,255,.1) !important; }
html.sa-dark .pd-specs, html.sa-dark .pd-assure, html.sa-dark .pd-meta{ color:var(--ink-soft) !important; }
html.sa-dark .pd-specs tr, html.sa-dark .pd-specs td, html.sa-dark .pd-specs th{ border-color:rgba(255,255,255,.08) !important; }
html.sa-dark .sa-variant-pill{ background:#1A1D21 !important; color:var(--ink) !important; border-color:rgba(255,255,255,.16) !important; }
html.sa-dark .sa-variant-pill.is-on{ background:#FEB800 !important; color:#141414 !important; border-color:#FEB800 !important; }

/* shop sidebar filters */
html.sa-dark .shop-filters__title, html.sa-dark .filt-group__head{ color:var(--ink) !important; }
html.sa-dark .filt-group__head{ color:#FEB800 !important; }
html.sa-dark .filt-group{ border-top-color:rgba(255,255,255,.09) !important; }
html.sa-dark .filt-link{ color:var(--ink-soft) !important; }
html.sa-dark .filt-link:hover{ background:rgba(255,255,255,.06) !important; color:var(--ink) !important; }
html.sa-dark .filt-link.is-active{ background:rgba(254,184,0,.14) !important; color:#FEB800 !important; }
html.sa-dark .filt-n{ color:#7B818A !important; }
html.sa-dark .shop-count, html.sa-dark .shop-sort{ color:var(--ink-soft) !important; }

/* forms / inputs / search */
html.sa-dark .brand-search, html.sa-dark .track-input, html.sa-dark .rv-form,
html.sa-dark .shop-sort select, html.sa-dark input[type=text], html.sa-dark input[type=email],
html.sa-dark input[type=tel], html.sa-dark input[type=search], html.sa-dark input[type=password],
html.sa-dark input[type=number], html.sa-dark textarea, html.sa-dark select{
  background:#1A1D21 !important; color:var(--ink) !important; border-color:rgba(255,255,255,.14) !important;
}
html.sa-dark ::placeholder{ color:rgba(255,255,255,.4) !important; }

/* reviews */
html.sa-dark .rv-form{ border-color:rgba(255,255,255,.1) !important; }
html.sa-dark .rv-card{ border-color:rgba(255,255,255,.08) !important; }
html.sa-dark .rv-rate-input button{ color:#3A3E44 !important; }
html.sa-dark .rv-verified{ background:rgba(111,215,149,.16) !important; color:#7FE0A3 !important; }

/* misc panels (trust/note/quote/grp/book-card/hero-tag) */
html.sa-dark .trust, html.sa-dark .note, html.sa-dark .quote, html.sa-dark .grp,
html.sa-dark .book-card, html.sa-dark .hero-tag, html.sa-dark .sub-menu, html.sa-dark .info-list, html.sa-dark .map-card{
  background:#181B1F !important; color:var(--ink) !important; border-color:rgba(255,255,255,.09) !important;
}
html.sa-dark .sub-menu a:hover{ background:rgba(255,255,255,.06) !important; color:#FEB800 !important; }
html.sa-dark .empty-note, html.sa-dark .muted{ color:var(--ink-soft) !important; }

/* category cards already dark; keep. pager */
html.sa-dark .rene-pager a, html.sa-dark .rene-pager span{ color:var(--ink) !important; border-color:rgba(255,255,255,.14) !important; }
html.sa-dark .rene-pager .is-active{ background:#FEB800 !important; color:#141414 !important; }

/* dark-mode toggle button (sun/moon) */
.sa-theme .ic-moon{ display:inline-block; } .sa-theme .ic-sun{ display:none; }
html.sa-dark .sa-theme .ic-moon{ display:none; } html.sa-dark .sa-theme .ic-sun{ display:inline-block; }
html.sa-dark .pd-qty{ background:#1A1D21 !important; border-color:rgba(255,255,255,.14) !important; }
html.sa-dark .pd-qty input, html.sa-dark .pd-qty button{ color:var(--ink) !important; }

/* dark: auth pages (login/register/forgot) */
html.sa-dark .auth-card{ background:#16181B !important; border:1px solid rgba(255,255,255,.08); box-shadow:0 30px 80px -30px rgba(0,0,0,.7) !important; }
html.sa-dark .auth-card label, html.sa-dark .auth-head h1, html.sa-dark .auth-head .h2, html.sa-dark .auth-card h1{ color:var(--ink) !important; }
html.sa-dark .auth-card .muted, html.sa-dark .auth-foot, html.sa-dark .auth-or span{ color:var(--ink-soft) !important; }
html.sa-dark .auth-or::before, html.sa-dark .auth-or::after{ border-color:rgba(255,255,255,.12) !important; }

/* ── Bike "category" hero (when catalog filtered by a single bike model) ── */
.page-hero--bike{ background:#121212; }
.page-hero--bike::before{ display:none; }                 /* drop the clover texture on photo hero */
.page-hero--bike .page-hero__photo{ position:absolute; inset:0; z-index:0; background-size:cover; background-position:center;
  opacity:.52; filter:grayscale(.12); }
.page-hero--bike::after{ content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:linear-gradient(180deg, rgba(15,15,16,.55) 0%, rgba(15,15,16,.78) 100%); }
.page-hero--bike .wrap{ position:relative; z-index:1; }
.page-hero--bike .crumb{ color:rgba(255,255,255,.72); }
.page-hero--bike .crumb a{ color:#FEB800; }
.page-hero--bike .crumb a:hover{ opacity:.78; }

/* ──────────────────────────────────────────────────────────────
   MOBILE SLIDERS — products / categories / bikes swipe one-at-a-time
   (CSS scroll-snap, no JS; peek of the next card signals swipeability)
   ────────────────────────────────────────────────────────────── */
@media (max-width:640px){
  .sa-slider{
    display:flex !important; grid-template-columns:none !important;
    overflow-x:auto; overflow-y:hidden;
    scroll-snap-type:x mandatory;
    gap:12px; padding-bottom:4px;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none; -ms-overflow-style:none;
  }
  .sa-slider::-webkit-scrollbar{ display:none; height:0; }
  .sa-slider > *{ flex:0 0 86%; scroll-snap-align:start; }
}

/* Mobile: hero CTAs stack full-width & even (tidy button alignment) */
@media (max-width:560px){
  .sa-hero__cta{ flex-direction:column; align-items:stretch; gap:12px; }
  .sa-hero__cta > a{ width:100%; justify-content:center; padding-top:15px; padding-bottom:15px; }
}

/* ─────────────────────────────────────────────────────────────
   PRODUCT PAGE — bolder + blacker text, cohesive with home template
   ───────────────────────────────────────────────────────────── */
.pd-desc{ color:#1c1c1c; font-weight:500; font-size:15.5px; }
.pd-meta{ color:#141414; font-weight:600; font-size:12.5px; }
.pd-spec__k{ color:#3d3d3d; font-weight:700; }
.pd-spec__v{ font-weight:600; }
.pd-spec__v > a{ font-weight:700; }
.pd-contact{ color:#333; }
.pd-assure span{ color:#2e2e2e; font-weight:500; }
.pd-vlabel{ color:#3d3d3d; }
.pd-old{ color:#777; }
.pd-stock{ font-weight:700; }
.pd-eyebrow{ font-weight:700; }
/* flat add-to-cart + buy box (no shadow, matches home flat style) */
.pd-add{ box-shadow:none !important; }
.pd-buy{ background:#FAFAF8; }

/* ─── Catalog sidebar polish (cleaner, clearer active state) ─── */
.shop-filters__title{ font-size:16px; }
.filt-link{ padding:9px 12px; font-size:14px; border-radius:10px; }
.filt-link.is-active{ background:#FFF6E0; font-weight:700; }
.filt-link.is-active .filt-n{ color:#9C6B00; font-weight:700; }

/* ── Product detail: bolder + blacker text, flat add-to-cart (client request) ── */
.pd-title{ font-weight:800 !important; color:#141414 !important; letter-spacing:0 !important; }
.pd-meta{ color:#141414 !important; font-weight:700 !important; }
.pd-desc{ color:#141414 !important; font-weight:600 !important; }
.pd-desc .lead{ color:#141414 !important; font-weight:700 !important; }
.pd-spec__k{ color:#3d3d3d !important; font-weight:700 !important; }
.pd-spec__v{ color:#141414 !important; font-weight:600 !important; }
.pd-spec__v > a{ font-weight:700 !important; }
.pd-vlabel{ color:#141414 !important; font-weight:700 !important; }
.pd-stock{ font-weight:700 !important; }
.pd-assure{ color:#141414 !important; font-weight:600 !important; }
.pd-add, .pd-add:hover, .btn.pd-add{ box-shadow:none !important; }
/* hide decorative scroll cue on mobile (was overlapping the hero CTAs) */
@media (max-width:640px){ .sa-hero__scroll{ display:none !important; } }

/* ── Catalog sidebar polish — cleaner, bolder, on-brand (client: "ไม่สวย") ── */
.shop-filters__title{ font-size:16px !important; color:#141414 !important; letter-spacing:.14em; }
.shop-filters{ font-size:14.5px; }
.filt-group{ padding:16px 0 !important; border-top:1px solid #ececec !important; }
.filt-group__head{ color:#141414 !important; font-size:13px !important; letter-spacing:.12em; margin-bottom:9px !important; }
.filt-list{ gap:2px !important; }
.filt-link{ padding:9px 12px !important; font-weight:600 !important; color:#33373d !important; border-radius:10px; }
.filt-link:hover{ background:#F5F6F8 !important; color:#141414 !important; }
.filt-link .filt-n{ font-weight:700; color:#aab0b8; font-size:12.5px; }
.filt-link.is-active{ background:#FFF4D6 !important; color:#141414 !important; font-weight:800 !important; }
.filt-link.is-active .filt-n{ color:#9C6B00; }

/* ── page-hero unified across ALL pages (client): more top space, smaller title, wider subtext ── */
.page-hero{ padding-top: clamp(128px,13vw,172px) !important; }
.page-hero h1{ font-size: clamp(26px,3.2vw,38px) !important; max-width: 26ch !important; }
.page-hero .lead{ max-width: 820px !important; }
/* ── sidebar Thai labels render thin (Bebas→Anuphan wt300); use bold Noto Sans Thai to match theme ── */
.shop-filters__title, .filt-group__head{ font-family:'Noto Sans Thai','Anuphan',sans-serif !important; font-weight:800 !important; letter-spacing:.03em !important; }
.shop-filters__title{ font-size:15px !important; }
.filt-group__head{ font-size:12.5px !important; }

/* ════ Shop pages: minimal header (no big hero) — client ref: clean shop layout ════ */
.shop-head{ background:#fff; padding-top:clamp(94px,10vw,124px); padding-bottom:4px; }
.shop-head .crumb{ font-size:13px; color:#8a8f96; letter-spacing:.02em; }
.shop-head .crumb a{ color:#141414; font-weight:600; }
.shop-head .crumb a:hover{ color:#9C6B00; }
.shop-head .crumb span{ color:#33373d; }
.shop-head__title{ font-family:'Bebas Neue','Noto Sans Thai','Anuphan',sans-serif; font-weight:800; font-size:clamp(26px,3.2vw,40px); color:#141414; line-height:1.1; margin-top:6px; }
.shop-head + .section{ padding-top:clamp(18px,2.4vw,30px); }
html.sa-dark .shop-head{ background:var(--color-background,#0E1013); }
html.sa-dark .shop-head__title{ color:#fff; }
html.sa-dark .shop-head .crumb a, html.sa-dark .shop-head .crumb span{ color:#fff; }

/* ════ Product detail: light minimal breadcrumb (was a dark band) ════ */
.pd-top{ background:#fff !important; padding-top:clamp(90px,10vw,118px) !important; padding-bottom:2px !important; border-bottom:0 !important; }
.pd-crumb{ color:#8a8f96 !important; }
.pd-crumb a{ color:#141414 !important; font-weight:600; }
.pd-crumb a:hover{ color:#9C6B00 !important; }
.pd-crumb span{ color:#33373d !important; }
html.sa-dark .pd-top{ background:var(--color-background,#0E1013) !important; }
html.sa-dark .pd-crumb a, html.sa-dark .pd-crumb span{ color:#fff !important; }

/* ════ Sharp / squared — images, cards, buttons (client: "ไม่มี border-rad น่าจะสวยกว่า") ════ */
.sa-card, .sa-card__media, .sa-card__media img,
.sa-cat-card, .sa-cat-card img, .sa-cat-card__media,
.sa-bike, .sa-bike img,
.pd-gallery__main, .pd-gallery__main img, .pd-thumb, .pd-thumb img,
.sa-brand-cell,
.promo, .eimg, .result-card, .svc-card, .vcard, .video-embed, .ba-slider, .ba-single, .prose-rene img{ border-radius:0 !important; }
.btn, .btn-primary, .btn-outline, .btn-light, .btn-ghost-wine,
.sa-amber-btn, .sa-ghost-btn, .pd-add,
.shop-filters__done button, .filters-trigger{ border-radius:0 !important; }

/* ── footer: square LINE QR + social buttons (client) ── */
.footer-social a{ border-radius:0 !important; }
.footer-qr{ border-radius:0 !important; }
.footer-line-btn{ border-radius:0 !important; }

/* ── floating contact widget: IG + Shopee buttons ── */
.cw-btn.ig{ background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important; color:#fff !important; }
.cw-btn.shopee{ background:#EE4D2D !important; color:#fff !important; }

/* ── buttons: trim padding a touch — smaller (client) ── */
.btn{ padding:12px 25px !important; font-size:13px !important; }
.sa-amber-btn, .sa-ghost-btn{ padding:10px 21px !important; }
.pd-add{ height:46px !important; }

/* hero: tiny gap above "Build Yours." line (client) */
.sa-hero .sa-ln--r{ margin-top:5px; }

/* ── footer social: real brand colors per platform (client) ── */
.footer-social a{ color:#fff !important; opacity:1 !important; }
.footer-social a[aria-label="Facebook"]{ background:#1877F2 !important; }
.footer-social a[aria-label="Instagram"]{ background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important; }
.footer-social a[aria-label="LINE"]{ background:#06C755 !important; }
.footer-social a[aria-label="TikTok"]{ background:#111 !important; }
.footer-social a[aria-label="Shopee"]{ background:#EE4D2D !important; }
.footer-social a:hover{ color:#fff !important; transform:translateY(-2px); filter:brightness(1.12); }

/* ── contact page: on-theme buttons + neutral card + bolder text (client) ── */
.btn-messenger{ background:#FEB800 !important; color:#141414 !important; box-shadow:none !important; font-weight:700 !important; }
.btn-messenger:hover{ filter:brightness(1.04); }
.btn-line{ box-shadow:none !important; }
.chat-card, .book-card.chat-card{ background:#F4F6F8 !important; box-shadow:none !important; }
.chat-card .muted, .chat-card p.muted{ color:#3a3f46 !important; font-weight:600 !important; }
.contact-grid .info-list .info p{ color:#2a2e34 !important; font-weight:600 !important; }
.contact-grid .info-list .info h3{ font-weight:700 !important; }
.contact-grid .chan a{ font-weight:600 !important; }

/* ── product search box in catalog sidebar (client) ── */
.shop-search{ display:flex; margin:14px 0 6px; border:1px solid #d8dce1; }
.shop-search input{ flex:1; min-width:0; border:0; padding:11px 14px; font-size:14px; font-family:inherit; background:#fff; color:#141414; outline:none; font-weight:600; }
.shop-search input::placeholder{ color:#9aa0a8; font-weight:500; }
.shop-search button{ flex-shrink:0; border:0; background:#141414; color:#fff; padding:0 15px; cursor:pointer; display:inline-flex; align-items:center; justify-content:center; transition:.18s; }
.shop-search button:hover{ background:#FEB800; color:#141414; }
html.sa-dark .shop-search{ border-color:rgba(255,255,255,.16); }
html.sa-dark .shop-search input{ background:#1E2126; color:#ECEAEE; }

/* contact info icons: on-theme (was off-brand wine gradient) */
.contact-grid .info-ico{ background:#141414 !important; color:#FEB800 !important; }

/* ── product card: clickable link + footer (price left · add-to-cart right) ── */
.sa-card__link{ display:flex; flex-direction:column; flex:1 1 auto; color:inherit; text-decoration:none; }
.sa-card__body{ flex:1 1 auto; padding-bottom:8px !important; }
.sa-card__foot{ margin-top:0 !important; display:flex !important; align-items:center; gap:8px; padding:2px 16px 16px; }
.sa-card__price{ font-size:22px; }
.sa-card__old{ font-size:14px; text-decoration:line-through; color:#9aa0a8; }
.sa-card__addform{ margin:0 0 0 auto; line-height:0; }
.sa-card__add{ flex-shrink:0; width:30px; height:30px; margin-left:auto; display:inline-flex; align-items:center; justify-content:center; background:#141414; color:#fff; border:0; cursor:pointer; transition:background .18s, color .18s; }
.sa-card__add svg{ width:15px; height:15px; }
.sa-card__add:hover{ background:#FEB800; color:#141414; }
html.sa-dark .sa-card__add{ background:#FEB800; color:#141414; }
html.sa-dark .sa-card__add:hover{ filter:brightness(1.08); }

/* ── products toolbar: bolder Thai (was thin Bebas/Anuphan wt300) ── */
.shop-count{ font-family:'Noto Sans Thai','Anuphan',sans-serif !important; font-weight:700 !important; color:#141414 !important; font-size:15.5px !important; }
.fbar-label{ font-family:'Noto Sans Thai','Anuphan',sans-serif !important; font-weight:700 !important; color:#141414 !important; }
.chip--filter{ font-weight:700 !important; }
.shop-sort{ font-weight:600 !important; color:#33373d !important; }
html.sa-dark .shop-count, html.sa-dark .fbar-label{ color:#ECEAEE !important; }

/* ════ Home search section (client) ════ */
.sa-search{ background:#F5F6F8; padding:clamp(38px,5vw,60px) 0; }
.sa-search__inner{ max-width:720px; margin:0 auto; text-align:center; }
.sa-search .sa-kicker{ color:#9C6B00; }
.sa-search .sa-h2{ text-align:center; margin-top:4px; color:#141414; }
.sa-search__form{ display:flex; margin-top:22px; border:2px solid #141414; background:#fff; }
.sa-search__form input{ flex:1; min-width:0; border:0; padding:15px 18px; font-size:16px; font-family:inherit; font-weight:600; outline:none; background:transparent; color:#141414; }
.sa-search__form input::placeholder{ color:#9aa0a8; font-weight:500; }
.sa-search__form button{ flex-shrink:0; border:0; background:#141414; color:#fff; padding:0 24px; font-family:'Bebas Neue','Noto Sans Thai','Anuphan',sans-serif; font-weight:700; font-size:16px; letter-spacing:.05em; text-transform:uppercase; cursor:pointer; display:inline-flex; align-items:center; gap:8px; transition:background .18s,color .18s; }
.sa-search__form button:hover{ background:#FEB800; color:#141414; }
.sa-search__chips{ display:flex; flex-wrap:wrap; gap:8px; justify-content:center; align-items:center; margin-top:16px; }
.sa-search__chips > span{ font-size:13px; color:#8a8f96; font-weight:600; }
.sa-search__chips a{ font-size:13px; font-weight:700; color:#141414; background:#fff; border:1px solid #d8dce1; padding:6px 14px; transition:.18s; }
.sa-search__chips a:hover{ background:#FEB800; border-color:#FEB800; color:#141414; }
html.sa-dark .sa-search{ background:#0F1113; }
html.sa-dark .sa-search .sa-h2{ color:#fff; }
html.sa-dark .sa-search__form{ border-color:#FEB800; background:#16181B; }
html.sa-dark .sa-search__form input{ color:#ECEAEE; }
html.sa-dark .sa-search__form button{ background:#FEB800; color:#141414; }
html.sa-dark .sa-search__chips a{ background:#16181B; border-color:rgba(255,255,255,.16); color:#ECEAEE; }
@media (max-width:560px){ .sa-search__form button{ padding:0 16px; font-size:0; gap:0; } .sa-search__form button svg{ width:20px; height:20px; } }

/* ════ Hero search (replaces the 2 CTA buttons) ════ */
.sa-hero__search{ margin-top:30px; max-width:580px; }
.sa-hero__search form{ display:flex; background:#fff; box-shadow:0 20px 50px -24px rgba(0,0,0,.7); }
.sa-hero__search input{ flex:1; min-width:0; border:0; padding:15px 18px; font-size:16px; font-weight:600; font-family:inherit; color:#141414; background:transparent; outline:none; }
.sa-hero__search input::placeholder{ color:#9aa0a8; font-weight:500; }
.sa-hero__search button{ flex-shrink:0; border:0; background:#FEB800; color:#141414; padding:0 26px; font-family:'Bebas Neue','Noto Sans Thai','Anuphan',sans-serif; font-weight:700; font-size:16px; text-transform:uppercase; letter-spacing:.05em; cursor:pointer; display:inline-flex; align-items:center; gap:8px; transition:background .18s; }
.sa-hero__search button:hover{ background:#ffc62e; }
.sa-hero__chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; align-items:center; }
.sa-hero__chips a{ font-size:13px; font-weight:700; color:#fff; border:1px solid rgba(255,255,255,.32); padding:6px 13px; transition:.18s; }
.sa-hero__chips a:hover{ background:#FEB800; border-color:#FEB800; color:#141414; }
@media (max-width:560px){ .sa-hero__search button span{ display:none; } .sa-hero__search button{ padding:0 17px; } .sa-hero__search{ margin-top:24px; } }

/* hero: full-height on desktop (100vh), shorter on mobile */
@media (max-width:768px){ .sa-hero{ min-height:79vh; } }

/* ── sort select: square + custom chevron + bold (was rounded pill + native arrow) ── */
.shop-sort select{
  -webkit-appearance:none !important; -moz-appearance:none !important; appearance:none !important;
  border:1px solid #d8dce1 !important; border-radius:0 !important;
  background-color:#fff !important; color:#141414 !important;
  font-family:inherit !important; font-weight:700 !important; font-size:14px !important;
  padding:10px 40px 10px 15px !important; cursor:pointer; line-height:1.2;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23141414' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat:no-repeat !important; background-position:right 13px center !important; background-size:13px !important;
}
.shop-sort select:hover{ border-color:#141414 !important; }
.shop-sort select:focus{ outline:none !important; border-color:#FEB800 !important; }
html.sa-dark .shop-sort select{ background-color:#1E2126 !important; color:#ECEAEE !important; border-color:rgba(255,255,255,.16) !important; }
/* ── sidebar filter links: square to match theme (were rounded pills) ── */
.filt-link, .filt-link.is-active{ border-radius:0 !important; }
.filt-link.is-active::before{ border-radius:0 !important; }

/* sort select: dark-gold accent per UI/UX (#9C6B00) */
.shop-sort select{ border:1.5px solid #9C6B00 !important; color:#141414 !important;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239C6B00' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important; }
.shop-sort select:hover, .shop-sort select:focus{ border-color:#7d5600 !important; }
.shop-sort{ color:#9C6B00 !important; }

/* keep "เรียงตาม:" label neutral; select value itself dark-gold */
.shop-sort{ color:#33373d !important; }
.shop-sort select{ color:#9C6B00 !important; }
html.sa-dark .shop-sort select{ color:#FEB800 !important; }

/* ════ Product detail page polish (client) ════ */
.pd-buy{ border-radius:0 !important; }                 /* square buy box (was 18px) */
.pd-qty{ border-radius:0 !important; }                 /* square qty selector (was pill) */
.pd-qty input, .pd-qty button{ border-radius:0 !important; }
section[data-screen-label="product-body"]{ padding-top:clamp(18px,2.2vw,28px) !important; }  /* less top gap (was 92px) */
.pd-title{ font-size:clamp(23px,2.5vw,31px) !important; }   /* smaller title (was 40px) */
/* brand/category accent: black + bold (was brownish #9C6B00) */
.pd-eyebrow{ font-family:'Noto Sans Thai','Anuphan',sans-serif !important; font-weight:800 !important; color:#141414 !important; }
.pd-spec__v a{ color:#141414 !important; text-decoration:underline; text-underline-offset:3px; }
.pd-spec__v a:hover{ color:#9C6B00 !important; }
.pd-meta{ color:#141414 !important; }
.pd-assure{ font-weight:700 !important; color:#141414 !important; }
/* contact: colored square icon buttons (was plain text links) */
.pd-contact{ display:flex; flex-wrap:wrap; align-items:center; gap:12px; }
.pd-contact__label{ font-weight:600; color:#141414; }
.pd-contact__btns{ display:flex; gap:8px; }
.pd-contact__btn{ width:40px; height:40px; display:inline-flex; align-items:center; justify-content:center; color:#fff !important; transition:transform .18s, filter .18s; }
.pd-contact__btn--fb{ background:#1877F2; }
.pd-contact__btn--line{ background:#06C755; }
.pd-contact__btn:hover{ filter:brightness(1.08); transform:translateY(-2px); }
html.sa-dark .pd-contact__label{ color:#ECEAEE !important; }

/* ── product buy box: solid / industrial weight (client: "ขาดความหนักแน่น") ── */
.pd-buy{ background:#fff !important; border:1px solid #141414 !important; padding:24px !important; }
.pd-price{ font-size:clamp(40px,4.6vw,50px) !important; font-weight:700 !important; color:#141414 !important; letter-spacing:-.01em; }
.pd-qty{ border:1.6px solid #141414 !important; }
.pd-qty button{ font-weight:700 !important; }
.pd-add{ font-weight:700 !important; font-size:15px !important; }
/* ปุ่มจำนวน (−/+) กับปุ่ม "เพิ่มลงตะกร้า" สูงเท่ากันเป๊ะ */
.pd-form .pd-qty, .pd-form .pd-add{ height:54px !important; min-height:54px !important; box-sizing:border-box !important; }
.pd-form .pd-qty button{ height:100% !important; }
html.sa-dark .pd-buy{ background:#16181B !important; border-color:#ECEAEE !important; }
html.sa-dark .pd-price{ color:#ECEAEE !important; }
html.sa-dark .pd-qty{ border-color:#ECEAEE !important; }

/* app-layout pages (dashboard/cart/checkout): clear the fixed rene nav (86px) */
.sa-app-main{ padding-top:92px; }
@media (max-width:640px){ .sa-app-main{ padding-top:92px; } }

/* mobile nav over hero: shadow so white logo + hamburger pop over bright hero areas (was blending) */
.nav--over:not(.scrolled) .nav-toggle span{ box-shadow:0 1px 4px rgba(0,0,0,.7); }
.nav--over:not(.scrolled) .brand img{ filter:drop-shadow(0 2px 8px rgba(0,0,0,.6)); }

/* Journal: per-category section header (บทความ / Chillmeet) */
.jsec-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-bottom:clamp(26px,3vw,40px); }
.jsec-head .sa-h2{ margin-top:6px; }
.jsec-head .link-underline{ padding-bottom:4px; white-space:nowrap; }
@media(max-width:640px){ .jsec-head{ align-items:flex-start; } }

/* ══════════ Article blocks (advanced editor render) ══════════ */
.ab{ display:flow-root; }
.ab > * + *{ margin-top:clamp(20px,2.6vw,34px); }
.ab-h{ font-family:'Bebas Neue','Noto Sans Thai','Anuphan',sans-serif; font-weight:700; line-height:1.15; letter-spacing:.01em; color:var(--ink); }
.ab-h2{ font-size:clamp(26px,3.4vw,38px); }
.ab-h3{ font-size:clamp(22px,2.6vw,28px); }
.ab-h4{ font-size:clamp(18px,2vw,22px); }
.ab-text{ font-size:16.5px; line-height:1.85; color:var(--ink-soft); }
.ab-figure{ margin:0; }
.ab-figure .eimg{ display:block; border-radius:0; overflow:hidden; }
.ab-figure img{ width:100%; display:block; }
.ab-cap{ margin-top:10px; font-size:13.5px; color:var(--ink-soft); text-align:center; font-style:italic; }
.ab-gallery--grid{ display:grid; gap:10px; }
.ab-gallery--grid.ab-gallery--n1{ grid-template-columns:1fr; }
.ab-gallery--grid.ab-gallery--n2{ grid-template-columns:repeat(2,1fr); }
.ab-gallery--grid.ab-gallery--n3{ grid-template-columns:repeat(3,1fr); }
.ab-gallery--grid.ab-gallery--n4{ grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); }
.ab-gallery--grid .ab-gitem{ display:block; aspect-ratio:1; overflow:hidden; }
.ab-gallery--grid .ab-gitem img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.ab-gallery--grid .ab-gitem:hover img{ transform:scale(1.05); }
.ab-gallery--carousel{ display:flex; gap:10px; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding-bottom:6px; }
.ab-gallery--carousel .ab-gitem{ flex:0 0 78%; max-width:520px; scroll-snap-align:center; aspect-ratio:3/2; overflow:hidden; }
.ab-gallery--carousel .ab-gitem img{ width:100%; height:100%; object-fit:cover; }
.ab-video{ position:relative; aspect-ratio:16/9; background:#000; overflow:hidden; }
.ab-video iframe, .ab-video video{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.ab-btnwrap{ display:flex; }
.ab-quote{ margin:0; padding:6px 0 6px 22px; border-left:4px solid var(--gold); }
.ab-quote p{ font-family:'Cormorant Garamond',serif; font-size:clamp(20px,2.4vw,26px); line-height:1.5; color:var(--ink); font-style:italic; }
.ab-quote cite{ display:block; margin-top:10px; font-style:normal; font-size:13px; letter-spacing:.18em; text-transform:uppercase; color:var(--wine); }
.ab-divider{ border:0; border-top:1px solid var(--line); margin:clamp(28px,4vw,44px) 0; }
@media(max-width:640px){
  .ab-gallery--grid.ab-gallery--n3, .ab-gallery--grid.ab-gallery--n4{ grid-template-columns:repeat(2,1fr); }
}
html.sa-dark .ab-h{ color:#f4f4f4; }
html.sa-dark .ab-quote p{ color:#f4f4f4; }

/* ══════════ Lightbox (article blocks) ══════════ */
.sa-lb{ position:fixed; inset:0; z-index:200; background:rgba(10,10,10,.94); display:none; align-items:center; justify-content:center; }
.sa-lb.is-open{ display:flex; }
.sa-lb__stage{ margin:0; max-width:min(1200px,92vw); max-height:88vh; display:flex; flex-direction:column; align-items:center; gap:12px; }
.sa-lb__stage img{ max-width:100%; max-height:80vh; object-fit:contain; display:block; }
.sa-lb__cap{ font-size:13.5px; color:rgba(255,255,255,.75); text-align:center; min-height:1em; }
.sa-lb__close{ position:absolute; top:14px; right:18px; width:44px; height:44px; border:0; background:none; color:#fff; font-size:34px; line-height:1; cursor:pointer; opacity:.8; }
.sa-lb__close:hover{ opacity:1; color:#FEB800; }
.sa-lb__nav{ position:absolute; top:50%; transform:translateY(-50%); width:52px; height:52px; border:1px solid rgba(255,255,255,.25); background:rgba(0,0,0,.35); color:#fff; font-size:20px; cursor:pointer; transition:background .2s,color .2s; }
.sa-lb__nav:hover{ background:#FEB800; color:#141414; border-color:#FEB800; }
.sa-lb__prev{ left:16px; } .sa-lb__next{ right:16px; }
.sa-lb__count{ position:absolute; bottom:16px; left:50%; transform:translateX(-50%); font-size:12px; letter-spacing:.2em; color:rgba(255,255,255,.6); }
@media(max-width:640px){ .sa-lb__nav{ width:42px; height:42px; } .sa-lb__prev{ left:6px; } .sa-lb__next{ right:6px; } }

/* ══════════ Article blocks v2: masonry + cols + widths + darker text ══════════ */
/* ข้อความเข้มขึ้น (ลูกค้าติ subtext อ่อนไป) — ต่อท้ายไฟล์จึงชนะกฎเดิม */
.ab-text{ color:var(--ink); font-weight:400; }
.ab-cap{ color:#4A4A4A; }
html.sa-dark .ab-text{ color:#DADCE0; }
html.sa-dark .ab-cap{ color:#A5ABB3; }

/* ความกว้าง container ต่อบทความ (เลือกใน builder) */
.post-body--narrow{ max-width:720px; }
.post-body--normal{ max-width:860px; }
.post-body--wide{ max-width:1080px; }
.post-body--full{ max-width:none; }

/* grid: กำหนดคอลัมน์ตายตัวจาก builder (ชนะกฎ n1..n4 auto เดิมเพราะอยู่ท้ายไฟล์) */
.ab-gallery--grid.ab-cols-2{ grid-template-columns:repeat(2,1fr); }
.ab-gallery--grid.ab-cols-3{ grid-template-columns:repeat(3,1fr); }
.ab-gallery--grid.ab-cols-4{ grid-template-columns:repeat(4,1fr); }

/* masonry: รูปสัดส่วนจริง เรียงต่อกันแบบก่ออิฐ (CSS columns) */
.ab-gallery--masonry{ columns:3; column-gap:10px; }
.ab-gallery--masonry.ab-cols-2{ columns:2; }
.ab-gallery--masonry.ab-cols-4{ columns:4; }
.ab-gallery--masonry .ab-gitem{ display:block; break-inside:avoid; margin:0 0 10px; overflow:hidden; }
.ab-gallery--masonry .ab-gitem img{ width:100%; height:auto; display:block; transition:transform .5s ease; }
.ab-gallery--masonry .ab-gitem:hover img{ transform:scale(1.04); }

/* carousel: เก็บงานให้เนียน — snap กลาง + ขอบโปร่ง + แถบเลื่อนเรียบ */
.ab-gallery--carousel{ padding-bottom:10px; scrollbar-width:thin; scrollbar-color:rgba(20,20,20,.25) transparent; }
.ab-gallery--carousel::-webkit-scrollbar{ height:6px; }
.ab-gallery--carousel::-webkit-scrollbar-thumb{ background:rgba(20,20,20,.22); }
.ab-gallery--carousel .ab-gitem{ flex:0 0 min(72%,560px); }

@media(max-width:640px){
  .ab-gallery--grid.ab-cols-3, .ab-gallery--grid.ab-cols-4{ grid-template-columns:repeat(2,1fr); }
  .ab-gallery--masonry, .ab-gallery--masonry.ab-cols-4{ columns:2; }
  .post-body--wide, .post-body--full{ max-width:100%; }
}

/* ══════════ Carousel v3: ทีละภาพ + ลูกศร + เลขหน้า 1 2 3… ══════════ */
.ab-gallery--carousel{ scroll-snap-type:x mandatory; scrollbar-width:none; padding-bottom:0; }
.ab-gallery--carousel::-webkit-scrollbar{ display:none; }
.ab-gallery--carousel .ab-gitem{ flex:0 0 100%; max-width:none; aspect-ratio:16/9; scroll-snap-align:center; scroll-snap-stop:always; }
.ab-car{ position:relative; }
.ab-car__nav{ position:absolute; top:calc(50% - 24px); transform:translateY(-50%); width:46px; height:46px; border:1px solid rgba(255,255,255,.35); background:rgba(10,10,10,.45); color:#fff; font-size:18px; cursor:pointer; z-index:2; transition:background .2s,color .2s,border-color .2s; backdrop-filter:blur(2px); }
.ab-car__nav:hover{ background:#FEB800; color:#141414; border-color:#FEB800; }
.ab-car__prev{ left:12px; } .ab-car__next{ right:12px; }
.ab-car__dots{ display:flex; justify-content:center; gap:6px; margin-top:12px; flex-wrap:wrap; }
.ab-car__dot{ min-width:34px; height:34px; padding:0 6px; border:1px solid var(--line); background:transparent; color:var(--ink); font-weight:700; font-size:13px; cursor:pointer; transition:all .2s; font-family:'Bebas Neue','Noto Sans Thai',sans-serif; letter-spacing:.05em; }
.ab-car__dot:hover{ border-color:#141414; }
.ab-car__dot.is-active{ background:#FEB800; color:#141414; border-color:#FEB800; }
html.sa-dark .ab-car__dot{ color:#ECEAEE; border-color:rgba(255,255,255,.25); }
html.sa-dark .ab-car__dot:hover{ border-color:#fff; }
html.sa-dark .ab-car__dot.is-active{ background:#FEB800; color:#141414; border-color:#FEB800; }
@media(max-width:640px){
  .ab-car__nav{ width:38px; height:38px; }
  .ab-car__prev{ left:6px; } .ab-car__next{ right:6px; }
}

/* ══════════ Post hero: subtext สว่างขึ้นบนพื้นดำ + ลด title บน PC ══════════ */
.post-title{ font-size:clamp(26px,3.2vw,40px); }
.post-hero .post-sub{ color:rgba(255,255,255,.88); font-size:clamp(15px,1.5vw,17.5px); }

/* ══════════ Mobile drawer v2: จัดระเบียบ (เดิม 36px ล้นจอ ไม่มี scroll) ══════════ */
.drawer{
  justify-content:flex-start !important; align-items:stretch !important;
  padding:72px 24px 36px !important; gap:0 !important; overflow-y:auto !important;
  -webkit-overflow-scrolling:touch;
}
.drawer a{
  font-family:'Anuphan','Noto Sans Thai',sans-serif !important;
  font-size:18px !important; font-weight:600; letter-spacing:.01em;
  padding:12px 4px !important; line-height:1.3 !important;
  border-bottom:1px solid rgba(255,255,255,.07); display:block;
}
.drawer a:active{ color:#FEB800 !important; }
.drawer a.drawer-sub{
  font-size:14px !important; font-weight:500 !important;
  color:rgba(255,255,255,.55) !important;
  padding:9px 4px 9px 20px !important;
  border-bottom:1px solid rgba(255,255,255,.045) !important;
}
.drawer .close{ top:16px !important; right:16px !important; font-size:32px !important; padding:8px; }
.drawer-search{ margin:0 0 14px !important; }
.drawer-search input, .drawer-search button{ border-radius:0 !important; }
.drawer-cart .badge{ border-radius:0 !important; }
.drawer-logout button{
  font-family:'Anuphan','Noto Sans Thai',sans-serif !important;
  font-size:18px !important; font-weight:600; width:100%; text-align:left;
  padding:12px 4px !important; border-bottom:1px solid rgba(255,255,255,.07);
}
.drawer-lang{ margin-top:18px !important; display:flex; justify-content:flex-start; gap:10px !important; }
.drawer-lang a{
  font-size:13px !important; font-weight:700; padding:9px 22px !important;
  border:1px solid rgba(255,255,255,.22) !important; text-align:center; flex:0 0 auto;
}
.drawer-lang a.is-active{ background:#FEB800 !important; color:#141414 !important; border-color:#FEB800 !important; }

/* ══════════ Brand marquee (slider ล่างสุด) ══════════ */
.sa-brandmq{ overflow:hidden; padding:7px 0; -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); }
.sa-brandmq__track{ display:flex; width:max-content; gap:14px; will-change:transform; }
.sa-brandmq__track--l{ animation:sa-mq-l 105s linear infinite; }
.sa-brandmq__track--r{ animation:sa-mq-r 105s linear infinite; }
.sa-brandmq:hover .sa-brandmq__track{ animation-play-state:paused; }
@keyframes sa-mq-l{ from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes sa-mq-r{ from{transform:translateX(-50%)} to{transform:translateX(0)} }
.sa-brandmq__cell{ flex:0 0 auto; display:flex; align-items:center; justify-content:center; height:56px; min-width:150px; padding:0 22px;
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.09); color:rgba(255,255,255,.78);
  font-family:'Bebas Neue','Noto Sans Thai',sans-serif; font-size:16px; letter-spacing:.04em; white-space:nowrap;
  transition:background .2s,color .2s,border-color .2s; text-decoration:none; }
.sa-brandmq__cell:hover{ background:#FEB800; border-color:#FEB800; color:#141414; }
.sa-brandmq__cell img{ max-height:38px; max-width:120px; width:auto; object-fit:contain; filter:brightness(0) invert(1) opacity(.85); transition:filter .2s; }
.sa-brandmq__cell:hover img{ filter:none; }
@media(max-width:640px){ .sa-brandmq__cell{ height:46px; min-width:120px; font-size:14px; padding:0 16px; } .sa-brandmq__track--l,.sa-brandmq__track--r{ animation-duration:70s; } }
@media(prefers-reduced-motion:reduce){ .sa-brandmq__track--l,.sa-brandmq__track--r{ animation:none; } .sa-brandmq{ overflow-x:auto; } }

/* ══════════ Promo launch popup (โปรเปิดเว็บ 3 ต่อ) ══════════ */
.sa-promo{ position:fixed; inset:0; z-index:400; background:rgba(0,0,0,.9); backdrop-filter:blur(4px); display:flex; align-items:center; justify-content:center; padding:20px; }
.sa-promo[hidden]{ display:none; }
.sa-promo__card{ position:relative; width:min(var(--pw,460px),94vw); max-height:92vh; overflow-y:auto; background:#070707; background-size:cover; background-position:center;
  border:1px solid rgba(254,184,0,.35); padding:0; color:#fff; text-align:center; animation:sa-promo-in .35s cubic-bezier(.2,.8,.2,1); }
.sa-promo__cover{ display:block; width:100%; }
.sa-promo__cover img{ display:block; width:100%; height:auto; max-height:340px; object-fit:cover; }
.sa-promo__inner{ padding:34px 30px 30px; }
@keyframes sa-promo-in{ from{opacity:0; transform:translateY(14px) scale(.98)} to{opacity:1; transform:none} }
.sa-promo__close{ position:absolute; top:10px; right:10px; z-index:3; width:36px; height:36px; border:0; border-radius:50%; background:rgba(0,0,0,.4); color:rgba(255,255,255,.85); font-size:26px; line-height:34px; cursor:pointer; text-shadow:0 1px 6px rgba(0,0,0,.6); }
.sa-promo__close:hover{ color:#FEB800; }
.sa-promo__kicker{ font-family:'Bebas Neue','Noto Sans Thai',sans-serif; letter-spacing:.28em; text-transform:uppercase; font-size:11px; color:#FEB800; }
.sa-promo__title{ font-family:'Anton','Bebas Neue','Noto Sans Thai',sans-serif; text-transform:uppercase; font-size:clamp(26px,6vw,34px); line-height:1; margin:10px 0 20px; color:#fff !important; }
.sa-promo__title .amber{ color:#FEB800 !important; }
.sa-promo__tiers{ list-style:none; margin:0 0 18px; padding:0; display:flex; flex-direction:column; gap:11px; text-align:left; }
.sa-promo__tiers li{ display:flex; gap:12px; align-items:flex-start; font-size:14.5px; line-height:1.5; color:rgba(255,255,255,.9); }
.sa-promo__tiers .n{ flex:0 0 26px; width:26px; height:26px; background:#FEB800; color:#141414; font-family:'Bebas Neue',sans-serif; font-size:16px; display:flex; align-items:center; justify-content:center; margin-top:1px; }
.sa-promo__tiers b{ color:#fff; }
.sa-promo__tiers code, .sa-promo__code b{ font-family:'Courier New',monospace; font-weight:800; color:#FEB800; letter-spacing:.08em; }
.sa-promo__code{ display:flex; align-items:center; justify-content:center; gap:10px; border:1px dashed rgba(254,184,0,.5); padding:10px 14px; margin-bottom:16px; }
.sa-promo__code span{ font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.55); }
.sa-promo__code b{ font-size:22px; }
.sa-promo__copy{ margin-left:auto; background:#FEB800; color:#141414; border:0; padding:6px 12px; font-size:12px; font-weight:700; cursor:pointer; font-family:'Noto Sans Thai',sans-serif; }
.sa-promo__en{ font-size:12px; line-height:1.55; color:rgba(255,255,255,.5); margin:0 0 20px; }
.sa-promo__cta{ display:inline-flex; align-items:center; gap:8px; background:#FEB800; color:#141414; font-family:'Bebas Neue','Noto Sans Thai',sans-serif; letter-spacing:.06em; font-size:18px; padding:13px 34px; text-decoration:none; text-transform:uppercase; transition:filter .2s; }
.sa-promo__cta:hover{ filter:brightness(1.08); }
.sa-promo__note{ font-size:11.5px; color:rgba(255,255,255,.45); margin-top:14px; }
@media(max-width:480px){ .sa-promo__inner{ padding:28px 20px 24px; } .sa-promo__cover img{ max-height:230px; } }

/* ══════════ Launch promo banner (หน้า /promotions) ══════════ */
.sa-launch{ max-width:920px; margin:0 auto; }
.sa-launch__tiers{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin:30px 0 26px; }
.sa-launch__tier{ border:1px solid rgba(254,184,0,.28); padding:22px 18px; text-align:center; }
.sa-launch__tier .n{ display:inline-flex; align-items:center; justify-content:center; width:34px; height:34px; background:#FEB800; color:#141414; font-family:'Bebas Neue',sans-serif; font-size:20px; margin-bottom:12px; }
.sa-launch__tier b{ display:block; color:#fff; font-size:17px; margin-bottom:6px; }
.sa-launch__tier p{ color:rgba(255,255,255,.68); font-size:13.5px; line-height:1.5; margin:0; }
.sa-launch__tier code{ font-family:'Courier New',monospace; font-weight:800; color:#FEB800; }
.sa-launch__foot{ display:flex; align-items:center; justify-content:center; gap:18px; flex-wrap:wrap; }
.sa-launch__code{ border:1px dashed rgba(254,184,0,.5); padding:10px 18px; color:rgba(255,255,255,.7); font-size:13px; letter-spacing:.04em; }
.sa-launch__code b{ color:#FEB800; font-family:'Courier New',monospace; font-size:19px; letter-spacing:.1em; margin-left:6px; }
@media(max-width:640px){ .sa-launch__tiers{ grid-template-columns:1fr; gap:12px; } }

/* ══════════ Mega menu "สินค้า" (4 กลุ่ม + subs) ══════════ */
.nav-links .has-mega{ position:static; }  /* ให้ mega กว้างเต็ม */
.mega-menu{ left:50%; transform:translateX(-50%) translateY(8px); width:min(1120px,94vw); max-width:94vw;
  display:grid; grid-template-columns:repeat(5,1fr); gap:6px 22px; padding:26px 30px !important; }
.has-mega:hover .mega-menu{ transform:translateX(-50%) translateY(0); }
.mega-col{ display:flex; flex-direction:column; min-width:0; }
/* กลุ่มใหญ่ (อะไหล่ของแต่ง ~19 รายการ) → กว้าง 2 ช่อง + ลิงก์ไหล 2 คอลัมน์ กันล้น */
.mega-col--wide{ grid-column:span 2; }
.mega-links{ display:flex; flex-direction:column; }
.mega-links--2col{ display:block; column-count:2; column-gap:20px; }
.mega-links--2col .mega-sub{ break-inside:avoid; }
.mega-menu .mega-head{ font-family:'Bebas Neue','Noto Sans Thai',sans-serif !important; text-transform:uppercase; letter-spacing:.04em;
  font-size:15px !important; font-weight:700 !important; padding:6px 8px !important; margin-bottom:2px;
  border-bottom:1px solid rgba(255,255,255,.16); border-radius:0 !important; white-space:normal !important; }
.mega-menu .mega-sub{ padding:6px 8px !important; font-size:13.5px !important; font-weight:500 !important; color:#ffffff !important; white-space:normal !important; }
.mega-col--all{ grid-column:1 / -1; justify-content:flex-start; margin-top:4px; }
/* mega = dropdown บน nav สีดำ (#141414) เสมอ → ข้อความสว่างทุกสถานะ nav (over/scrolled);
   specificity (0,4,1) ต้องชนะ .nav--over:not(.scrolled) .nav-links a (0,3,1) ที่ !important */
.nav .nav-links .mega-menu a.mega-head{ color:#FEB800 !important; }
.nav .nav-links .mega-menu a.mega-head:hover{ color:#FFCB33 !important; background:transparent !important; }
.nav .nav-links .mega-menu a.mega-sub{ color:#ffffff !important; }
.nav .nav-links .mega-menu a.mega-sub:hover{ color:#FEB800 !important; background:rgba(255,255,255,.08) !important; }
.mega-menu .mega-allbtn{ background:#FEB800 !important; color:#141414 !important; font-family:'Bebas Neue','Noto Sans Thai',sans-serif; font-weight:700;
  letter-spacing:.04em; text-align:center; padding:11px 14px !important; border-radius:0 !important; white-space:normal !important; }
.mega-menu .mega-allbtn:hover{ filter:brightness(1.05); color:#141414 !important; }
@media(max-width:1100px){ .mega-menu{ grid-template-columns:repeat(4,1fr); } }

/* ══════════ Hero v2: content ชิดล่าง + จัดในระนาบเดียวกับ header (.wrap max-width) ══════════ */
/* ใช้ .wrap เดิม (max-width:var(--maxw) + margin:0 auto + gutter) เพื่อให้ขอบซ้ายตรงกับ nav */
.sa-hero__inner{ width:100%; padding-top:0 !important; padding-bottom:clamp(64px,8vw,104px) !important; }
.sa-hero__inner .sa-display{ font-size:clamp(44px,7vw,90px); }
.sa-hero .sa-sub{ max-width:44ch; }
.sa-hero__actions{ margin-top:clamp(26px,3vw,36px); }
.sa-hero__cta{ display:inline-flex; align-items:center; gap:11px; background:#FEB800; color:#141414 !important;
  font-family:'Bebas Neue','Noto Sans Thai',sans-serif; text-transform:uppercase; letter-spacing:.06em; font-weight:700;
  font-size:20px; line-height:1; padding:16px 42px; text-decoration:none; transition:filter .2s; white-space:nowrap; width:fit-content; flex-direction:row !important; flex-wrap:nowrap !important; }
.sa-hero__cta:hover{ filter:brightness(1.07); color:#141414 !important; }
.sa-hero__cta span{ transition:transform .25s; font-size:.95em; }
.sa-hero__cta:hover span{ transform:translateX(5px); }
@media(max-width:640px){ .sa-hero__cta{ font-size:17px; padding:14px 32px; } .sa-hero__inner{ padding-bottom:clamp(70px,14vw,96px) !important; } }

/* ═══ product option swatches — variant picker (สี/รูป + สลับรูป) ═══ */
.pd-optsets{display:flex;flex-direction:column;gap:16px;margin:18px 0 6px}
.pd-optset{display:flex;flex-direction:column;gap:9px}
.pd-optlabel{font-size:12.5px;font-weight:700;letter-spacing:.03em;color:#141414;text-transform:uppercase}
.pd-optlabel b{font-weight:800;text-transform:none;letter-spacing:0;color:#141414}
.pd-swatches{display:flex;flex-wrap:wrap;gap:11px;padding:2px}
.pd-sw{position:relative;width:42px;height:42px;border:1px solid #cfcfcf;background:#fff;cursor:pointer;padding:0;border-radius:0;transition:box-shadow .12s,border-color .12s}
.pd-sw>i{position:absolute;inset:0;display:block}
.pd-sw.is-color>i{background:var(--sw)}
.pd-sw.is-img>i{background:var(--sw) center/cover no-repeat}
.pd-sw.is-chrome>i{background:linear-gradient(135deg,#eef1f4 0%,#b8bfc6 26%,#f6f8fa 46%,#98a0a9 63%,#d7dce1 83%,#a9b0b7 100%)}
.pd-sw.is-silver>i{background:linear-gradient(135deg,#f5f6f8 0%,#d0d5da 40%,#eef0f3 60%,#c6cbd2 100%)}
.pd-sw.is-text{width:auto;height:auto;min-height:42px;padding:0 17px;display:inline-flex;align-items:center;font-size:13.5px;font-weight:600;color:#222;letter-spacing:.01em}
.pd-sw.is-text>span{white-space:nowrap}
.pd-sw:hover{border-color:#8f8f8f}
.pd-sw.is-on{border-color:#141414;box-shadow:0 0 0 2px #141414}
.pd-sw.is-text.is-on{background:#141414;color:#fff}
@media(max-width:640px){.pd-sw{width:38px;height:38px}.pd-sw.is-text{height:auto;min-height:38px;font-size:13px;padding:0 14px}}

/* ═══ intro clip / about video frame ═══ */
.sa-introclip__frame{ max-width:960px; margin:0 auto; background:#000; border:1px solid rgba(0,0,0,.08); }
.sa-introclip__frame video{ display:block; width:100%; height:auto; }

/* ═══ category bar — 7 ไอคอนคลิกแยก (m1-m7) ═══ */
/* ── section header: หัวข้อซ้าย · เส้น hr กลาง · ลิงก์ขวาสุด (แทนปุ่มก้อนใหญ่) ── */
.sa-sechead{ display:flex; align-items:flex-end; gap:clamp(14px,3vw,26px); margin-bottom:30px; }
.sa-sechead__title{ flex:0 0 auto; }
.sa-sechead__rule{ flex:1 1 auto; min-width:24px; height:1px; background:var(--line); margin-bottom:12px; }
.sa-sechead__link{ flex:0 0 auto; white-space:nowrap; margin-bottom:5px; display:inline-flex; align-items:center; gap:7px;
  font-family:'Bebas Neue','Noto Sans Thai',sans-serif; text-transform:uppercase; letter-spacing:.08em; font-weight:700; font-size:14.5px; color:#9C6B00;
  transition:color .2s, gap .2s; }
.sa-sechead__link span{ transition:transform .2s; }
.sa-sechead__link:hover{ color:#141414; gap:11px; }
@media(max-width:560px){
  .sa-sechead{ gap:12px; align-items:center; margin-bottom:20px; }
  .sa-sechead__rule{ margin-bottom:2px; }
  .sa-sechead__link{ margin-bottom:0; font-size:13px; }
}
.sa-catbar{ background:#fff; padding:clamp(24px,3.5vw,46px) var(--gutter); }
.sa-catbar__head{ max-width:var(--maxw); margin:0 auto clamp(18px,2.4vw,30px); padding-inline:var(--gutter); text-align:left; }
.sa-catbar__head .sa-h2{ margin-top:6px; }
#shop-by-bike{ padding-top:0 !important; }
.sa-catbar__row{ max-width:var(--maxw); margin:0 auto; display:flex; align-items:flex-start; justify-content:space-between; gap:clamp(6px,1vw,16px); flex-wrap:nowrap; }
.sa-catbar__item{ display:flex; flex-direction:column; align-items:center; flex:0 0 auto; width:clamp(84px,10vw,130px); text-decoration:none; }
/* clip รูปเป็นสี่เหลี่ยมจัตุรัส → โชว์เฉพาะวงกลม ตัดข้อความอังกฤษที่ baked ท้ายรูปทิ้ง (ใช้ label HTML สองภาษาแทน) */
.sa-catbar__icon{ display:block; width:100%; aspect-ratio:1/1; overflow:hidden; transition:transform .16s ease; }
.sa-catbar__item:hover .sa-catbar__icon{ transform:translateY(-5px); }
.sa-catbar__icon img{ display:block; width:100%; height:auto; }
.sa-catbar__label{ display:block; text-align:center; margin-top:12px; min-height:2.3em;
  font-family:'Bebas Neue','Noto Sans Thai','Anuphan',sans-serif; text-transform:uppercase; letter-spacing:.03em; font-weight:700;
  font-size:clamp(11px,.95vw,13.5px); line-height:1.15; color:#1A1A1A; }
@media(max-width:680px){
  .sa-catbar__row{ flex-wrap:nowrap; overflow-x:auto; justify-content:flex-start; gap:14px; scrollbar-width:none; padding-bottom:4px; }
  .sa-catbar__row::-webkit-scrollbar{ display:none }
  .sa-catbar__item{ width:84px; }
}

/* ════ PDP mobile sticky buy bar ════ */
.pd-buybar{ display:none; }
@media (max-width:768px){
  .pd-buybar{ position:fixed; left:0; right:0; bottom:0; z-index:120; display:flex; align-items:center; gap:14px;
    background:#0E0D0A; border-top:1px solid rgba(254,184,0,.25); padding:10px 16px calc(10px + env(safe-area-inset-bottom)); }
  .pd-buybar__price{ color:#fff; font-family:'Anton','Bebas Neue','Noto Sans Thai',sans-serif; font-size:20px; line-height:1.05; letter-spacing:.02em; white-space:nowrap; }
  .pd-buybar__price small{ display:block; font-family:'Anuphan','Noto Sans Thai',sans-serif; font-weight:600; font-size:10.5px; color:rgba(255,255,255,.55); letter-spacing:.04em; margin-top:3px; }
  .pd-buybar .btn{ flex:1; margin:0; justify-content:center; }
  body:has(.pd-buybar){ padding-bottom:74px; }
  body:has(.pd-buybar) .cw{ bottom:96px; }
}

/* ════ PDP reviews ════ */
.pd-reviews{ margin-top:26px; display:grid; grid-template-columns:1fr; gap:34px; }
@media (min-width:900px){ .pd-reviews{ grid-template-columns:1.4fr 1fr; align-items:start; } }
.pd-reviews__summary{ display:flex; align-items:center; gap:14px; margin-bottom:20px; }
.pd-reviews__avg{ font-family:'Anton','Bebas Neue',sans-serif; font-size:44px; line-height:1; color:#141414; }
.pd-stars{ letter-spacing:2px; font-size:18px; color:#D8D4C8; }
.pd-stars .on{ color:#FEB800; }
.pd-stars.sm{ font-size:14px; }
.pd-reviews__count{ font-size:13.5px; color:#6b6f76; }
.pd-reviews__list{ display:flex; flex-direction:column; gap:18px; }
.pd-review{ border:1px solid #ECE9DF; padding:16px 18px; background:#fff; }
.pd-review__head{ display:flex; flex-wrap:wrap; align-items:center; gap:10px; font-size:14px; }
.pd-review__verified{ font-size:11.5px; font-weight:700; color:#1B6E45; background:#E9F4EC; padding:2px 9px; }
.pd-review__date{ font-size:12px; color:#9a978c; margin-left:auto; }
.pd-review__title{ font-weight:700; margin-top:8px; font-size:14.5px; }
.pd-review__body{ margin-top:6px; font-size:14px; line-height:1.75; color:#4C4A40; }
.pd-reviews__empty{ color:#807C6C; font-size:14.5px; margin-bottom:8px; }
.pd-review-form{ background:#F7F5EE; padding:22px; display:flex; flex-direction:column; gap:12px; }
.pd-review-form__head{ font-family:'Bebas Neue','Anuphan',sans-serif; letter-spacing:.14em; text-transform:uppercase; font-size:15px; }
.pd-review-form__stars{ display:flex; gap:4px; }
.pd-review-form__stars button{ border:0; background:none; font-size:26px; line-height:1; color:#D8D4C8; cursor:pointer; padding:2px; }
.pd-review-form__stars button.on{ color:#FEB800; }
.pd-review-form input[type="text"], .pd-review-form textarea{ border:1.5px solid #E2DFD4; background:#fff; padding:11px 13px; font-family:inherit; font-size:14px; width:100%; outline:none; }
.pd-review-form input[type="text"]:focus, .pd-review-form textarea:focus{ border-color:#FEB800; }
.pd-review-form .btn{ align-self:flex-start; }
.pd-review-form__ok{ background:#E9F4EC; color:#1B6E45; font-size:13.5px; padding:9px 13px; }
.pd-review-form__err{ color:#B3261E; font-size:12.5px; }
.pd-review-form__note{ font-size:12px; color:#9a978c; }
html.sa-dark .pd-review{ background:#181B1F; border-color:#2A2E34; }
html.sa-dark .pd-review__body{ color:#BDB9A8; }
html.sa-dark .pd-reviews__avg{ color:#F0EEE4; }
html.sa-dark .pd-review-form{ background:#181B1F; }
html.sa-dark .pd-review-form input[type="text"], html.sa-dark .pd-review-form textarea{ background:#0E1013; border-color:#2A2E34; color:#F0EEE4; }
