/* =========================================================
   Lone Star Cine — shared design system (Apple-inspired)
   ========================================================= */

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
               "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  color: #1d1d1f;
  background: #fbfbfd;
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.022em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }

/* ---- Tokens ---- */
:root {
  --black: #000;
  --ink:   #1d1d1f;
  --ink-2: #2d2d31;
  --muted: #6e6e73;
  --line:  #d2d2d7;
  --line-2:#e8e8ed;
  --bg:    #fbfbfd;
  --bg-2:  #f5f5f7;
  --white: #ffffff;
  --accent: #c8462c;
  --accent-2: #6f1f12;
  --max:   1240px;
  --max-narrow: 980px;
  --radius: 22px;
  --radius-sm: 14px;
}

/* ---- Layout ---- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 22px; }
.center { text-align: center; }

/* ---- Buttons ---- */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 22px; border-radius: 999px;
  font-size: 17px; font-weight: 400; letter-spacing: -0.022em;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.pill--solid { background: var(--ink); color: #fff; }
.pill--solid:hover { background: var(--ink-2); }
.pill--ghost { color: var(--ink); }
.pill--ghost:hover { color: var(--accent); }
.pill--ghost::after { content: " ›"; }
.pill--accent { background: var(--accent); color: #fff; }
.pill--accent:hover { background: var(--accent-2); }
.pill--sm { padding: 8px 16px; font-size: 14px; }

/* ---- Sticky nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(251,251,253,0.72);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 48px; padding: 0 22px;
  font-size: 13px; color: #1d1d1fcc;
}
.nav__brand {
  font-weight: 600; letter-spacing: -0.01em; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.nav__brand .star {
  width: 14px; height: 14px; display: inline-block;
  background: var(--ink);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__links a { transition: color .2s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }

/* ---- Nav dropdown (Gear menu) ---- */
.nav__item { position: relative; }
.nav__item--dropdown > .nav__link { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.nav__caret {
  display: inline-block; font-size: 14px; line-height: 1;
  transform: rotate(90deg);
  transition: transform .25s ease;
  opacity: 0.5;
}
.nav__item--dropdown:hover .nav__caret,
.nav__item--dropdown:focus-within .nav__caret { transform: rotate(270deg); opacity: 0.9; }

.nav__dropdown {
  position: absolute; top: calc(100% + 4px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 380px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 6px;
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  z-index: 100;
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear 0s;
}
.nav__dropdown a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--ink);
  border-radius: 8px;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: background .15s, color .15s;
}
.nav__dropdown a:hover { background: var(--bg-2); color: var(--ink); }
.nav__dropdown-all {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line-2);
  margin-top: 6px;
  padding-top: 14px !important;
  color: var(--accent) !important;
  font-weight: 500;
  text-align: center;
}
/* Single-column fallback on narrow viewports */
@media (max-width: 480px) {
  .nav__dropdown { grid-template-columns: 1fr; min-width: 240px; }
}
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__cta .book { color: var(--ink); font-weight: 500; }
@media (max-width: 820px) {
  .nav__links { display: none; }
}

/* ---- Page hero (basic) ---- */
.hero {
  text-align: center;
  padding: 90px 22px 0;
  background: var(--bg);
  overflow: hidden;
}
.hero__eyebrow {
  font-size: 14px; font-weight: 500; color: var(--accent);
  letter-spacing: 0.02em; text-transform: uppercase;
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(48px, 7.5vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: var(--ink);
  max-width: 1000px;
  margin: 0 auto 18px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, #c8462c 0%, #2d2d31 60%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub {
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--muted); max-width: 640px; margin: 0 auto 28px;
  line-height: 1.45;
}
.hero__ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }

.hero__stage {
  position: relative; max-width: 1200px; margin: 0 auto;
  aspect-ratio: 16 / 8;
  border-radius: var(--radius);
  background: radial-gradient(80% 60% at 50% 35%, #2a2a2e 0%, #0c0c0e 70%);
  overflow: hidden;
}
.hero__stage::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 30% 80%, rgba(200,70,44,0.18), transparent 70%),
    radial-gradient(50% 60% at 70% 20%, rgba(120,170,255,0.12), transparent 70%);
}
.hero__cam {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.hero__cam img {
  height: 78%; width: auto; object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
}
.hero__caption {
  position: absolute; left: 32px; bottom: 28px; color: #fff;
  font-size: 14px; letter-spacing: 0.02em; text-transform: uppercase;
  opacity: 0.7;
}

/* ---- Sub-page hero (smaller) ---- */
.subhero {
  padding: 80px 22px 60px;
  background: var(--bg);
  text-align: center;
}
.subhero__eyebrow {
  font-size: 14px; font-weight: 500; color: var(--accent);
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px;
}
.subhero__title {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05; letter-spacing: -0.03em; font-weight: 600;
  color: var(--ink); max-width: 900px; margin: 0 auto 16px;
}
.subhero__sub {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--muted); max-width: 640px; margin: 0 auto;
}

/* ---- Sections ---- */
.section { padding: 120px 0; }
.section-tight { padding: 80px 0; }
.section--dark { background: #000; color: #fff; }
.section--gray { background: var(--bg-2); }
.section__eyebrow {
  font-size: 14px; font-weight: 500; color: var(--accent);
  letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 14px;
}
.section__title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.07; letter-spacing: -0.03em; font-weight: 600;
  color: var(--ink); max-width: 880px;
}
.section--dark .section__title { color: #fff; }
.section__sub {
  font-size: clamp(17px, 1.4vw, 21px); color: var(--muted);
  max-width: 680px; margin-top: 14px; line-height: 1.5;
}
.section__title em { font-style: normal; color: var(--muted); }
.section--dark .section__title em { color: #86868b; }

/* ---- Strip ---- */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  padding: 28px 0;
  margin-top: 80px;
}
.strip__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: center; }
.strip__item { text-align: center; }
.strip__num { font-size: clamp(34px, 4.4vw, 56px); font-weight: 600; letter-spacing: -0.03em; color: var(--ink); }
.strip__label { color: var(--muted); font-size: 15px; margin-top: 4px; }
@media (max-width: 700px) { .strip__row { grid-template-columns: 1fr; } }

/* ---- Tile grid (Apple bento) ---- */
.tiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 320px;
  gap: 14px;
  margin-top: 48px;
}
.tile {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  padding: 36px;
  color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .35s ease;
}
.tile:hover { transform: translateY(-3px); }
.tile__eyebrow { font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.7; }
.tile__title {
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.1; letter-spacing: -0.02em; font-weight: 600;
  margin-top: 8px;
}
.tile__cta {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.92); color: var(--ink);
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: background .2s;
}
.tile__cta:hover { background: #fff; }
.tile__img {
  position: absolute; right: -10%; bottom: -10%; width: 70%; opacity: .85;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
  pointer-events: none;
}
.tile--cam   { grid-column: span 4; background: #0c0c0e; }
.tile--lens  { grid-column: span 2; background: linear-gradient(160deg, #2a2a2e, #0c0c0e); }
.tile--light { grid-column: span 2; background: linear-gradient(160deg, #1f2326, #0a0c0e); }
.tile--audio { grid-column: span 2; background: #f5f5f7; color: var(--ink); }
.tile--monitor { grid-column: span 2; background: linear-gradient(160deg, #c8462c, #6f1f12); }
.tile--audio .tile__cta { background: var(--ink); color: #fff; }
.tile--audio .tile__cta:hover { background: var(--ink-2); }

@media (max-width: 980px) {
  .tiles { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .tile--cam, .tile--lens, .tile--light, .tile--audio, .tile--monitor { grid-column: span 1; }
  .tile--cam { grid-column: span 2; }
}
@media (max-width: 600px) {
  .tiles { grid-template-columns: 1fr; }
  .tile, .tile--cam { grid-column: span 1; }
}

/* ---- Editorial split section ---- */
.editorial { background: #000; color: #fff; overflow: hidden; }
.editorial__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 140px 22px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.editorial__title {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05; letter-spacing: -0.03em; font-weight: 600;
}
.editorial__title span { color: var(--accent); }
.editorial__copy { color: #a1a1a6; font-size: 19px; line-height: 1.5; margin-top: 20px; }
.editorial__cta { margin-top: 32px; display: inline-flex; align-items: center; gap: 6px;
  color: #fff; font-size: 17px; }
.editorial__cta::after { content: " ›"; }
.editorial__art {
  aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, #1c1c1e, #000);
  position: relative;
}
.editorial__art img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
@media (max-width: 880px) {
  .editorial__inner { grid-template-columns: 1fr; padding: 90px 22px; }
}

/* ---- Steps grid ---- */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 56px;
}
.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.step__num { font-size: 14px; color: var(--accent); font-weight: 600; letter-spacing: 0.04em; }
.step__title { font-size: 22px; font-weight: 600; margin: 14px 0 8px; letter-spacing: -0.02em; }
.step__copy { color: var(--muted); font-size: 15px; line-height: 1.5; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

/* ---- Use cases ---- */
.uses {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 48px;
}
.use {
  border-radius: var(--radius); overflow: hidden; position: relative;
  aspect-ratio: 4/5; color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
}
.use::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
}
.use img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.use__label, .use__title { position: relative; z-index: 1; }
.use__label { font-size: 13px; opacity: 0.85; letter-spacing: 0.04em; text-transform: uppercase; }
.use__title { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; margin-top: 6px; }
@media (max-width: 880px) { .uses { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .uses { grid-template-columns: 1fr; } }

/* ---- Featured kits ---- */
.kits {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 48px;
}
.kit {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.kit:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.kit__art {
  aspect-ratio: 4/3; border-radius: var(--radius-sm);
  background: linear-gradient(160deg, #1c1c1e, #2d2d31);
  margin-bottom: 24px; overflow: hidden;
}
.kit__art img { width: 100%; height: 100%; object-fit: cover; }
.kit__label { font-size: 13px; color: var(--accent); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.kit__title { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; margin: 8px 0 12px; }
.kit__copy { color: var(--muted); font-size: 15px; line-height: 1.5; flex: 1; }
.kit__price { font-size: 14px; color: var(--ink); margin-top: 20px; }
.kit__price strong { font-weight: 600; }
@media (max-width: 880px) { .kits { grid-template-columns: 1fr; } }

/* ---- Brand strip ---- */
.brands {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 48px;
  margin-top: 32px;
  opacity: 0.6;
}
.brands__item {
  font-size: 24px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink); font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  filter: grayscale(100%);
  transition: opacity .3s, filter .3s;
}
.brands__item:hover { opacity: 1; filter: none; }

/* ---- Quote / testimonial ---- */
.quote {
  max-width: 900px; margin: 0 auto;
  text-align: center;
}
.quote__text {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2; letter-spacing: -0.02em; font-weight: 500;
  color: var(--ink);
}
.section--dark .quote__text { color: #fff; }
.quote__author {
  margin-top: 32px; font-size: 14px; color: var(--muted);
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ---- FAQ ---- */
.faq { max-width: 920px; margin: 56px auto 0; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; padding: 26px 8px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 19px; font-weight: 500; letter-spacing: -0.02em; text-align: left;
  transition: color .2s;
}
.faq__q:hover { color: var(--accent); }
.faq__icon {
  width: 24px; height: 24px; flex: none; position: relative;
  transition: transform .3s ease;
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
}
.faq__icon::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq__icon::after  { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); transition: transform .3s ease; }
.faq__item.open .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__a {
  max-height: 0; overflow: hidden;
  color: var(--muted); font-size: 17px; line-height: 1.55;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 8px;
}
.faq__item.open .faq__a { max-height: 280px; padding: 0 8px 26px; }

/* ---- CTA band ---- */
.cta-band {
  text-align: center;
  padding: 140px 22px;
  background: radial-gradient(60% 80% at 50% 40%, #2a2a2e 0%, #0c0c0e 70%);
  color: #fff;
}
.cta-band__title { font-size: clamp(40px, 5.5vw, 72px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 600; }
.cta-band__sub { color: #a1a1a6; font-size: 19px; margin-top: 14px; }
.cta-band__ctas { margin-top: 32px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-band .pill--solid { background: #fff; color: #000; }
.cta-band .pill--solid:hover { background: #f0f0f0; }
.cta-band .pill--ghost { color: #fff; }

/* ---- Locations band ---- */
.locations { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.locations--single { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
.location {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
}
.location__city { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.location__addr { color: var(--muted); font-size: 15px; line-height: 1.5; margin-top: 8px; }
.location__hours { color: var(--ink); font-size: 14px; margin-top: 16px; }
.location__cta { margin-top: 16px; font-size: 14px; color: var(--accent); }
@media (max-width: 880px) { .locations { grid-template-columns: 1fr; } }

/* ---- Footer ---- */
.footer {
  background: var(--bg); color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.footer__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 48px 22px 36px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
}
.footer__brand { font-size: 15px; color: var(--ink); font-weight: 600; margin-bottom: 10px; }
.footer__col h4 { font-size: 13px; color: var(--ink); margin-bottom: 12px; font-weight: 600; }
.footer__col a { display: block; padding: 4px 0; transition: color .2s; }
.footer__col a:hover { color: var(--ink); }
.footer__legal {
  border-top: 1px solid var(--line);
  max-width: var(--max); margin: 0 auto; padding: 20px 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 760px) { .footer__inner { grid-template-columns: 1fr 1fr; } }

/* ---- Filter bar ---- */
.filterbar {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 32px 0 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.chip {
  padding: 8px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 14px; color: var(--ink);
  cursor: pointer; transition: all .2s;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---- Product card grid (category page) ---- */
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 48px;
}
.product-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(0,0,0,0.08); }
.product-card__art {
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #f5f5f7, #e8e8ed);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-card__art img { width: 70%; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(0,0,0,0.18)); }
.product-card__body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.product-card__brand { font-size: 12px; color: var(--accent); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.product-card__name { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin: 6px 0 10px; }
.product-card__specs { color: var(--muted); font-size: 14px; line-height: 1.5; flex: 1; }
.product-card__foot {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-2);
  display: flex; justify-content: space-between; align-items: center;
}
.product-card__price { font-size: 14px; color: var(--ink); letter-spacing: -0.01em; }
.product-card__price strong { font-weight: 600; font-size: 16px; }
.product-card__price small { color: var(--muted); }
.product-card__price .price,
.product-card__price .woocommerce-Price-amount {
  font: inherit; color: inherit; text-decoration: none;
}
.product-card__price del { color: var(--muted); opacity: 0.7; margin-right: 4px; }
.product-card__price ins { background: none; text-decoration: none; font-weight: 600; }
.product-card__cta { font-size: 14px; color: var(--accent); font-weight: 500; letter-spacing: -0.01em; }
.product-card:hover .product-card__cta { color: var(--accent-2); }
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; } }

/* ---- Product detail page ---- */
.pd-hero {
  padding: 64px 22px 0;
  background: var(--bg);
  text-align: center;
}
.pd-hero__brand { font-size: 13px; color: var(--accent); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.pd-hero__name {
  font-size: clamp(44px, 6vw, 80px); line-height: 1.05;
  letter-spacing: -0.03em; font-weight: 600; margin: 14px 0 10px;
}
.pd-hero__tag { font-size: clamp(18px, 1.6vw, 22px); color: var(--muted); max-width: 640px; margin: 0 auto; }
.pd-hero__stage {
  margin-top: 56px; max-width: 1100px; margin-left: auto; margin-right: auto;
  aspect-ratio: 16/9; border-radius: var(--radius);
  background: radial-gradient(80% 60% at 50% 35%, #2a2a2e 0%, #0c0c0e 70%);
  position: relative; overflow: hidden;
}
.pd-hero__stage img {
  position: absolute; inset: 0; margin: auto;
  height: 80%; width: auto; object-fit: contain;
  filter: drop-shadow(0 40px 70px rgba(0,0,0,0.5));
}

/* Spec callouts (Apple "So light. So Pro." style) */
.callouts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 48px;
}
.callout {
  border-radius: var(--radius);
  padding: 40px 32px;
  background: #fff; border: 1px solid var(--line);
}
.callout__num {
  font-size: clamp(40px, 4.5vw, 56px); font-weight: 600;
  letter-spacing: -0.03em; color: var(--ink);
}
.callout__num span { color: var(--accent); }
.callout__label { color: var(--muted); font-size: 14px; margin-top: 6px; }
.callout__copy { color: var(--ink); font-size: 17px; margin-top: 16px; line-height: 1.5; }
@media (max-width: 880px) { .callouts { grid-template-columns: 1fr; } }

/* Spec table */
.specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-top: 48px;
  border-top: 1px solid var(--line);
}
.specs__row {
  display: contents;
}
.specs__row > div {
  padding: 22px 8px; border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.specs__row > div:first-child { color: var(--muted); }
.specs__row > div:last-child { color: var(--ink); font-weight: 500; }
@media (max-width: 700px) {
  .specs { grid-template-columns: 1fr; }
  .specs__row > div { padding: 14px 8px; }
  .specs__row > div:first-child { padding-bottom: 4px; border: 0; }
}

/* What's in the kit */
.kit-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin-top: 48px;
}
.kit-list__item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px;
}
.kit-list__item span { color: var(--muted); }
@media (max-width: 600px) { .kit-list { grid-template-columns: 1fr; } }

/* Pricing table */
.pricing {
  margin-top: 48px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.pricing__row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line-2);
  transition: background .2s;
}
.pricing__row:last-child { border-bottom: 0; }
.pricing__row:hover { background: var(--bg-2); }
.pricing__row--head {
  background: var(--bg-2); font-size: 13px; color: var(--muted);
  letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600;
}
.pricing__duration { font-size: 17px; font-weight: 500; letter-spacing: -0.02em; }
.pricing__price { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.pricing__action { text-align: right; font-size: 14px; color: var(--accent); }
@media (max-width: 600px) {
  .pricing__row { grid-template-columns: 1fr 1fr; padding: 16px 18px; }
  .pricing__action { display: none; }
}

/* Reservation card (sticky on detail page) */
.reserve-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  position: sticky; top: 70px;
}
.reserve-card h4 { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; }
.reserve-card__price { font-size: 36px; font-weight: 600; letter-spacing: -0.03em; }
.reserve-card__price small { font-size: 14px; color: var(--muted); font-weight: 400; }
.reserve-card select, .reserve-card input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 12px; font: inherit; margin-top: 10px; background: #fff;
}
.reserve-card__cta { width: 100%; margin-top: 14px; justify-content: center; }
.reserve-card__note { color: var(--muted); font-size: 13px; margin-top: 12px; line-height: 1.5; }

/* ---- WooCommerce variations + add-to-cart inside reserve card ---- */
.reserve-card .variations_form { margin-top: 14px; }
.reserve-card .variations {
  width: 100%; border-collapse: collapse; margin: 0 0 14px;
}
.reserve-card .variations tbody { display: block; }
.reserve-card .variations tr {
  display: flex; flex-direction: column; gap: 6px;
  border: 0; padding: 0;
}
.reserve-card .variations th.label,
.reserve-card .variations th {
  text-align: left;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  padding: 0; border: 0;
}
.reserve-card .variations td.value,
.reserve-card .variations td {
  padding: 0; border: 0;
}
.reserve-card .variations select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
  margin: 0;
  -webkit-appearance: menulist;
  appearance: menulist;
}
.reserve-card .variations .reset_variations {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
}
.reserve-card .variations .reset_variations:hover { color: var(--accent); }

/* Variation price preview when an option is selected */
.reserve-card .single_variation_wrap { margin-top: 12px; }
.reserve-card .single_variation .price {
  font-size: 18px; font-weight: 600; color: var(--ink); display: block; margin-bottom: 8px;
}
.reserve-card .single_variation .stock {
  font-size: 13px; color: var(--muted); margin-bottom: 8px;
}

/* Hide WC default qty input — rentals are typically 1 unit per kit slot */
.reserve-card .quantity { display: none !important; }

/* Style the native add-to-cart button as a black pill matching .pill--solid */
.reserve-card .single_add_to_cart_button,
.reserve-card button.single_add_to_cart_button,
.reserve-card .variations_button .button,
.reserve-card button[name="add-to-cart"] {
  background: var(--ink) !important;
  color: #fff !important;
  border: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 14px 22px !important;
  border-radius: 999px !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  letter-spacing: -0.022em !important;
  line-height: 1.2 !important;
  width: 100% !important;
  margin-top: 14px !important;
  text-transform: none !important;
  cursor: pointer !important;
  text-shadow: none !important;
  box-shadow: none !important;
  transition: background .25s ease, transform .15s ease !important;
}
.reserve-card .single_add_to_cart_button:hover,
.reserve-card .variations_button .button:hover {
  background: var(--ink-2) !important;
  color: #fff !important;
}
.reserve-card .single_add_to_cart_button:active { transform: scale(0.98) !important; }
.reserve-card .single_add_to_cart_button.disabled,
.reserve-card .single_add_to_cart_button:disabled {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
}
.reserve-card .single_add_to_cart_button.wc-variation-selection-needed {
  pointer-events: auto !important;
}

/* WC "added to cart" success message inside reserve card */
.reserve-card .woocommerce-message {
  background: var(--bg-2);
  border-left: 3px solid var(--accent);
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 8px;
  margin-top: 12px;
}

/* Two-column product layout */
.pd-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 60px;
  align-items: start;
}
@media (max-width: 980px) {
  .pd-layout { grid-template-columns: 1fr; }
  .reserve-card { position: static; }
}

/* Breadcrumb */
.crumb { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.crumb a:hover { color: var(--ink); }
.crumb span { margin: 0 6px; }

/* ---- Cart count badge in nav ---- */
[data-cart-count] {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 6px;
  background: var(--accent); color: #fff;
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  margin-left: 4px; line-height: 1;
}
[data-cart-count]:empty, [data-cart-count][style*="display: none"] { display: none !important; }
[data-cart-link].has-items { color: var(--ink); }

/* ---- Toast ---- */
.lsc-toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(40px);
  background: var(--ink); color: #fff;
  padding: 14px 22px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  opacity: 0; transition: opacity .2s ease, transform .25s ease;
  z-index: 100; pointer-events: none;
  box-shadow: 0 24px 50px rgba(0,0,0,0.2);
}
.lsc-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---- Cart page ---- */
.cart-layout {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 60px; align-items: start;
  margin-top: 48px;
}
@media (max-width: 980px) { .cart-layout { grid-template-columns: 1fr; } }

.cart-line {
  display: grid; grid-template-columns: 120px 1fr auto;
  gap: 24px; align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line:first-child { padding-top: 0; }
.cart-line__art {
  width: 120px; height: 120px;
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, #f5f5f7, #e8e8ed);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cart-line__art img { width: 80%; object-fit: contain; }
.cart-line__brand { font-size: 12px; color: var(--accent); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.cart-line__name { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin: 4px 0 10px; }
.cart-line__name a { color: var(--ink); }
.cart-line__controls {
  display: flex; gap: 14px; align-items: center; margin-top: 8px; flex-wrap: wrap;
}
.cart-line__controls select, .cart-line__qty {
  padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px;
  font: inherit; font-size: 14px; background: #fff;
}
.cart-line__qty {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 4px;
}
.cart-line__qty button {
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--bg-2); border: 0; cursor: pointer;
  font-size: 16px; line-height: 1; color: var(--ink);
  transition: background .15s;
}
.cart-line__qty button:hover { background: var(--line); }
.cart-line__qty span { min-width: 18px; text-align: center; font-weight: 500; }
.cart-line__price {
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
  text-align: right; min-width: 100px;
}
.cart-line__remove {
  display: block; margin-top: 6px; text-align: right;
  font-size: 13px; color: var(--muted); cursor: pointer;
}
.cart-line__remove:hover { color: var(--accent); }
@media (max-width: 600px) {
  .cart-line { grid-template-columns: 80px 1fr; }
  .cart-line__art { width: 80px; height: 80px; }
  .cart-line__price { grid-column: 2; text-align: left; margin-top: 4px; }
}

.cart-summary {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  position: sticky; top: 70px;
}
.cart-summary h4 {
  font-size: 13px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 16px;
}
.cart-summary__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; font-size: 15px;
}
.cart-summary__row--total {
  border-top: 1px solid var(--line); padding-top: 18px; margin-top: 8px;
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
}
.cart-summary__cta { width: 100%; margin-top: 16px; justify-content: center; }
.cart-summary__note { color: var(--muted); font-size: 13px; margin-top: 14px; line-height: 1.5; }

.cart-empty {
  text-align: center; padding: 80px 22px;
}
.cart-empty__icon {
  font-size: 56px; margin-bottom: 18px; opacity: 0.4;
}

/* ---- Scroll-reveal ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
