/* ==============================================
   PneuOnline 2026 — based on BOXCARS template
   Theme tokens, fonts and motion taken from
   /css/style.css (BOXCARS HTML Template v1.0).
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Bebas+Neue&display=swap');

/* Legacy variable shims — old `--po-*` names mapped to current template tokens
   so any leftover inline styles in views still render correctly. */
:root {
  --po-text: var(--text-color);
  --po-text-soft: var(--text-color2);
  --po-font-display: var(--title-font);
  --po-grad-1: linear-gradient(135deg, var(--theme-color1), #2C49D9);
  --po-accent-3: var(--theme-color2);
}

:root {
  /* ---- copied straight from BOXCARS style.css :root ---- */
  --theme-color-light: #ffffff;
  --theme-color-dark: #050B20;
  --theme-color-gray: #F6F6F6;
  --theme-color1: #405FF2;     /* primary blue */
  --theme-color2: #00B67A;     /* trust green */
  --theme-color3: #faf7f2;     /* cream */
  --text-color: #050B20;
  --text-color2: #616670;
  --headings-color: #050B20;
  --theme-light-background: #F2F3F5;

  --title-font: "DM Sans", sans-serif;
  --text-font: "DM Sans", sans-serif;
  --title-font2: "Bebas Neue", sans-serif;

  --body-font-size: 16px;
  --body-line-height: 28px;
  --body-font-weight: 400;

  --h1-font-size: 68px;
  --h2-font-size: 40px;
  --h3-font-size: 30px;
  --h4-font-size: 24px;
  --h5-font-size: 22px;
  --h6-font-size: 20px;

  --container-width: 1430px;
  --container-pt: 120px;
  --container-pb: 120px;

  /* ---- PneuOnline derived tokens ---- */
  --po-border: rgba(5, 11, 32, 0.08);
  --po-border-strong: rgba(64, 95, 242, 0.45);
  --po-shadow-card: 0 14px 40px -22px rgba(5, 11, 32, 0.18);
  --po-shadow-hover: 0 24px 60px -22px rgba(64, 95, 242, 0.35);
  --po-radius-sm: 10px;
  --po-radius: 16px;
  --po-radius-lg: 24px;
  --po-ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- reset / global ---------- */
html, body {
  background: var(--theme-color-light) !important;
  color: var(--text-color) !important;
  font-family: var(--text-font) !important;
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  font-weight: var(--body-font-weight);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body { min-height: 100vh; overflow-x: hidden; }

* { box-sizing: border-box; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--title-font) !important;
  color: var(--headings-color) !important;
  font-weight: 400;          /* matches template :root h*-font-weight */
  line-height: 1.2;          /* matches template --line-height-heading-h1 */
  letter-spacing: -0.01em;
  margin: 0;
}
h1 { font-size: var(--h1-font-size); }
h2 { font-size: var(--h2-font-size); }
h3 { font-size: var(--h3-font-size); }
h4 { font-size: var(--h4-font-size); }
h5 { font-size: var(--h5-font-size); }
h6 { font-size: var(--h6-font-size); }

p, li, span, label, td, th, small, blockquote {
  color: var(--text-color);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  font-weight: var(--body-font-weight);
}
small { font-size: 13px; }
.po-muted { color: var(--text-color2) !important; }

a {
  color: var(--headings-color);
  text-decoration: none;
  transition: color .2s var(--po-ease);
}
a:hover { color: var(--theme-color1); }

::selection { background: var(--theme-color1); color: #fff; }

/* ---------- layout shell ---------- */
.po-wrap { position: relative; isolation: isolate; }
.po-section { padding: 140px 0; position: relative; }    /* more breathing room */
.po-section--tight { padding: 90px 0; }
.po-section--cream { background: var(--theme-color3); }
.po-section--gray { background: var(--theme-color-gray); }
.po-section--dark { background: var(--theme-color-dark); color: var(--theme-color-light); }
.po-section--dark h1, .po-section--dark h2, .po-section--dark h3, .po-section--dark h4 { color: var(--theme-color-light) !important; }
.po-section--dark p, .po-section--dark li, .po-section--dark span { color: rgba(255,255,255,.78); }

.po-container {
  width: min(var(--container-width), 90vw);
  margin: 0 auto;
  position: relative;
}
@media (max-width: 980px) {
  .po-container { width: 92vw; }
}

/* ---------- eyebrow / sec title ---------- */
.po-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-family: var(--text-font);
  font-size: var(--sec-title-subtitle-font-size);
  font-weight: var(--sec-title-subtitle-font-weight);
  line-height: var(--sec-title-subtitle-line-height);
  color: var(--theme-color-dark);
  background: var(--theme-color3);
  border-radius: 999px;
}
.po-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--theme-color1);
  box-shadow: 0 0 0 4px rgba(64, 95, 242, 0.18);
  animation: po-pulse 2.4s ease-in-out infinite;
}
.po-section--dark .po-eyebrow {
  background: rgba(255,255,255,.08);
  color: var(--theme-color-light);
}
@keyframes po-pulse { 0%,100% { opacity:1; transform:scale(1);} 50% { opacity:.5; transform:scale(.7);} }

/* H1 hero — bigger responsive floor so the title is always confident */
.po-title {
  font-family: var(--title-font);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: var(--h1-font-weight);
  line-height: var(--line-height-heading-h1);
  letter-spacing: -0.02em;
  margin: 18px 0 18px;
  color: var(--headings-color);
}
.po-title .grad {
  color: var(--theme-color1);
  font-weight: 600;
}
.po-section--dark .po-title .grad { color: #6F89FF; }

/* Section-level H2 — exact template H2 size with responsive floor */
.po-section-title {
  font-family: var(--title-font);
  font-size: clamp(28px, 3.6vw, var(--h2-font-size));
  font-weight: var(--h2-font-weight);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 14px 0 14px;
}

.po-subtitle {
  font-family: var(--text-font);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  font-weight: var(--body-font-weight);
  color: var(--text-color2);
  max-width: 720px;
}

/* ---------- top nav ---------- */
.po-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--po-border);
}
.po-nav__inner {
  width: min(var(--container-width), 94vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.po-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.po-logo__img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 320px;
}
@media (max-width: 540px) {
  .po-logo__img { height: 44px; max-width: 220px; }
}

/* ---------- brand marquee ---------- */
.po-marquee-section {
  padding: 48px 0;
  background: transparent;
}
.po-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.po-marquee__track {
  display: flex;
  gap: 72px;
  align-items: center;
  width: max-content;
  animation: po-marquee-left 45s linear infinite;
}
.po-marquee:hover .po-marquee__track { animation-play-state: paused; }
@keyframes po-marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.po-marquee__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  flex: 0 0 auto;
}
.po-marquee__logo img {
  max-height: 100%;
  width: auto;
  max-width: 160px;
  /* Multiply blend drops the white background of each logo PNG into the page colour */
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.05);
  opacity: .7;
  transition: filter .25s var(--po-ease), opacity .25s var(--po-ease), transform .25s var(--po-ease);
}
.po-marquee__logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}
.po-marquee__edge { display: none; }

/* ---------- tire change slider ---------- */
.po-slider {
  position: relative;
  border-radius: var(--po-radius-lg);
  overflow: hidden;
  background: var(--theme-color3);
  box-shadow: var(--po-shadow-card);
}

/* Full-width hero variant — spans entire viewport at the top of the landing page */
.po-slider--full {
  border-radius: 0;
  margin: 0;
  width: 100%;
  background: var(--theme-color-dark);
  box-shadow: none;
}
.po-slider--full .po-slider__viewport {
  aspect-ratio: auto;
  height: clamp(520px, 70vh, 760px);
}
.po-slider--full .po-slider__slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.po-slider--full .po-slider__shade {
  background:
    linear-gradient(180deg, rgba(5,11,32,.10) 0%, rgba(5,11,32,.75) 95%),
    linear-gradient(90deg, rgba(5,11,32,.75) 0%, rgba(5,11,32,0) 55%);
}
.po-slider--full .po-slider__caption {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 60px;
  width: min(1240px, 92vw);
  padding: 0;
  max-width: none;
}
.po-slider--full .po-slider__step {
  font-size: 13px;
  letter-spacing: .35em;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.22);
}
.po-slider--full .po-slider__title {
  font-family: var(--title-font);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 600;
  max-width: 720px;
  margin: 18px 0 14px;
}
.po-slider--full .po-slider__desc {
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 560px;
  margin: 0 0 26px;
}
.po-slider--full .po-slider__nav {
  width: 56px; height: 56px;
}
.po-slider--full .po-slider__nav--prev { left: 28px; }
.po-slider--full .po-slider__nav--next { right: 28px; }

.po-slider__dots--full {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  width: min(1240px, 92vw);
  padding: 0;
  background: transparent;
  border-top: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  z-index: 3;
}
.po-slider__dots--full .po-slider__dot {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 12px 14px 16px;
  text-align: left;
  color: #fff;
  backdrop-filter: blur(10px);
}
.po-slider__dots--full .po-slider__dot:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.po-slider__dots--full .po-slider__dot.is-active {
  background: rgba(64,95,242,.5);
  border-color: rgba(255,255,255,.3);
}
.po-slider__dots--full .po-slider__dot-step { color: rgba(255,255,255,.7); }
.po-slider__dots--full .po-slider__dot-title { color: #fff; }
.po-slider__dots--full .po-slider__dot-bar { background: rgba(255,255,255,.10); }
.po-slider__dots--full .po-slider__dot-bar span { background: #fff; }

@media (max-width: 760px) {
  .po-slider--full .po-slider__viewport { height: 70vh; min-height: 520px; }
  .po-slider--full .po-slider__caption { bottom: 130px; padding: 0 20px; }
  .po-slider__dots--full { grid-template-columns: repeat(5, 1fr); gap: 4px; }
  .po-slider__dots--full .po-slider__dot { padding: 8px 6px 12px; }
  .po-slider__dots--full .po-slider__dot-title { display: none; }
}

/* ---------- Hero-stage: clean light intro section ---------- */
.po-hero-stage {
  position: relative;
  overflow: hidden;
  background: var(--theme-color3);
  isolation: isolate;
}
.po-hero-stage--light { background: var(--theme-color3); }

/* Gallery below the hero — slider boxed to 80% width with rounded corners */
.po-hero-gallery {
  padding: 0 0 40px;
  background: var(--theme-color3);
}
.po-slider--boxed {
  width: 90%;
  max-width: 1430px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(5, 11, 32, 0.35);
}
.po-slider--boxed .po-slider__viewport {
  aspect-ratio: 21 / 9;
}
.po-slider--boxed .po-slider__slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 9s var(--po-ease);
}
.po-slider--boxed .po-slider__slide.is-active img { transform: scale(1.10); }
.po-slider--boxed .po-slider__nav {
  background: rgba(255,255,255,.90);
  color: var(--theme-color-dark);
  border-color: rgba(255,255,255,.5);
}
.po-slider--boxed .po-slider__nav:hover {
  background: var(--theme-color1);
  color: #fff;
  border-color: var(--theme-color1);
}
.po-slider--boxed .po-slider__nav--prev { left: 24px; }
.po-slider--boxed .po-slider__nav--next { right: 24px; }
@media (max-width: 760px) {
  .po-slider--boxed { width: 92%; border-radius: 18px; }
  .po-slider--boxed .po-slider__viewport { aspect-ratio: 4 / 5; }
}
.po-slider--bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  margin: 0;
  background: var(--theme-color-dark);
  box-shadow: none;
}
.po-slider--bg .po-slider__viewport { height: 100%; aspect-ratio: auto; }
.po-slider--bg .po-slider__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* slow Ken Burns drift while the slide is active for life */
  transform: scale(1.02);
  transition: transform 9s var(--po-ease);
}
.po-slider--bg .po-slider__slide.is-active img { transform: scale(1.10); }
.po-slider--bg .po-slider__shade {
  background:
    linear-gradient(180deg, rgba(5,11,32,.20) 0%, rgba(5,11,32,.32) 55%, rgba(5,11,32,.55) 100%),
    linear-gradient(120deg, rgba(5,11,32,.28) 0%, rgba(5,11,32,.05) 60%);
}

.po-hero-stage__overlay {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;     /* much more vertical breathing room */
}
.po-hero-stage__inner {
  max-width: 1056px;       /* +20 % from 880 */
  margin: 0 auto;
  text-align: center;
  color: var(--theme-color-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* (stats panel removed from hero — moved out to keep hero airy) */
.po-hero-stage__inner > * { width: 100%; }
.po-hero-stage__inner .po-eyebrow,
.po-hero-stage__inner .po-title,
.po-hero-stage__inner .po-subtitle,
.po-hero-stage__inner .po-hero__stats,
.po-hero-stage__inner .po-hero-stage__cta { width: auto; }
.po-hero-stage__inner > * { margin: 0; }
.po-hero-stage__inner .po-eyebrow { margin-bottom: 4px; }
.po-hero-stage__inner .po-title { margin: 4px 0 4px; }
.po-hero-stage__inner .po-hero__stats { margin-top: 10px; }
.po-hero-stage__cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Scroll cue at the bottom of the stage */
.po-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
  pointer-events: none;
}
.po-scroll-cue::after {
  content: "";
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,0));
  animation: po-scroll-cue 2s var(--po-ease) infinite;
}
@keyframes po-scroll-cue {
  0% { transform: translateY(-6px); opacity: 0; }
  40%, 60% { opacity: .8; }
  100% { transform: translateY(6px); opacity: 0; }
}

/* Light/dark variants for overlaid hero text */
.po-eyebrow--dark {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(8px);
}
.po-eyebrow--dark .dot { background: var(--theme-color3); box-shadow: 0 0 0 4px rgba(255,255,255,.18); }
.po-title--light {
  color: #fff !important;
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 500;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 18px rgba(5,11,32,.55);
}
.po-title--light .grad {
  color: #B9CBFF;
  font-weight: 700;
  text-shadow: 0 2px 22px rgba(64,95,242,.55), 0 0 32px rgba(64,95,242,.30);
}
.po-subtitle--light {
  color: rgba(255,255,255,.92);
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: 0;
  margin-inline: auto;     /* centred under the title */
  max-width: 640px;
  text-shadow: 0 1px 14px rgba(5,11,32,.55);
}

.po-hero__stats--light {
  justify-content: flex-start;
}
.po-hero__stats--light .po-hero__stat {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: #fff;
  backdrop-filter: blur(10px);
}
.po-hero__stats--light .po-hero__stat strong { color: #fff; }
.po-hero__stats--light .po-hero__stat span { color: rgba(255,255,255,.65); }

.po-btn--ghost-light {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  color: #fff;
  backdrop-filter: blur(10px);
}
.po-btn--ghost-light:hover {
  background: #fff;
  color: var(--theme-color-dark);
  border-color: #fff;
}

/* Composer placed directly under the description text, centered */
.po-hero-stage .po-hero__composer-wrap {
  margin: 14px auto 4px;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1218px;
}

/* Slider arrows pushed all the way to the edges of the hero */
.po-slider__nav--stage {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.po-slider__nav--stage:hover {
  transform: translateY(-50%) scale(1.06);
  background: var(--theme-color1);
  border-color: var(--theme-color1);
}
.po-slider__nav--stage.po-slider__nav--prev { left: 8px; right: auto; }
.po-slider__nav--stage.po-slider__nav--next { right: 8px; left: auto; }

/* Interactive enhancements on hero stats */
.po-hero__stats--light .po-hero__stat {
  cursor: default;
  transition: transform .25s var(--po-ease), border-color .25s var(--po-ease), background .25s var(--po-ease);
}
.po-hero__stats--light .po-hero__stat:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.32);
}

@media (max-width: 760px) {
  .po-hero-stage { min-height: auto; }
  .po-hero-stage__overlay {
    padding: 100px 0 40px;
    min-height: auto;
    gap: 30px;
  }
  .po-hero-stage__inner { gap: 18px; }
  .po-hero-stage .po-hero__composer-wrap { padding-bottom: 30px; }
  .po-slider__nav--stage.po-slider__nav--prev { left: 6px; }
  .po-slider__nav--stage.po-slider__nav--next { right: 6px; }
  .po-scroll-cue { display: none; }
}
.po-slider__viewport {
  position: relative;
  aspect-ratio: 21 / 10;
  overflow: hidden;
}
@media (max-width: 760px) { .po-slider__viewport { aspect-ratio: 4 / 5; } }
.po-slider__track {
  list-style: none;
  margin: 0; padding: 0;
  position: absolute; inset: 0;
}
.po-slider__slide {
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%) scale(1.02);
  transition: opacity .65s var(--po-ease), transform .8s var(--po-ease), visibility 0s linear .65s;
}
.po-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  transition: opacity .65s var(--po-ease), transform .8s var(--po-ease), visibility 0s linear 0s;
}
.po-slider__slide.is-leaving {
  opacity: 0;
  visibility: visible;
  transform: translateX(-100%) scale(1.02);
  transition: opacity .65s var(--po-ease), transform .8s var(--po-ease);
  pointer-events: none;          /* don't intercept clicks during exit */
}
.po-slider__slide.is-coming-back {
  transform: translateX(-100%) scale(1.02);
}
.po-slider__slide.is-leaving-right {
  opacity: 0;
  visibility: visible;
  transform: translateX(100%) scale(1.02);
  transition: opacity .65s var(--po-ease), transform .8s var(--po-ease);
  pointer-events: none;
}
/* arrows must always be on top and click-through to the button, even during animation */
.po-slider__nav { z-index: 10; }
.po-slider__nav--stage { z-index: 20; }
.po-slider__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.po-slider__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,11,32,.05) 0%, rgba(5,11,32,.75) 100%),
    linear-gradient(90deg, rgba(5,11,32,.75) 0%, rgba(5,11,32,0) 60%);
}
.po-slider__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 48px 56px;
  color: #fff;
  max-width: 640px;
}
@media (max-width: 760px) { .po-slider__caption { padding: 24px; } }
.po-slider__step {
  display: inline-flex;
  font-family: var(--title-font2);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3em;
  color: #fff;
  padding: 6px 14px;
  background: var(--theme-color1);
  border-radius: 999px;
}
.po-slider__title {
  font-family: var(--title-font);
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  color: #fff !important;
  margin: 16px 0 12px;
}
.po-slider__desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.82) !important;
  margin: 0 0 22px;
  max-width: 540px;
}
.po-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(5,11,32,.45);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  z-index: 3;
  display: grid; place-items: center;
  transition: background .2s var(--po-ease), transform .2s var(--po-ease);
}
.po-slider__nav:hover { background: var(--theme-color1); border-color: var(--theme-color1); transform: translateY(-50%) scale(1.08); }
.po-slider__nav--prev { left: 18px; }
.po-slider__nav--next { right: 18px; }
@media (max-width: 760px) { .po-slider__nav { width: 42px; height: 42px; } }

.po-slider__dots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 14px;
  background: var(--theme-color-light);
  border-top: 1px solid var(--po-border);
}
.po-slider__dot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 14px 16px 18px;
  border: 1px solid var(--po-border);
  background: var(--theme-color-light);
  border-radius: 12px;
  cursor: pointer;
  transition: all .25s var(--po-ease);
  overflow: hidden;
}
.po-slider__dot:hover { border-color: var(--theme-color1); transform: translateY(-2px); }
.po-slider__dot.is-active {
  background: var(--theme-color3);
  border-color: var(--theme-color1);
}
.po-slider__dot-step {
  display: block;
  font-family: var(--title-font2);
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--theme-color1);
  margin-bottom: 4px;
  font-weight: 700;
}
.po-slider__dot-title {
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.po-slider__dot-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: rgba(64,95,242,.10);
  overflow: hidden;
}
.po-slider__dot-bar span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--theme-color1);
  transform: translateX(-100%);
}
.po-slider__dot.is-active .po-slider__dot-bar span {
  animation: po-slider-bar 5s linear forwards;
}
@keyframes po-slider-bar {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}
@media (max-width: 760px) {
  .po-slider__dots { grid-template-columns: repeat(5, 1fr); gap: 4px; padding: 8px; }
  .po-slider__dot { padding: 8px 6px 12px; }
  .po-slider__dot-title { display: none; }
}
.po-nav__links {
  display: flex; gap: 4px; margin-left: auto;
  list-style: none; padding: 0;
}
.po-nav__links a {
  display: inline-flex; align-items: center;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--theme-color-dark);
  border-radius: 10px;
  transition: all .2s var(--po-ease);
}
.po-nav__links a:hover, .po-nav__links a.active {
  color: var(--theme-color1);
  background: var(--theme-color3);
}
.po-nav__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
/* Search toggle in the top nav — visually aligned with Konto / Košík buttons */
.po-nav__search-toggle {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid var(--po-border);
  background: var(--theme-color-light);
  color: var(--theme-color-dark);
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s var(--po-ease);
  padding: 0;
  line-height: 1;
}
.po-nav__search-toggle:hover {
  background: var(--theme-color1);
  border-color: var(--theme-color1);
  color: #fff;
  transform: translateY(-1px);
}
.po-nav__search-toggle[aria-expanded="true"] {
  background: var(--theme-color1);
  border-color: var(--theme-color1);
  color: #fff;
}

/* Full search overlay */
.po-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(5, 11, 32, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--po-ease);
  display: grid;
  place-items: start center;
  padding: 14vh 24px 24px;
}
.po-search-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.po-search-overlay__inner {
  width: min(720px, 92vw);
  display: grid;
  gap: 18px;
  transform: translateY(-12px);
  transition: transform .35s var(--po-ease);
}
.po-search-overlay.open .po-search-overlay__inner { transform: none; }

.po-search-overlay__form {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 22px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 30px 60px -20px rgba(5,11,32,.5);
}
.po-search-overlay__form > i.fa-magnifying-glass {
  color: var(--theme-color1);
  font-size: 18px;
}
.po-search-overlay__form input {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--text-font);
  font-size: 17px;
  color: var(--theme-color-dark);
  padding: 14px 0;
  width: 100%;
  min-width: 0;
}
.po-search-overlay__form input::placeholder { color: var(--text-color2); }
.po-search-overlay__close {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--po-border);
  background: var(--theme-color-light);
  color: var(--theme-color-dark);
  font-size: 18px;
  cursor: pointer;
  display: grid; place-items: center;
  transition: all .2s var(--po-ease);
}
.po-search-overlay__close:hover { background: var(--theme-color-dark); color: #fff; border-color: var(--theme-color-dark); }

.po-search-overlay__hints {
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center;
  padding: 0 12px;
}
.po-search-overlay__chip {
  display: inline-flex;
  padding: 8px 14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s var(--po-ease);
}
.po-search-overlay__chip:hover {
  background: var(--theme-color1);
  border-color: var(--theme-color1);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .po-search-overlay__form {
    grid-template-columns: 1fr auto;
    border-radius: 18px;
    padding: 14px;
  }
  .po-search-overlay__form > i.fa-magnifying-glass { display: none; }
  .po-search-overlay__form input { font-size: 15px; padding: 8px 0; grid-column: 1 / -1; }
}

.po-burger {
  display: none;
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--po-border);
  background: var(--theme-color-light);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.po-burger span { display: block; width: 18px; height: 2px; background: var(--theme-color-dark); position: relative; }
.po-burger span::before, .po-burger span::after {
  content:""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--theme-color-dark);
}
.po-burger span::before { top: -6px; }
.po-burger span::after { top: 6px; }

@media (max-width: 1100px) {
  .po-nav__links { display: none; }
  .po-burger { display: inline-flex; }
}

.po-mobile-menu {
  position: fixed; inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 200;
  padding: 100px 30px;
  transform: translateY(-110%);
  transition: transform .35s var(--po-ease);
  overflow-y: auto;
}
.po-mobile-menu.open { transform: translateY(0); }
.po-mobile-menu ul { list-style: none; padding: 0; }
.po-mobile-menu a {
  display: block; padding: 16px 18px;
  font-size: 20px;
  font-family: var(--title-font);
  font-weight: 500;
  border-bottom: 1px solid var(--po-border);
  color: var(--theme-color-dark);
}
.po-mobile-close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--po-border);
  background: var(--theme-color-light);
  color: var(--theme-color-dark); font-size: 22px;
  cursor: pointer;
}

/* ---------- buttons (modelled on .btn-one) ---------- */
.po-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-family: var(--text-font);
  font-size: 15px;
  font-weight: 500;
  border-radius: 12px;
  border: 1px solid var(--po-border);
  background: var(--theme-color-light);
  color: var(--theme-color-dark);
  cursor: pointer;
  transition: transform .25s var(--po-ease), box-shadow .25s var(--po-ease), background .25s var(--po-ease), color .25s var(--po-ease), border-color .25s var(--po-ease);
  text-decoration: none;
  white-space: nowrap;
}
.po-btn:hover {
  transform: translateY(-2px);
  background: var(--theme-color-dark);
  color: var(--theme-color-light);
  border-color: var(--theme-color-dark);
}
.po-btn--primary {
  background: var(--theme-color1);
  border-color: var(--theme-color1);
  color: var(--theme-color-light);
}
.po-btn--primary:hover {
  background: var(--theme-color-dark);
  color: var(--theme-color-light);
  border-color: var(--theme-color-dark);
  box-shadow: 0 14px 30px -12px rgba(64,95,242,.55);
}
.po-btn--ghost {
  background: transparent;
}
.po-btn--ghost:hover {
  background: var(--theme-color-dark);
  color: var(--theme-color-light);
}
.po-btn--lg { padding: 17px 30px; font-size: 16px; border-radius: 14px; }
.po-btn .arrow { transition: transform .25s var(--po-ease); }
.po-btn:hover .arrow { transform: translateX(4px); }
.po-section--dark .po-btn {
  background: rgba(255,255,255,.08);
  color: var(--theme-color-light);
  border-color: rgba(255,255,255,.16);
}
.po-section--dark .po-btn:hover {
  background: var(--theme-color1);
  border-color: var(--theme-color1);
}

/* ---------- card with cover image (category cards) ---------- */
.po-card--cover {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: var(--theme-color-dark);
  isolation: isolate;
}
.po-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .55s var(--po-ease);
}
.po-card--cover:hover .po-card__img { transform: scale(1.06); }
.po-card__content { padding: 24px 26px 28px; }
.po-card__content .po-tag { display: inline-block; margin-bottom: 14px; }
.po-card__title {
  font-family: var(--title-font);
  font-size: var(--h5-font-size);
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--theme-color-dark);
}
.po-card__desc {
  font-size: 14px;
  line-height: 22px;
  color: var(--text-color2);
  margin: 0 0 16px;
}

/* ---------- card ---------- */
.po-card {
  position: relative;
  background: var(--theme-color-light);
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius);
  padding: 28px;
  box-shadow: var(--po-shadow-card);
  overflow: hidden;
  transition: transform .35s var(--po-ease), border-color .35s var(--po-ease), box-shadow .35s var(--po-ease);
}
.po-card:hover {
  transform: translateY(-4px);
  border-color: var(--theme-color1);
  box-shadow: var(--po-shadow-hover);
}
.po-card__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 0%), rgba(64,95,242,.10), transparent 60%);
  opacity: 0;
  transition: opacity .35s var(--po-ease);
  border-radius: inherit;
}
.po-card:hover .po-card__glow { opacity: 1; }

.po-section--cream .po-card { background: var(--theme-color-light); }
.po-section--dark .po-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
}

/* ---------- hero ---------- */
.po-hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: var(--theme-color3);
}
.po-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(64,95,242,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64,95,242,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  z-index: 0;
  opacity: .8;
}
.po-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) { .po-hero__inner { grid-template-columns: 1fr; gap: 40px; } }

.po-hero__stats {
  display: flex; gap: 22px; margin-top: 36px; flex-wrap: wrap;
}
.po-hero__stat {
  padding: 16px 22px;
  background: var(--theme-color-light);
  border: 1px solid var(--po-border);
  border-radius: 14px;
  min-width: 140px;
}
.po-hero__stat strong {
  display: block;
  font-family: var(--title-font);
  font-size: var(--h3-font-size); /* 30px */
  font-weight: var(--h3-font-weight); /* 400 */
  color: var(--theme-color-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.po-hero__stat span {
  font-size: var(--sec-title-subtitle-font-size); /* 14px */
  color: var(--text-color2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: var(--sec-title-subtitle-font-weight);
}

/* tire visual */
.po-tire {
  position: relative;
  aspect-ratio: 1;
  max-width: 520px;
  margin-inline: auto;
}
.po-tire__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(64,95,242,.45);
  animation: po-rotate 30s linear infinite;
}
.po-tire__ring--2 { inset: 8%; border-color: rgba(0,182,122,.45); animation-duration: 22s; animation-direction: reverse; }
.po-tire__ring--3 { inset: 18%; border-color: rgba(5,11,32,.20); animation-duration: 40s; }
.po-tire__core {
  position: absolute; inset: 26%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.6), transparent 55%),
    radial-gradient(circle at 50% 50%, #1b2347, #050B20 75%);
  box-shadow: 0 30px 80px -20px rgba(64,95,242,.45), inset 0 0 0 10px rgba(255,255,255,.04);
}
.po-tire__hub {
  position: absolute; inset: 38%;
  border-radius: 50%;
  background: var(--theme-color1);
  box-shadow: 0 0 60px 4px rgba(64,95,242,.45);
}
.po-tire__spoke {
  position: absolute; left: 50%; top: 50%;
  width: 4px; height: 28%;
  transform-origin: bottom center;
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,0));
  border-radius: 4px;
  margin-left: -2px; margin-top: -28%;
  opacity: .7;
}
@keyframes po-rotate { to { transform: rotate(360deg); } }

.po-floater {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--theme-color-light);
  border: 1px solid var(--po-border);
  border-radius: 16px;
  box-shadow: var(--po-shadow-card);
  font-size: 13px;
  animation: po-float 6s ease-in-out infinite;
}
.po-floater .ico {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: var(--theme-color1);
  color: #fff; font-weight: 700; font-size: 14px;
}
.po-floater--a { top: 6%; left: -8%; animation-delay: 0s; }
.po-floater--b { bottom: 14%; left: -4%; animation-delay: 1.5s; }
.po-floater--c { top: 22%; right: -8%; animation-delay: 3s; }
.po-floater--d { bottom: 6%; right: 6%; animation-delay: 4.5s; }
.po-floater strong { color: var(--theme-color-dark); font-weight: 600; }
.po-floater small { color: var(--text-color2); }
@keyframes po-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- search composer · pill style ---------- */
.po-hero__composer-wrap {
  position: relative;
  z-index: 2;
  margin-top: 50px;
}
.po-composer {
  padding: 6px 6px 6px 22px;
  background: var(--theme-color-light);
  border: 1px solid var(--po-border);
  border-radius: 999px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr)) auto;
  gap: 0;
  box-shadow: 0 18px 50px -20px rgba(5, 11, 32, 0.18);
  width: 100%;
  align-items: center;
}
.po-composer__field {
  position: relative;
  display: block;
  padding: 12px 22px;
  background: transparent;
  border: none;
  border-radius: 0;
  min-width: 0;
}
/* Thin vertical divider between fields (using ::before) */
.po-composer__field + .po-composer__field::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 36px;
  width: 1px;
  background: rgba(5, 11, 32, 0.10);
}
.po-composer__field:first-child { padding-left: 0; }
.po-composer__label {
  display: none; /* labels replaced by inline placeholder-style first option */
}
.po-composer__field select,
.po-composer__field input {
  background: transparent; border: 0; outline: 0;
  color: var(--theme-color-dark);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--text-font);
  width: 100%;
  min-width: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding: 0 20px 0 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%23050B20' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.po-composer__field option { background: var(--theme-color-light); color: var(--theme-color-dark); }
/* Placeholder-styled first option shown until user picks a value */
.po-composer__field select:has(option[selected][hidden]:checked) {
  color: var(--text-color2);
  font-weight: 500;
}
.po-composer__submit {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  padding: 0;
  justify-content: center;
  align-self: center;
  font-size: 16px;
  margin-left: 6px;
}
.po-composer__submit i { margin: 0; }


@media (max-width: 1240px) {
  .po-composer {
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    border-radius: 28px;
    padding: 10px 14px;
    gap: 4px 0;
  }
}
@media (max-width: 720px) {
  .po-composer { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 22px; }
  .po-composer__field + .po-composer__field::before { display: none; }
  .po-composer__field { border-top: 1px solid rgba(5,11,32,.06); padding: 12px 14px; }
  .po-composer__field:nth-child(-n+2) { border-top: none; }
  .po-composer__submit { grid-column: 1 / -1; width: 100%; height: 50px; border-radius: 999px; margin: 6px 0 0; }
}
@media (max-width: 640px) {
  .po-composer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- products ---------- */
.po-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.po-prod {
  position: relative;
  padding: 22px;
  border-radius: var(--po-radius);
  background: var(--theme-color-light);
  border: 1px solid var(--po-border);
  overflow: hidden;
  transition: transform .35s var(--po-ease), border-color .35s var(--po-ease), box-shadow .35s var(--po-ease);
  box-shadow: var(--po-shadow-card);
}
.po-prod:hover { transform: translateY(-4px); border-color: var(--theme-color1); box-shadow: var(--po-shadow-hover); }
.po-prod__tag {
  position: absolute; top: 14px; right: 14px;
  padding: 5px 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--theme-color1);
  color: #fff;
  border-radius: 999px;
  z-index: 2;
}
.po-prod__visual {
  width: 100%; aspect-ratio: 1; border-radius: 14px;
  background: var(--theme-color3);
  display: grid; place-items: center;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  padding: 12%;
}
.po-prod__visual img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  transition: transform .5s var(--po-ease);
}
.po-prod:hover .po-prod__visual img { transform: scale(1.05); }

/* ---------- luxury car service gallery ---------- */
.po-lux {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 16px;
  margin-top: 30px;
}
.po-lux__item {
  position: relative;
  border-radius: var(--po-radius);
  overflow: hidden;
  box-shadow: var(--po-shadow-card);
  cursor: pointer;
  isolation: isolate;
}
.po-lux__item:nth-child(1) { grid-row: span 2; }
.po-lux__item:nth-child(2) { grid-column: 2; grid-row: 1; }
.po-lux__item:nth-child(3) { grid-column: 3; grid-row: 1; }
.po-lux__item:nth-child(4) { grid-column: 2; grid-row: 2; }
.po-lux__item:nth-child(5) { grid-column: 3; grid-row: 2; }
.po-lux__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--po-ease), filter .5s var(--po-ease);
  filter: saturate(.95) contrast(1.05);
}
.po-lux__item:hover img { transform: scale(1.06); filter: saturate(1.1) contrast(1.05); }
.po-lux__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,11,32,0) 30%, rgba(5,11,32,.85) 100%);
  pointer-events: none;
}
.po-lux__cap {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  color: #fff;
  z-index: 2;
}
.po-lux__brand {
  display: inline-block;
  font-family: var(--title-font2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
  padding: 4px 12px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  margin-bottom: 8px;
}
.po-lux__title {
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}
.po-lux__item:nth-child(1) .po-lux__title { font-size: 24px; }
.po-lux__sub {
  font-size: 13px;
  color: rgba(255,255,255,.78);
  margin-top: 4px;
}
@media (max-width: 880px) {
  .po-lux {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
    gap: 12px;
  }
  .po-lux__item:nth-child(1) { grid-column: 1 / -1; grid-row: 1; }
  .po-lux__item:nth-child(2) { grid-column: 1; grid-row: 2; }
  .po-lux__item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .po-lux__item:nth-child(4) { grid-column: 1; grid-row: 3; }
  .po-lux__item:nth-child(5) { grid-column: 2; grid-row: 3; }
}
.po-prod h3 {
  font-size: var(--h6-font-size); /* 20px */
  font-weight: var(--h6-font-weight); /* 400 */
  margin: 0 0 6px;
  color: var(--theme-color-dark);
  letter-spacing: -0.01em;
}
.po-prod__meta { font-size: 14px; color: var(--text-color2); margin-bottom: 14px; line-height: 22px; }
.po-prod__price {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--title-font);
  font-weight: 700;
}
.po-prod__price strong { font-size: 22px; color: var(--theme-color-dark); }
.po-prod__price s { color: var(--text-color2); font-size: 13px; font-weight: 400; }
.po-prod__row { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.po-prod__add {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--po-border);
  background: var(--theme-color-light);
  color: var(--theme-color-dark); cursor: pointer;
  display: grid; place-items: center;
  transition: all .2s var(--po-ease);
}
.po-prod__add:hover { background: var(--theme-color1); border-color: var(--theme-color1); color: #fff; transform: scale(1.08); }

/* ---------- features ---------- */
.po-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.po-feature {
  padding: 28px;
  background: var(--theme-color-light);
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--po-ease), border-color .35s var(--po-ease), box-shadow .35s var(--po-ease);
  box-shadow: var(--po-shadow-card);
}
.po-feature:hover { transform: translateY(-4px); border-color: var(--theme-color1); box-shadow: var(--po-shadow-hover); }
.po-feature__ico {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--theme-color3);
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: var(--theme-color1);
  font-size: 24px;
}
.po-feature h3 {
  font-size: var(--h5-font-size); /* 22px */
  font-weight: var(--h5-font-weight); /* 400 */
  margin: 0 0 10px;
  color: var(--theme-color-dark);
}

/* Feature with cover image at the top */
.po-feature--img {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.po-feature--img > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .55s var(--po-ease);
}
.po-feature--img:hover > img { transform: scale(1.06); }
.po-feature__body { padding: 24px 26px 28px; }
.po-feature--img .po-feature__ico { margin-top: -42px; background: var(--theme-color-light); box-shadow: 0 8px 22px -10px rgba(5,11,32,.25); }
.po-feature p {
  font-size: var(--body-font-size);
  color: var(--text-color2);
  margin: 0;
  line-height: var(--body-line-height);
}

/* ---------- split ---------- */
.po-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 900px) { .po-split { grid-template-columns: 1fr; gap: 40px; } }

.po-checklist { list-style: none; padding: 0; margin: 22px 0; }
.po-checklist li {
  position: relative;
  padding: 12px 0 12px 38px;
  border-bottom: 1px dashed var(--po-border);
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.55;
}
.po-checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--theme-color2);
}
.po-checklist li::after {
  content: "";
  position: absolute;
  left: 7px; top: 20px;
  width: 9px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* ---------- stats strip ---------- */
.po-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 40px;
  background: var(--theme-color-dark);
  border-radius: var(--po-radius-lg);
  color: var(--theme-color-light);
}
.po-strip__item { text-align: center; }
.po-strip__item strong {
  display: block;
  font-family: var(--title-font);
  font-size: var(--h2-font-size); /* 40px */
  color: var(--theme-color-light);
  letter-spacing: -.02em;
  font-weight: var(--h2-font-weight); /* 400 */
  line-height: 1.1;
}
.po-strip__item span {
  font-size: var(--sec-title-subtitle-font-size);
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: var(--sec-title-subtitle-font-weight);
}

/* ---------- testimonials ---------- */
.po-quote {
  padding: 32px;
  background: var(--theme-color-light);
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius);
  position: relative;
  box-shadow: var(--po-shadow-card);
}
.po-quote::before {
  content: "";
  position: absolute;
  top: 24px; right: 24px;
  width: 32px; height: 32px;
  background: var(--theme-color1);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 17h3l2-4V7H5v6h3zm8 0h3l2-4V7h-6v6h3z'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 17h3l2-4V7H5v6h3zm8 0h3l2-4V7h-6v6h3z'/></svg>") center/contain no-repeat;
  opacity: .25;
}
.po-quote p {
  color: var(--theme-color-dark);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  margin: 0 0 18px;
  font-weight: var(--body-font-weight);
}
.po-quote__who { display: flex; align-items: center; gap: 14px; }
.po-quote__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--theme-color1);
  display: grid; place-items: center;
  font-family: var(--title-font); font-weight: 700; color: #fff;
}
.po-quote__name { font-weight: 600; color: var(--theme-color-dark); font-size: 15px; }
.po-quote__role { font-size: 13px; color: var(--text-color2); }

/* ---------- timeline ---------- */
.po-timeline { position: relative; padding-left: 24px; }
.po-timeline::before {
  content: "";
  position: absolute; left: 6px; top: 6px; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--theme-color1), var(--theme-color2), transparent);
}
.po-timeline__item { padding: 8px 0 24px 18px; position: relative; }
.po-timeline__item::before {
  content: "";
  position: absolute;
  left: -22px; top: 14px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--theme-color1);
  box-shadow: 0 0 0 4px var(--theme-color-light), 0 0 0 5px var(--theme-color1);
}
.po-timeline__year {
  font-family: var(--title-font);
  font-weight: var(--h6-font-weight);
  color: var(--theme-color-dark);
  font-size: var(--h6-font-size); /* 20px */
}
.po-timeline__text { color: var(--text-color2); margin: 4px 0 0; font-size: 14px; line-height: 22px; }

/* ---------- forms ---------- */
.po-form { display: grid; gap: 16px; }
.po-input, .po-form select, .po-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--theme-color-light);
  border: 1px solid var(--po-border);
  border-radius: 12px;
  color: var(--theme-color-dark);
  font-size: 15px;
  font-family: var(--text-font);
  transition: border-color .2s var(--po-ease), background .2s var(--po-ease);
}
.po-input::placeholder { color: var(--text-color2); }
.po-input:focus, .po-form select:focus, .po-form textarea:focus {
  outline: none;
  border-color: var(--theme-color1);
  box-shadow: 0 0 0 4px rgba(64,95,242,.10);
}
.po-form textarea { min-height: 140px; resize: vertical; }
.po-form label {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-color2);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.po-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 700px) { .po-form-row { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.po-footer {
  margin-top: 100px;
  padding: 80px 0 30px;
  background: var(--theme-color-dark);
  color: var(--theme-color-light);
}
.po-footer .po-logo { color: var(--theme-color-light); }
.po-footer .po-logo__text small { color: rgba(255,255,255,.5); }
.po-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) { .po-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 540px) { .po-footer__grid { grid-template-columns: 1fr; } }

.po-footer h4 {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--theme-color-light);
  margin-bottom: 22px;
  font-weight: 700;
  font-family: var(--text-font);
}
.po-footer ul { list-style: none; padding: 0; margin: 0; }
.po-footer ul li { margin-bottom: 10px; font-size: 15px; }
.po-footer ul a { color: rgba(255,255,255,.6); }
.po-footer ul a:hover { color: var(--theme-color-light); }
.po-footer__bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: rgba(255,255,255,.5);
  gap: 20px; flex-wrap: wrap;
}
.po-socials { display: flex; gap: 10px; }
.po-socials a {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  color: rgba(255,255,255,.75);
  transition: all .2s var(--po-ease);
}
.po-socials a:hover { background: var(--theme-color1); color: #fff; transform: translateY(-3px); }

/* ---------- breadcrumb hero ---------- */
.po-page-hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
  background: var(--theme-color3);
  border-bottom: 1px solid var(--po-border);
}
.po-page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(64,95,242,.10), transparent 70%),
    radial-gradient(400px 280px at 10% 100%, rgba(0,182,122,.08), transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.po-page-hero__inner { position: relative; z-index: 2; }

/* Cover image variant — Pexels hero photo behind title */
.po-page-hero--cover {
  padding: 160px 0 110px;
  background: var(--theme-color-dark);
  border-bottom: none;
}
.po-page-hero--cover::before { display: none; }
.po-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.po-page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: po-cover-drift 22s var(--po-ease) infinite alternate;
}
@keyframes po-cover-drift {
  from { transform: scale(1.05) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1.5%, -1%); }
}
.po-page-hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,11,32,.30) 0%, rgba(5,11,32,.65) 100%),
    linear-gradient(120deg, rgba(5,11,32,.55) 0%, rgba(5,11,32,.15) 60%);
}
.po-page-hero--cover .po-crumb { color: rgba(255,255,255,.7); }
.po-page-hero--cover .po-crumb a { color: rgba(255,255,255,.85); }
.po-page-hero--cover .po-crumb a:hover { color: #fff; }
.po-page-hero--cover .po-crumb span { color: rgba(255,255,255,.5); }
.po-crumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--text-color2);
  margin-bottom: 14px;
  font-weight: 500;
}
.po-crumb a { color: var(--text-color); }
.po-crumb a:hover { color: var(--theme-color1); }

/* ---------- shop layout / filter ---------- */
.po-shop-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
}
@media (max-width: 880px) { .po-shop-layout { grid-template-columns: 1fr; } }

.po-filter {
  position: sticky; top: 110px;
  padding: 26px;
  background: var(--theme-color-light);
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius);
  box-shadow: var(--po-shadow-card);
}
.po-filter h4 {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-color2);
  margin: 22px 0 12px;
  font-weight: 700;
}
.po-filter h4:first-child { margin-top: 0; }
.po-pill-row { display: flex; flex-wrap: wrap; gap: 6px; }
.po-pill {
  padding: 6px 12px; font-size: 13px; border-radius: 999px;
  background: var(--theme-color3); border: 1px solid var(--po-border);
  color: var(--theme-color-dark); cursor: pointer;
  transition: all .2s var(--po-ease);
  font-weight: 500;
}
.po-pill:hover, .po-pill.active { background: var(--theme-color1); border-color: var(--theme-color1); color: #fff; }

/* ---------- table ---------- */
.po-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--theme-color-light); border: 1px solid var(--po-border);
  border-radius: var(--po-radius); overflow: hidden;
}
.po-table th, .po-table td {
  padding: 16px 20px; text-align: left;
  border-bottom: 1px solid var(--po-border);
  color: var(--theme-color-dark);
  font-size: 15px;
}
.po-table th { background: var(--theme-color3); color: var(--theme-color-dark); font-weight: 700; }
.po-table tr:last-child td { border-bottom: none; }

/* ---------- doc page ---------- */
.po-doc {
  background: var(--theme-color-light);
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius-lg);
  padding: 56px;
  box-shadow: var(--po-shadow-card);
}
.po-doc h2 {
  font-size: var(--h3-font-size); /* 30px */
  margin: 40px 0 16px;
  font-weight: var(--h3-font-weight);
  color: var(--theme-color-dark);
}
.po-doc h2:first-child { margin-top: 0; }
.po-doc h3 {
  font-size: var(--h5-font-size); /* 22px */
  margin: 24px 0 10px;
  font-weight: var(--h5-font-weight);
}
.po-doc p, .po-doc li {
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  color: var(--text-color);
}
.po-doc ul { padding-left: 22px; margin: 12px 0; }
.po-doc ul li { margin-bottom: 6px; }
.po-doc strong { color: var(--theme-color-dark); font-weight: 700; }
.po-doc a { color: var(--theme-color1); text-decoration: underline; }
@media (max-width: 700px) { .po-doc { padding: 28px; } }

/* ---------- reveal animations (template-style scroll-triggered) ---------- */
.po-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--po-ease), transform .8s var(--po-ease);
}
.po-reveal.in { opacity: 1; transform: none; }

/* Variants — direction of entry, attached to a parent po-reveal */
.po-reveal--left  { transform: translateX(-50px); }
.po-reveal--right { transform: translateX(50px); }
.po-reveal--scale { transform: scale(.92); }
.po-reveal--blur  { transform: translateY(20px); filter: blur(6px); transition: opacity .8s var(--po-ease), transform .8s var(--po-ease), filter .8s var(--po-ease); }
.po-reveal--left.in,
.po-reveal--right.in,
.po-reveal--scale.in,
.po-reveal--blur.in   { transform: none; filter: none; }

/* Stagger children: each direct child gets a +60ms delay (up to 8) */
.po-stagger > * { transition-delay: 0s; }
.po-stagger.in > *:nth-child(1) { transition-delay: 60ms; }
.po-stagger.in > *:nth-child(2) { transition-delay: 120ms; }
.po-stagger.in > *:nth-child(3) { transition-delay: 180ms; }
.po-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.po-stagger.in > *:nth-child(5) { transition-delay: 300ms; }
.po-stagger.in > *:nth-child(6) { transition-delay: 360ms; }
.po-stagger.in > *:nth-child(7) { transition-delay: 420ms; }
.po-stagger.in > *:nth-child(8) { transition-delay: 480ms; }
.po-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s var(--po-ease), transform .65s var(--po-ease);
}
.po-stagger.in > * { opacity: 1; transform: none; }

/* Smooth section-to-section scroll snap (subtle, doesn't trap) */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- page transition ----------
   IMPORTANT: <body> must never use `transform`, `filter`, `perspective`,
   `backdrop-filter`, `will-change: transform`, or `contain: paint/layout`.
   Any of those create a new containing block and break `position: fixed`
   for descendants (the Pneo chatbot, search overlay). Use only `opacity`. */
@keyframes po-page-enter {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes po-page-leave {
  from { opacity: 1; }
  to   { opacity: 0; }
}
body { animation: po-page-enter .35s var(--po-ease) both; }
body.po-page-out { animation: po-page-leave .22s var(--po-ease) forwards; }

@media (prefers-reduced-motion: reduce) {
  body, body.po-page-out { animation: none; opacity: 1; }
  .po-reveal { transition: none; transform: none; opacity: 1; }
  .animated { animation: none !important; }
}

/* The WOW.js library applies `.animated` + an animate.css class; ensure it
   plays nicely with our colour scheme by keeping default animate.css timing. */
.wow { visibility: hidden; }
.wow.animated { visibility: visible; }

/* ---------- Pneo launcher + chat panel ---------- */
.po-bot {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: auto;            /* explicit — never anchor to the left */
  z-index: 9000;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 22px 10px 10px;
  background: var(--theme-color-light);
  border: 1px solid var(--po-border);
  border-radius: 999px;
  box-shadow: 0 14px 32px -10px rgba(5,11,32,.28);
  cursor: pointer;
  transition: transform .25s var(--po-ease), box-shadow .25s var(--po-ease);
  font-family: var(--text-font);
  text-align: left;
}
.po-bot:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(64,95,242,.35); }
.po-bot__dot {
  position: relative;
  width: 44px; height: 44px; border-radius: 50%;
  background: transparent;
  display: grid; place-items: center;
  overflow: visible;
}
.po-bot__avatar-img {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 50%;
  box-shadow: 0 6px 14px -4px rgba(5,11,32,.4);
  animation: po-bot-spin 18s linear infinite;
}
@keyframes po-bot-spin { to { transform: rotate(360deg); } }
.po-bot__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--theme-color1);
  opacity: 0;
  animation: po-bot-pulse 2.4s ease-out infinite;
}
@keyframes po-bot-pulse {
  0% { transform: scale(.85); opacity: .6; }
  100% { transform: scale(1.35); opacity: 0; }
}
.po-bot__txt { font-size: 13px; color: var(--theme-color-dark); line-height: 1.3; }
.po-bot__txt strong { display: block; font-weight: 700; font-size: 14px; }
.po-bot__txt small { color: var(--text-color2); }
@media (max-width: 540px) { .po-bot__txt { display: none; } .po-bot { padding: 8px; } }

.po-chat {
  position: fixed;
  right: 24px;
  left: auto;            /* explicit — anchored to the right edge */
  bottom: 96px;
  width: min(380px, calc(100vw - 32px));
  height: min(580px, calc(100vh - 140px));
  z-index: 9001;
  background: var(--theme-color-light);
  border: 1px solid var(--po-border);
  border-radius: 22px;
  box-shadow: 0 30px 60px -20px rgba(5,11,32,.40);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  opacity: 0;
  transform: translateY(16px) scale(.98);
  pointer-events: none;
  transition: opacity .25s var(--po-ease), transform .35s var(--po-ease);
  overflow: hidden;
  font-family: var(--text-font);
}
.po-chat.open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.po-chat__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--theme-color1) 0%, #2C49D9 100%);
  color: #fff;
}
.po-chat__who { display: flex; align-items: center; gap: 12px; }
.po-chat__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid; place-items: center;
  overflow: hidden;
  padding: 2px;
}
.po-chat__avatar img {
  width: 100%; height: 100%; display: block;
}
.po-chat__who strong { display: block; font-family: var(--title-font); font-weight: 600; font-size: 16px; }
.po-chat__who small { font-size: 12px; opacity: .85; display: flex; align-items: center; gap: 6px; }
.po-chat__status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2EE3A3;
  box-shadow: 0 0 0 3px rgba(46,227,163,.25);
  display: inline-block;
}
.po-chat__head-actions { display: flex; gap: 8px; align-items: center; }
.po-chat__close,
.po-chat__back {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s var(--po-ease), transform .2s var(--po-ease);
  font-size: 12px;
}
.po-chat__close:hover,
.po-chat__back:hover { background: rgba(255,255,255,.22); }
.po-chat__back:hover { transform: translateX(-2px); }

.po-chat__body {
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--theme-color3);
}
.po-chat__msg {
  display: flex; flex-direction: column;
  max-width: 85%;
  gap: 4px;
}
.po-chat__msg--bot { align-self: flex-start; }
.po-chat__msg--user { align-self: flex-end; align-items: flex-end; }
.po-chat__bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 21px;
  color: var(--theme-color-dark);
  background: #fff;
  border: 1px solid var(--po-border);
}
.po-chat__bubble a { color: var(--theme-color1); text-decoration: underline; font-weight: 600; }
.po-chat__msg--bot .po-chat__bubble { border-bottom-left-radius: 4px; }
.po-chat__msg--user .po-chat__bubble {
  background: var(--theme-color1);
  border-color: var(--theme-color1);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.po-chat__msg--user .po-chat__bubble a { color: #fff; }
.po-chat__time { font-size: 11px; color: var(--text-color2); padding: 0 6px; }

.po-chat__chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 4px;
}
.po-chat__chip {
  padding: 8px 12px;
  font-size: 12.5px;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--po-border);
  border-radius: 999px;
  color: var(--theme-color-dark);
  cursor: pointer;
  transition: all .2s var(--po-ease);
  font-family: var(--text-font);
}
.po-chat__chip:hover { background: var(--theme-color1); border-color: var(--theme-color1); color: #fff; }

/* Wide bubble for recommendation table */
.po-chat__msg--wide { max-width: 100%; }
.po-chat__msg--wide .po-chat__bubble { padding: 14px; }
.po-chat__recs { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.po-chat__rec {
  display: grid;
  grid-template-columns: auto 36px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--theme-color3);
  border: 1px solid var(--po-border);
  border-radius: 12px;
  transition: border-color .2s var(--po-ease), transform .2s var(--po-ease);
}
.po-chat__rec:hover { border-color: var(--theme-color1); transform: translateX(-2px); }
.po-chat__rec-rank { font-size: 22px; line-height: 1; }
.po-chat__rec-disk { width: 36px; height: 36px; border-radius: 50%; }
.po-chat__rec-body strong { display: block; color: var(--theme-color-dark); font-size: 13px; font-weight: 700; }
.po-chat__rec-body small { display: block; color: var(--text-color2); font-size: 11.5px; margin-top: 2px; }
.po-chat__rec-price {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--theme-color1);
  white-space: nowrap;
}

.po-chat__typing {
  display: inline-flex; gap: 4px; padding: 14px 16px;
}
.po-chat__typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-color2);
  animation: po-typing 1.2s ease-in-out infinite;
}
.po-chat__typing span:nth-child(2) { animation-delay: .15s; }
.po-chat__typing span:nth-child(3) { animation-delay: .30s; }
@keyframes po-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.po-chat__form {
  display: grid; grid-template-columns: 1fr auto;
  gap: 8px; padding: 12px;
  background: #fff;
  border-top: 1px solid var(--po-border);
}
.po-chat__input {
  padding: 12px 14px;
  background: var(--theme-color3);
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--text-font);
  font-size: 14px;
  color: var(--theme-color-dark);
  outline: none;
  transition: border-color .2s var(--po-ease), background .2s var(--po-ease);
}
.po-chat__input:focus { border-color: var(--theme-color1); background: #fff; }
.po-chat__send {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--theme-color1);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  font-size: 14px;
  transition: transform .2s var(--po-ease), background .2s var(--po-ease);
}
.po-chat__send:hover { background: #2C49D9; transform: scale(1.06); }

.po-chat__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: var(--theme-color3);
  border-top: 1px solid var(--po-border);
  font-size: 11px;
  color: var(--text-color2);
}
.po-chat__foot i { color: var(--theme-color2); margin-right: 4px; }
.po-chat__foot a { color: var(--theme-color1); text-decoration: none; font-weight: 600; }
.po-chat__foot a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .po-chat { right: 8px; left: 8px; width: auto; bottom: 80px; }
}

/* ---------- quick category cards ---------- */
.po-quick-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .po-quick-cats { grid-template-columns: 1fr; } }
.po-quick-cat {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: var(--theme-color-light);
  border: 1px solid var(--po-border);
  border-radius: 18px;
  text-decoration: none;
  color: var(--theme-color-dark);
  transition: transform .25s var(--po-ease), border-color .25s var(--po-ease), box-shadow .25s var(--po-ease);
}
.po-quick-cat:hover {
  transform: translateY(-3px);
  border-color: var(--theme-color1);
  box-shadow: 0 18px 40px -20px rgba(64,95,242,.35);
}
.po-quick-cat__ico {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--theme-color3);
  color: var(--theme-color1);
  display: grid; place-items: center;
  font-size: 20px;
}
.po-quick-cat strong {
  display: block;
  font-family: var(--title-font);
  font-size: var(--h5-font-size);
  font-weight: 500;
  color: var(--theme-color-dark);
  letter-spacing: -0.01em;
}
.po-quick-cat small {
  display: block;
  font-size: 14px;
  color: var(--text-color2);
  margin-top: 2px;
}
.po-quick-cat__arrow {
  font-family: var(--title-font);
  font-size: 22px;
  color: var(--theme-color1);
  transition: transform .25s var(--po-ease);
}
.po-quick-cat:hover .po-quick-cat__arrow { transform: translateX(6px); }

/* ============== CART ============== */
/* Badge on the "Košík" link in the header */
.po-cart-badge {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  margin-left: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--theme-color1);
  background: #fff;
  border-radius: 999px;
  line-height: 1;
}
a[href="/kosik"].has-items { box-shadow: 0 0 0 2px rgba(255,255,255,.3) inset; }

/* Toast on add-to-cart */
.po-cart-toasts {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 8800;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  width: 320px;
  max-width: calc(100vw - 32px);
}
.po-cart-toast {
  pointer-events: auto;
  display: block;
  padding: 0;
  background: #fff;
  border: 1px solid var(--po-border);
  border-radius: 16px;
  box-shadow: 0 14px 36px -16px rgba(5,11,32,.3);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .3s var(--po-ease), transform .3s var(--po-ease);
  font-family: var(--text-font);
  overflow: hidden;
}
.po-cart-toast.in { opacity: 1; transform: none; }
.po-cart-toast__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}
.po-cart-toast__ico { font-size: 22px; }
.po-cart-toast__body strong { display: block; color: var(--theme-color-dark); font-weight: 700; font-size: 14px; }
.po-cart-toast__body small { display: block; color: var(--text-color2); font-size: 12px; margin-top: 2px; }
.po-cart-toast__cta {
  padding: 8px 14px;
  background: var(--theme-color1);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.po-cart-toast__cta:hover { background: var(--theme-color-dark); color: #fff; }

/* Service add-on offer inside the toast */
.po-cart-toast__addon {
  border-top: 1px solid var(--po-border);
  background: var(--theme-color3);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
}
.po-cart-toast__addon-ico {
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  display: block;
}
.po-cart-toast__addon-actions { grid-column: 1 / -1; }
.po-cart-toast__addon-info strong { display: block; color: var(--theme-color-dark); font-weight: 700; font-size: 13.5px; }
.po-cart-toast__addon-info small {
  display: block;
  color: var(--text-color2);
  font-size: 12px;
  margin-top: 2px;
  line-height: 18px;
}
.po-cart-toast__addon-info small strong { color: var(--theme-color1); display: inline; font-size: 13px; }
.po-cart-toast__addon-actions { display: flex; gap: 8px; }
.po-cart-toast__addon .po-cart-toast__yes { padding: 9px 16px; font-size: 13px; flex: 1; justify-content: center; }
.po-cart-toast__no {
  padding: 9px 14px;
  background: transparent;
  border: 1px solid var(--po-border);
  border-radius: 12px;
  font-size: 13px;
  color: var(--text-color2);
  cursor: pointer;
  white-space: nowrap;
}
.po-cart-toast__no:hover { background: var(--theme-color-light); color: var(--theme-color-dark); }
.po-cart-toast__addon-success {
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-color2);
  text-align: center;
  padding: 4px 0;
}

/* Cart page table */
.po-cart-table th, .po-cart-table td { vertical-align: middle; }
.po-cart-table tr[data-id] td { padding: 18px 20px; }
.po-cart-thumb {
  width: 64px; height: 64px;
  object-fit: cover;
  display: block;
  border-radius: 12px !important;
  background: var(--theme-color3);
}
.po-cart-thumb--ph { display: inline-block; }
.po-cart-line {
  text-align: right;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--theme-color-dark);
  white-space: nowrap;
}
.po-cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.po-cart-qty__btn {
  width: 30px; height: 30px;
  border-radius: 8px;
  border: 1px solid var(--po-border);
  background: var(--theme-color-light);
  color: var(--theme-color-dark);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s var(--po-ease);
}
.po-cart-qty__btn:hover { background: var(--theme-color1); border-color: var(--theme-color1); color: #fff; }
.po-cart-qty__input {
  width: 44px;
  height: 30px;
  text-align: center;
  border: 1px solid var(--po-border);
  border-radius: 8px;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--theme-color-dark);
  background: var(--theme-color-light);
  -moz-appearance: textfield;
}
.po-cart-qty__input::-webkit-outer-spin-button,
.po-cart-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; }
.po-cart-remove {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--po-border);
  background: var(--theme-color-light);
  color: var(--text-color2);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.po-cart-remove:hover { background: var(--theme-color-dark); color: #fff; border-color: var(--theme-color-dark); }
.po-cart-summary {
  position: sticky;
  top: 110px;
}
.po-cart-empty {
  text-align: center;
  padding: 80px 20px;
  background: var(--theme-color-light);
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius-lg);
}
.po-cart-empty h3 {
  font-family: var(--title-font);
  font-size: var(--h3-font-size);
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--theme-color-dark);
}
.po-cart-empty p { color: var(--text-color2); margin: 0 0 22px; }

/* Mixed-tire safety warning */
.po-mix-warn {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 26px;
  margin-bottom: 18px;
  background: rgba(255, 180, 84, 0.10);
  border: 1px solid rgba(255, 180, 84, 0.45);
  border-radius: var(--po-radius);
  align-items: start;
}
.po-mix-warn__icon { font-size: 28px; line-height: 1; }
.po-mix-warn__body strong:first-child {
  display: block;
  font-family: var(--title-font);
  font-size: var(--h5-font-size);
  color: #8a4a00;
  font-weight: 500;
  margin-bottom: 4px;
}
.po-mix-warn__body p {
  margin: 6px 0 12px;
  color: var(--text-color);
  font-size: 14px;
  line-height: 22px;
}
.po-mix-warn__body p strong { color: #8a4a00; }
.po-mix-warn__list {
  list-style: none;
  padding: 12px 14px;
  margin: 0 0 14px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  font-size: 13.5px;
}
.po-mix-warn__list li { padding: 4px 0; }
.po-mix-warn__list li strong { color: var(--theme-color-dark); margin-right: 4px; }
.po-mix-warn__confirm {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--theme-color-dark);
  letter-spacing: 0;
  cursor: pointer;
  font-weight: 500;
}
.po-mix-warn__confirm input { margin-top: 3px; flex-shrink: 0; }

@keyframes po-mix-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}
.po-mix-warn--shake { animation: po-mix-shake .4s ease-in-out; }

/* Info variant (blue) for non-safety duplicate warnings */
.po-mix-warn--info {
  background: rgba(64, 95, 242, 0.08);
  border-color: rgba(64, 95, 242, 0.30);
}
.po-mix-warn--info .po-mix-warn__body strong:first-child { color: #2C49D9; }
.po-mix-warn--info .po-mix-warn__body p strong { color: #2C49D9; }


/* Prezutie offer panel — under the cart table */
.po-prezutie-offer {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 22px;
  padding: 24px 26px;
  background: linear-gradient(135deg, var(--theme-color3) 0%, #ffffff 100%);
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius-lg);
}
.po-prezutie-offer__ico {
  width: 56px;
  height: 56px;
  border-radius: 50% !important;
  align-self: start;
}
.po-prezutie-offer__body .po-tag { margin-bottom: 8px; }
.po-prezutie-offer__body h3 {
  font-family: var(--title-font);
  font-size: var(--h4-font-size);
  font-weight: 500;
  color: var(--theme-color-dark);
  margin: 0 0 6px;
}
.po-prezutie-offer__body p { margin: 0 0 12px; font-size: 14px; line-height: 22px; }
.po-prezutie-offer__lines {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}
.po-prezutie-offer__lines li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 4px 0;
  border-bottom: 1px dashed var(--po-border);
}
.po-prezutie-offer__lines li:last-child { border-bottom: none; }
.po-prezutie-offer__lines li strong { color: var(--theme-color-dark); font-weight: 700; }
.po-prezutie-offer__lines li small { font-size: 11px; }

.po-prezutie-offer__cta {
  text-align: right;
  display: grid;
  gap: 10px;
  justify-items: end;
  align-self: center;
}
.po-prezutie-offer__price strong {
  display: block;
  font-family: var(--title-font);
  font-size: 28px;
  font-weight: 500;
  color: var(--theme-color1);
  line-height: 1;
}
.po-prezutie-offer__price small {
  display: block;
  font-size: 12px;
  color: var(--text-color2);
  margin-top: 4px;
}

.po-prezutie-offer--done {
  background: rgba(0, 182, 122, 0.06);
  border-color: rgba(0, 182, 122, 0.25);
  grid-template-columns: 56px 1fr;
}

@media (max-width: 760px) {
  .po-prezutie-offer { grid-template-columns: 1fr; text-align: center; }
  .po-prezutie-offer__ico { margin: 0 auto; }
  .po-prezutie-offer__cta { justify-items: center; text-align: center; }
}

/* ============== ENGAGEMENT LAYER ============== */

/* Live activity toasts (bottom-left) */
.po-toasts {
  position: fixed;
  left: 20px;
  bottom: 100px;
  z-index: 8500;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  pointer-events: none;
  width: 320px;
  max-width: calc(100vw - 40px);
}
.po-toast {
  pointer-events: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--po-border);
  border-radius: 14px;
  box-shadow: 0 14px 36px -16px rgba(5,11,32,.30);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .35s var(--po-ease), transform .35s var(--po-ease);
  font-family: var(--text-font);
}
.po-toast.in { opacity: 1; transform: none; }
.po-toast__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--theme-color2);
  box-shadow: 0 0 0 3px rgba(0,182,122,.20);
  animation: po-toast-pulse 1.5s ease-in-out infinite;
}
@keyframes po-toast-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,182,122,.20); }
  50%      { box-shadow: 0 0 0 6px rgba(0,182,122,.05); }
}
.po-toast__body { font-size: 13px; line-height: 18px; color: var(--theme-color-dark); }
.po-toast__body strong { font-weight: 700; }
.po-toast__body small { color: var(--text-color2); display: block; margin-top: 2px; }
.po-toast__close {
  width: 24px; height: 24px;
  border: none;
  background: transparent;
  color: var(--text-color2);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
}
.po-toast__close:hover { background: var(--theme-color3); color: var(--theme-color-dark); }
@media (max-width: 540px) {
  .po-toasts { left: 8px; bottom: 86px; width: calc(100vw - 16px); }
}

/* Sticky bottom CTA bar */
.po-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%) translateY(140%);
  z-index: 8000;
  width: min(940px, calc(100vw - 32px));
  background: var(--theme-color-light);
  border: 1px solid var(--po-border);
  border-radius: 999px;
  box-shadow: 0 24px 60px -20px rgba(5,11,32,.35);
  transition: transform .4s var(--po-ease), opacity .4s var(--po-ease);
  opacity: 0;
  pointer-events: none;
}
.po-sticky-cta.show { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
.po-sticky-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 10px 14px 10px 22px;
}
.po-sticky-cta__msg { font-size: 14px; line-height: 18px; }
.po-sticky-cta__msg strong { display: block; color: var(--theme-color-dark); font-weight: 700; }
.po-sticky-cta__msg small { color: var(--text-color2); }
.po-sticky-cta__actions { display: flex; gap: 8px; }
.po-sticky-cta__actions .po-btn { padding: 12px 18px; font-size: 14px; border-radius: 999px; }
.po-sticky-cta__close {
  width: 32px; height: 32px;
  border: 1px solid var(--po-border);
  background: var(--theme-color3);
  color: var(--theme-color-dark);
  font-size: 16px;
  border-radius: 50%;
  cursor: pointer;
}
.po-sticky-cta__close:hover { background: var(--theme-color-dark); color: #fff; }
@media (max-width: 780px) {
  .po-sticky-cta__inner { grid-template-columns: 1fr auto; padding: 12px; border-radius: 18px; }
  .po-sticky-cta { border-radius: 18px; }
  .po-sticky-cta__msg small { display: none; }
  .po-sticky-cta__actions .po-btn:first-child { display: none; }
}

/* Product card urgency badges */
.po-prod { position: relative; }
.po-prod__viewers {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--theme-color-dark);
}
.po-prod__viewers-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--theme-color2);
  box-shadow: 0 0 0 3px rgba(0,182,122,.18);
  animation: po-toast-pulse 1.5s ease-in-out infinite;
}
.po-prod__stock {
  display: inline-block;
  margin: 8px 0 4px;
  padding: 4px 10px;
  background: rgba(255,90,122,.10);
  color: #C8284E;
  border: 1px solid rgba(255,90,122,.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

/* Exit-intent modal */
.po-exit-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(5,11,32,.55);
  backdrop-filter: blur(10px);
  display: grid; place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--po-ease);
  padding: 20px;
}
.po-exit-modal.open { opacity: 1; pointer-events: auto; }
.po-exit-modal__card {
  background: #fff;
  border-radius: 22px;
  max-width: 460px;
  width: 100%;
  padding: 36px 36px 26px;
  position: relative;
  transform: scale(.94);
  transition: transform .35s var(--po-ease);
  box-shadow: 0 40px 80px -30px rgba(5,11,32,.5);
}
.po-exit-modal.open .po-exit-modal__card { transform: scale(1); }
.po-exit-modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  border: 1px solid var(--po-border);
  background: var(--theme-color-light);
  color: var(--theme-color-dark);
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
}
.po-exit-modal__chip {
  display: inline-block;
  padding: 4px 12px;
  background: var(--theme-color3);
  color: var(--theme-color1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.po-exit-modal__card h3 {
  font-family: var(--title-font);
  font-size: 26px;
  font-weight: 500;
  margin: 14px 0 10px;
  color: var(--theme-color-dark);
}
.po-exit-modal__card p { color: var(--text-color); margin: 0 0 18px; font-size: 15px; line-height: 24px; }
.po-exit-modal__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 12px;
}
.po-exit-modal__form input {
  padding: 14px 16px;
  border: 1px solid var(--po-border);
  border-radius: 12px;
  font-family: var(--text-font);
  font-size: 15px;
}
.po-exit-modal__form input:focus { outline: none; border-color: var(--theme-color1); }
.po-exit-modal__card small { font-size: 12px; color: var(--text-color2); }
.po-exit-modal__card small a { color: var(--theme-color1); }
@media (max-width: 540px) {
  .po-exit-modal__form { grid-template-columns: 1fr; }
}

/* ---------- typography utilities (template tokens) ---------- */
.po-label {
  font-family: var(--text-font);
  font-size: var(--sec-title-subtitle-font-size); /* 14 */
  font-weight: var(--sec-title-subtitle-font-weight); /* 700 */
  line-height: var(--sec-title-subtitle-line-height); /* 20 */
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-color2);
}
.po-display {
  font-family: var(--title-font);
  font-size: var(--h5-font-size); /* 22 */
  font-weight: var(--h5-font-weight); /* 400 */
  line-height: 1.2;
  color: var(--theme-color-dark);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.po-body { font-size: var(--body-font-size); line-height: var(--body-line-height); color: var(--text-color); }
.po-small { font-size: 14px; line-height: 22px; color: var(--text-color2); }
.po-tiny { font-size: 12px; line-height: 18px; color: var(--text-color2); }
.po-strong { font-weight: 700; color: var(--theme-color-dark); }

/* ---------- small utilities ---------- */
.po-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.po-row--between { justify-content: space-between; }
.po-divider { height: 1px; background: var(--po-border); margin: 30px 0; border: 0; }
.po-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--theme-color3); border: 1px solid var(--po-border);
  font-size: 12px;
  color: var(--theme-color-dark);
  font-weight: 600;
}
.po-tag--success { color: var(--theme-color2); border-color: rgba(0,182,122,.30); background: rgba(0,182,122,.08); }
.po-tag--warn { color: #C57700; border-color: rgba(255,160,0,.30); background: rgba(255,180,84,.10); }
.po-tag--danger { color: #C8284E; border-color: rgba(255,90,122,.30); background: rgba(255,90,122,.08); }

/* ---------- map placeholder ---------- */
.po-map {
  aspect-ratio: 16/9;
  border-radius: var(--po-radius);
  overflow: hidden;
  border: 1px solid var(--po-border);
  background: var(--theme-color-gray);
  position: relative;
  box-shadow: var(--po-shadow-card);
}
.po-map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- composer tabs (Rozmer / EČV / Vozidlo) ---------- */
.po-composer-tabs {
  display: flex;
  gap: 6px;
  margin: 0 auto 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.po-composer-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  font-family: var(--text-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color-dark);
  background: rgba(255,255,255,.85);
  border: 1px solid var(--po-border);
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s var(--po-ease);
}
.po-composer-tab:hover { background: var(--theme-color3); border-color: var(--theme-color1); }
.po-composer-tab.is-active {
  background: var(--theme-color1);
  border-color: var(--theme-color1);
  color: #fff;
}

/* Special feature flags below composer */
.po-composer-flags {
  margin: 14px auto 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.po-flag {
  display: inline-flex; align-items: center;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-color-dark);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--po-border);
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s var(--po-ease);
}
.po-flag input { display: none; }
.po-flag:hover { border-color: var(--theme-color1); }
.po-flag:has(input:checked) {
  background: var(--theme-color1);
  border-color: var(--theme-color1);
  color: #fff;
}
.po-flag span::before { content: ""; display: inline-block; width: 14px; height: 14px; border: 1.5px solid currentColor; border-radius: 4px; vertical-align: middle; margin-right: 8px; }
.po-flag:has(input:checked) span::before {
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'><path d='M1 4l3 3 5-6' stroke='%23405FF2' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/10px no-repeat;
  border-color: #fff;
}

/* Trust badges row (Heureka, Google, ShopRoku) */
.po-trust-row {
  margin: 22px auto 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.po-trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--po-border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--theme-color-dark);
  box-shadow: 0 6px 18px -10px rgba(5,11,32,.18);
}
.po-trust-badge__stars { color: #FFB454; letter-spacing: 1px; font-size: 12px; }
.po-trust-badge strong { font-weight: 700; color: var(--theme-color-dark); }
.po-trust-badge small { color: var(--text-color2); font-size: 12px; }
.po-trust-badge i { color: var(--theme-color2); }

/* Registration discount banner */
.po-discount {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 56px;
  background: linear-gradient(135deg, var(--theme-color1) 0%, #2C49D9 100%);
  border-radius: var(--po-radius-lg);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.po-discount::before {
  content: "";
  position: absolute; right: -10%; top: -40%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.po-discount .po-eyebrow {
  background: rgba(255,255,255,.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.po-discount .po-title { color: #fff; }
.po-discount .po-title .grad { color: #FFE9B0; }
.po-discount .po-subtitle { color: rgba(255,255,255,.85); }
.po-discount__left { position: relative; z-index: 1; }
.po-discount__right {
  text-align: center;
  position: relative; z-index: 1;
}
.po-discount__chip {
  font-family: var(--title-font);
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.po-discount__sub {
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  font-weight: 700;
}
@media (max-width: 880px) {
  .po-discount { grid-template-columns: 1fr; padding: 32px; text-align: center; }
  .po-discount__right { order: -1; }
}

/* Newsletter section */
.po-newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 56px;
  background: var(--theme-color-light);
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius-lg);
  box-shadow: var(--po-shadow-card);
}
.po-newsletter__form { display: grid; gap: 12px; }
.po-newsletter__form .po-input {
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 16px;
}
.po-newsletter__check {
  display: flex; gap: 10px;
  font-size: 12px;
  color: var(--text-color2);
  letter-spacing: 0;
  font-weight: 500;
}
.po-newsletter__check a { color: var(--theme-color1); text-decoration: underline; }
@media (max-width: 880px) {
  .po-newsletter { grid-template-columns: 1fr; padding: 32px; }
}

/* Footer payment + courier chips — single line at the bottom */
.po-footer__pay {
  margin-top: 50px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 28px;
}
.po-footer__pay-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.po-footer__pay-label {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  margin-right: 6px;
}
.po-pay-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}
.po-pay-chip i { color: rgba(255,255,255,.65); font-size: 14px; }

/* ============== UNIVERSAL IMAGE TREATMENT ============== */

/* All <img> by default — rounded corners. Functional/small/decorative
   imagery is exempted via :not() selectors below. */
img {
  border-radius: 16px;
}
/* Exceptions — these images stay un-rounded or get specific treatment elsewhere */
.po-logo__img,
.po-marquee__logo img,
.po-search-overlay img,
.po-slider--bg img,
.po-slider--bg .po-slider__slide img,
.po-page-hero--cover .po-page-hero__bg img,
.po-card--cover .po-card__img,
.po-feature--img > img,
.po-prod__visual img,
.po-lux__item img {
  border-radius: 0;
}
/* Round avatars — explicit override after the exception block above */
.po-bot__avatar-img,
.po-chat__avatar img,
.po-chat__rec-disk {
  border-radius: 50%;
}
/* For elements where the container clips the corners, the parent rounds.
   For free-floating images (inside cards/text), keep the 16px default. */


.po-card__img,
.po-prod__visual,
.po-lux__item img,
.po-prod img,
.po-page-hero__bg img,
.po-slider--boxed img,
.po-quick-cat__ico {
  border-radius: 20px;
  box-shadow: 0 14px 36px -14px rgba(5,11,32,.22);
  transition: transform .5s var(--po-ease), box-shadow .5s var(--po-ease);
}
/* category card images sit at the top — round only the top corners visually
   by making the card itself overflow:hidden, image stays a rectangle */
.po-card--cover .po-card__img {
  border-radius: 0;             /* parent card handles its own corners */
  box-shadow: none;
}
.po-card--cover {
  border-radius: var(--po-radius);
  overflow: hidden;
}
.po-card--cover, .po-prod, .po-lux__item, .po-feature, .po-quick-cat {
  transition: transform .45s var(--po-ease), box-shadow .45s var(--po-ease), border-color .25s var(--po-ease);
}
.po-card--cover:hover,
.po-prod:hover,
.po-lux__item:hover,
.po-feature:hover,
.po-quick-cat:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -20px rgba(5,11,32,.35);
}

/* full-bleed hero rotating images shouldn't have rounded corners (they're full-screen),
   but cover hero on subpages SHOULD feel like a card. */
.po-slider--bg img,
.po-slider--bg .po-slider__slide img {
  border-radius: 0;
  box-shadow: none;
}
.po-page-hero--cover .po-page-hero__bg img {
  border-radius: 0;
  box-shadow: none;
}

/* Soft floating animation for hero-slider boxed variant */
.po-slider--boxed { transition: transform .6s var(--po-ease), box-shadow .6s var(--po-ease); }
.po-slider--boxed:hover { transform: translateY(-4px); }

/* ---------- bootstrap overrides for light theme ---------- */
.btn, .form-control { font-family: var(--text-font) !important; }
.bg-light { background: var(--theme-color3) !important; }
.text-dark { color: var(--theme-color-dark) !important; }
.text-muted { color: var(--text-color2) !important; }
.form-control {
  background: var(--theme-color-light) !important;
  border: 1px solid var(--po-border) !important;
  color: var(--theme-color-dark) !important;
  border-radius: 12px !important;
  padding: 12px 14px !important;
}
.form-control:focus {
  border-color: var(--theme-color1) !important;
  box-shadow: 0 0 0 4px rgba(64,95,242,.10) !important;
  background: #fff !important;
}
.card {
  background: var(--theme-color-light) !important;
  border: 1px solid var(--po-border) !important;
  border-radius: var(--po-radius) !important;
}

/* ============================================================
   ============   RESPONSIVE — TABLETS & MOBILES   ============
   Breakpoints used across the layout:
   1200 — desktop → laptop
   1024 — laptop  → tablet landscape
    880 — tablet  → mobile big
    640 — mobile  → mobile small
   ============================================================ */

/* Universal safety net — images and media never overflow */
img, video, iframe, svg { max-width: 100%; height: auto; }

/* Body / typography scale down on smaller screens */
@media (max-width: 1024px) {
  :root {
    --container-pt: 90px;
    --container-pb: 90px;
  }
  .po-section { padding: 100px 0; }
  .po-section--tight { padding: 70px 0; }
  h1 { font-size: 48px; }
  h2 { font-size: 32px; }
  h3 { font-size: 26px; }
}
@media (max-width: 640px) {
  .po-section { padding: 64px 0; }
  .po-section--tight { padding: 48px 0; }
  h1 { font-size: 36px; line-height: 1.15; }
  h2 { font-size: 26px; line-height: 1.2; }
  h3 { font-size: 22px; line-height: 1.25; }
  h4, h5, h6 { font-size: 18px; }
}

/* --- top navigation --- */
@media (max-width: 1100px) {
  .po-nav__links { display: none; }
  .po-burger { display: inline-flex; }
}
@media (max-width: 640px) {
  .po-nav { padding: 12px 0; }
  .po-logo__img { height: 38px; }
  .po-nav__cta .po-btn span:not(.arrow):not([class]) { display: none; }  /* hide Konto label */
  .po-nav__cta { gap: 6px; }
  .po-nav__search-toggle, .po-burger { width: 44px; height: 44px; }
  .po-btn { padding: 10px 14px; font-size: 14px; }
}

/* --- hero stage (rotating images bg + overlay text) --- */
@media (max-width: 1024px) {
  .po-hero-stage__overlay { padding: 110px 0 80px; min-height: 80vh; }
  .po-hero-stage__inner { gap: 24px; max-width: 100%; }
}
@media (max-width: 640px) {
  .po-hero-stage { min-height: auto; }
  .po-hero-stage__overlay { padding: 80px 0 60px; min-height: auto; }
  .po-hero-stage__inner { gap: 18px; }
  .po-title--light { font-size: clamp(32px, 8vw, 48px) !important; }
  .po-subtitle--light {
    font-size: 15px; line-height: 24px;
    padding: 14px 16px;
    border-radius: 14px;
  }
  .po-slider__nav--stage { width: 42px; height: 42px; font-size: 13px; }
  .po-slider__nav--stage.po-slider__nav--prev { left: 6px; }
  .po-slider__nav--stage.po-slider__nav--next { right: 6px; }
  .po-scroll-cue { display: none; }
}

/* --- search composer (pill with 6 fields) --- */
@media (max-width: 1100px) {
  .po-composer {
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    border-radius: 22px;
    padding: 10px;
  }
  .po-composer__field { padding: 12px 16px; }
  .po-composer__field + .po-composer__field::before { display: none; }
}
@media (max-width: 720px) {
  .po-composer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    border-radius: 18px;
  }
  .po-composer__field {
    background: var(--theme-color3);
    border-radius: 12px;
    padding: 10px 14px;
  }
  .po-composer__submit {
    grid-column: 1 / -1;
    width: 100%;
    height: 50px;
    border-radius: 999px;
    margin: 6px 0 0;
  }
}

/* --- grids generally collapse on smaller screens --- */
@media (max-width: 880px) {
  .po-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
  .po-features { grid-template-columns: 1fr 1fr; gap: 16px; }
  .po-quick-cats { grid-template-columns: 1fr; gap: 12px; }
  .po-lux { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 12px; }
  .po-lux__item { grid-column: auto !important; grid-row: auto !important; height: 220px; }
  .po-split { grid-template-columns: 1fr; gap: 32px; }
  .po-shop-layout { grid-template-columns: 1fr; gap: 22px; }
  .po-filter { position: static; }
  .po-strip { grid-template-columns: 1fr 1fr; gap: 14px; padding: 24px; }
  .po-strip__item strong { font-size: 32px; }
  .po-form-row { grid-template-columns: 1fr; }
  .po-discount, .po-newsletter { grid-template-columns: 1fr; padding: 28px; text-align: center; gap: 20px; }
  .po-discount__right { order: -1; }
}
@media (max-width: 540px) {
  .po-grid { grid-template-columns: 1fr; }
  .po-features { grid-template-columns: 1fr; }
  .po-lux { grid-template-columns: 1fr; }
  .po-lux__item { height: 200px; }
  .po-strip { grid-template-columns: 1fr; }
  .po-strip__item strong { font-size: 28px; }
}

/* --- page hero (cover image variant for subpages) --- */
@media (max-width: 880px) {
  .po-page-hero--cover { padding: 120px 0 80px; }
}
@media (max-width: 640px) {
  .po-page-hero { padding: 60px 0 40px; }
  .po-page-hero--cover { padding: 100px 0 60px; }
  .po-page-hero .po-title { font-size: clamp(28px, 7vw, 40px); }
}

/* --- product cards / bestsellers --- */
@media (max-width: 640px) {
  .po-prod { padding: 16px; }
  .po-prod__visual { padding: 8%; }
  .po-prod h3 { font-size: 17px; }
  .po-prod__meta { font-size: 13px; }
  .po-prod__viewers { top: 8px; left: 8px; font-size: 10px; padding: 3px 8px; }
}

/* --- feature cards (Why us with cover image) --- */
@media (max-width: 640px) {
  .po-feature, .po-feature--img > .po-feature__body { padding: 20px; }
  .po-feature--img > img { height: 160px; }
  .po-feature__ico { width: 50px; height: 50px; font-size: 20px; }
}

/* --- testimonials --- */
@media (max-width: 640px) {
  .po-quote { padding: 22px; }
  .po-quote p { font-size: 15px; line-height: 24px; }
}

/* --- footer --- */
@media (max-width: 900px) {
  .po-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 540px) {
  .po-footer { padding: 60px 0 24px; }
  .po-footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .po-footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .po-footer__pay { padding: 18px 0; }
  .po-footer__pay-label { font-size: 10px; }
  .po-pay-chip { font-size: 12px; padding: 5px 10px; }
}

/* --- chatbot panel (Pneo) --- */
@media (max-width: 540px) {
  .po-chat { right: 8px; left: 8px; bottom: 76px; width: auto; height: min(72vh, 540px); }
  .po-bot { right: 12px; bottom: 12px; padding: 8px; }
  .po-bot__txt { display: none; }
}

/* --- sticky CTA --- */
@media (max-width: 540px) {
  .po-sticky-cta { left: 8px; right: 8px; bottom: 8px; transform: translateY(140%); width: auto; }
  .po-sticky-cta.show { transform: translateY(0); }
}

/* --- cart page table --- */
@media (max-width: 880px) {
  .po-cart-table thead { display: none; }
  .po-cart-table tbody tr {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    grid-template-areas: "img name remove" "img qty price";
    gap: 8px 12px;
    padding: 14px;
    border-bottom: 1px solid var(--po-border);
  }
  .po-cart-table tbody tr td { padding: 0 !important; border: none; }
  .po-cart-table tbody tr td:nth-child(1) { grid-area: img; }
  .po-cart-table tbody tr td:nth-child(2) { grid-area: name; }
  .po-cart-table tbody tr td:nth-child(3) { grid-area: qty; }
  .po-cart-table tbody tr td:nth-child(4) { grid-area: price; }
  .po-cart-table tbody tr td:nth-child(5) { grid-area: remove; }
  .po-cart-line { font-size: 15px; }
  .po-cart-summary { position: static; }
}
@media (max-width: 540px) {
  .po-prezutie-offer { grid-template-columns: 1fr; text-align: center; padding: 20px; }
  .po-prezutie-offer__ico { margin: 0 auto; }
  .po-prezutie-offer__cta { justify-items: center; }
  .po-mix-warn { grid-template-columns: 1fr; gap: 12px; padding: 18px 20px; }
}

/* --- search overlay --- */
@media (max-width: 640px) {
  .po-search-overlay { padding: 80px 14px 24px; }
  .po-search-overlay__chip { font-size: 12px; padding: 6px 12px; }
}

/* --- generic tables overflow horizontally so they don't break layout --- */
@media (max-width: 640px) {
  .po-doc { padding: 22px; }
  .po-table:not(.po-cart-table) {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .po-doc h2 { font-size: 22px; margin: 28px 0 12px; }
  .po-doc h3 { font-size: 18px; }
}

/* --- engagement toasts --- */
@media (max-width: 540px) {
  .po-toasts { left: 8px; right: 8px; bottom: 80px; width: auto; }
  .po-cart-toasts { right: 8px; top: 76px; left: 8px; width: auto; }
  .po-cart-toast__head { padding: 12px; }
  .po-cart-toast__addon { padding: 12px; grid-template-columns: 40px 1fr; }
}

/* --- timeline --- */
@media (max-width: 640px) {
  .po-timeline { padding-left: 18px; }
  .po-timeline__year { font-size: 18px; }
}

/* --- discount/newsletter chips --- */
@media (max-width: 540px) {
  .po-discount__chip { font-size: 64px; }
}

/* Tap targets — minimum 44×44 px on touch devices */
@media (hover: none) and (pointer: coarse) {
  .po-btn, .po-prod__add, .po-chat__chip, .po-pill,
  .po-nav__search-toggle, .po-burger { min-height: 44px; }
}
