/* Program40+ v2 — landing */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --pv2-bg: #fdfbf7;
  --pv2-bg-elevated: #fffcfa;
  --pv2-surface: #ffffff;
  --pv2-ink: #1c1917;
  --pv2-muted: #57534e;
  --pv2-soft: #a8a29e;
  --pv2-border: rgba(28, 25, 23, 0.08);
  --pv2-accent: #ea580c;
  --pv2-accent-hover: #c2410c;
  --pv2-accent-soft: #fff7ed;
  --pv2-accent-ring: rgba(234, 88, 12, 0.35);
  --pv2-danger: #dc2626;
  --pv2-radius: 16px;
  --pv2-radius-lg: 24px;
  --pv2-shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.06);
  --pv2-shadow-md: 0 12px 40px rgba(28, 25, 23, 0.1);
  --pv2-shadow-lg: 0 24px 80px rgba(28, 25, 23, 0.12);
  --pv2-header-h: 72px;
  --pv2-max: 1120px;
  --pv2-prose: 42rem;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Fraunces", "Plus Jakarta Sans", Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--pv2-ink);
  background: var(--pv2-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--pv2-accent);
}

a:hover {
  color: var(--pv2-accent-hover);
}

:focus-visible {
  outline: 2px solid var(--pv2-accent);
  outline-offset: 3px;
}

.pv2-skip {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--pv2-surface);
  color: var(--pv2-ink);
  border-radius: 8px;
}

.pv2-skip:focus {
  left: 1rem;
  top: 1rem;
}

/* max-width + padding + margin: spolehlivé vycentrování na širokých obrazovkách */
.pv2-container {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--pv2-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* Top bar */
.pv2-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  background: rgba(255, 252, 250, 0.82);
  border-bottom: 1px solid var(--pv2-border);
}

.pv2-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  min-height: var(--pv2-header-h);
  padding-block: 0.65rem;
}

@media (max-width: 959px) {
  .pv2-topbar__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    min-height: auto;
    padding-block: 0.42rem 0.52rem;
  }

  .pv2-topbar .pv2-pill {
    padding: 0.26rem 0.65rem;
    font-size: 0.6875rem;
    gap: 0.35rem;
  }

  .pv2-countdown--chip {
    justify-content: center;
    width: 100%;
    gap: 0.35rem;
    flex-wrap: wrap;
  }

  .pv2-countdown--chip .pv2-countdown__sep {
    align-self: flex-start;
    margin-top: 0.48rem;
    opacity: 0.42;
    font-size: 0.85rem;
  }

  .pv2-countdown--chip .pv2-countdown__unit {
    min-width: 2.65rem;
    padding: 0.32rem 0.38rem 0.26rem;
    border-radius: 11px;
    background: var(--pv2-surface);
    border: 1px solid var(--pv2-border);
    box-shadow: var(--pv2-shadow-sm);
  }

  .pv2-countdown--chip .pv2-countdown__num {
    font-size: 1.05rem;
    color: var(--pv2-ink);
  }

  .pv2-countdown--chip .pv2-countdown__lbl {
    margin-top: 0.06rem;
    font-size: 0.56rem;
    letter-spacing: 0.06em;
  }
}

.pv2-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--pv2-accent-soft);
  color: #9a3412;
}

.pv2-countdown {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-variant-numeric: tabular-nums;
}

.pv2-countdown__sep {
  opacity: 0.35;
  font-weight: 700;
}

.pv2-countdown__unit {
  display: grid;
  justify-items: center;
  min-width: 2.5rem;
}

.pv2-countdown__num {
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1;
  display: inline-block;
}

@keyframes pv2-countdown-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.07);
  }
}

.pv2-countdown__num--pulse {
  animation: pv2-countdown-pulse 0.42s ease;
}

@media (prefers-reduced-motion: reduce) {
  .pv2-countdown__num--pulse {
    animation: none;
  }
}

.pv2-countdown__lbl {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pv2-soft);
}

/* Hero */
.pv2-hero {
  position: relative;
  padding-block: clamp(1.5rem, 4vw, 2.75rem);
  overflow: clip;
}

.pv2-hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: min(85vh, 720px);
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(251, 146, 60, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 20% 40%, rgba(253, 186, 116, 0.18), transparent 50%);
  pointer-events: none;
}

@media (min-width: 960px) {
  .pv2-hero {
    overflow: visible;
  }
}

@media (max-width: 959px) {
  .pv2-hero {
    padding-block: 0 clamp(1rem, 4vw, 1.65rem);
    padding-top: 0;
  }

  .pv2-hero::before {
    display: none;
  }
}

@media (max-width: 959px) {
  .pv2-hero__layout.pv2-container {
    max-width: none;
    padding-inline: 0;
  }
}

.pv2-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "head"
    "visual"
    "tail";
  gap: 0;
  align-items: start;
}

.pv2-hero__head {
  grid-area: head;
  min-width: 0;
}

.pv2-hero__head .pv2-kicker {
  font-size: clamp(0.94rem, 2.4vw, 1.12rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c2410c;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.pv2-hero__visual-stack {
  grid-area: visual;
  display: flex;
  flex-direction: column;
}

.pv2-hero__tail {
  grid-area: tail;
  min-width: 0;
}

@media (min-width: 960px) {
  .pv2-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "head visual"
      "tail visual";
    gap: clamp(1.35rem, 3.5vw, 2.5rem);
    align-items: stretch;
    min-height: 0;
  }

  .pv2-hero__visual-stack {
    align-self: stretch;
    min-height: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .pv2-hero__tail {
    margin-top: 0.35rem;
  }

  .pv2-hero__tail .pv2-hero__more {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 959px) {
  .pv2-hero__head {
    padding: 1.45rem min(1.35rem, 5.5vw) 1.35rem;
    background: linear-gradient(180deg, #fffefb 0%, var(--pv2-bg-elevated) 55%, var(--pv2-bg) 100%);
    border-bottom: 1px solid var(--pv2-border);
  }

  .pv2-hero__tail {
    padding-inline: min(1.35rem, 5.5vw);
    padding-bottom: 0.35rem;
  }
}

.pv2-hero__tail .pv2-hero__more > p {
  margin: 0 0 1rem;
  font-family: inherit;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--pv2-ink);
}

.pv2-hero__tail .pv2-hero__more strong {
  font-weight: 700;
}

@media (max-width: 959px) {
  .pv2-hero__tail .pv2-hero__more > p:last-child {
    margin-bottom: 0;
  }

  .pv2-hero__tail .pv2-hero__more {
    border-top: 1px solid var(--pv2-border);
    margin-top: 0;
    padding-top: 1.25rem;
  }
}

/* Mobile-only: překryvy na fotce (desktop je defaultně vypnuté) */
.pv2-hero__mobile-overlay {
  display: none;
}

.pv2-hero__mobile-tagline {
  display: none;
}

.pv2-hero-badges {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Mobile: kompaktní „karta“ s fotkou pod hlavním textem */
@media (max-width: 959px) {
  .pv2-hero-visual {
    margin: 0.65rem min(1.35rem, 5.5vw) 0;
    border-radius: var(--pv2-radius-lg);
    overflow: hidden;
    box-shadow: var(--pv2-shadow-md);
    border: 1px solid var(--pv2-border);
  }

  .pv2-blob {
    opacity: 0.32;
    inset: 10% 12% auto 12%;
  }

  .pv2-hero-photo {
    mask-image: none;
    border-radius: 0;
    width: 100%;
    max-height: min(46vh, 360px);
    object-fit: cover;
    object-position: center 10%;
    filter: brightness(1.05) saturate(1.04);
    box-shadow: none;
  }

  .pv2-hero__mobile-overlay,
  .pv2-hero__mobile-tagline {
    display: none !important;
  }

  .pv2-hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem 0.5rem;
    padding: 0.95rem min(1.35rem, 5.5vw) 1rem;
    overflow-x: visible;
    row-gap: 0.55rem;
    background: var(--pv2-bg);
    border-bottom: none;
  }

  .pv2-hero__head .pv2-title {
    font-size: clamp(2.65rem, 10.5vw + 0.5rem, 3.95rem);
    line-height: 1.07;
    margin-bottom: 0.95rem;
    text-wrap: balance;
    overflow-wrap: break-word;
    hyphens: manual;
  }

  .pv2-hero__actions {
    margin-top: 1.35rem;
    gap: 0.65rem;
    flex-direction: column;
  }

  .pv2-hero__actions .pv2-btn {
    width: 100%;
    justify-content: center;
  }
}

.pv2-hero-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  background: var(--pv2-surface);
  border: 1px solid var(--pv2-border);
  box-shadow: var(--pv2-shadow-sm);
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .pv2-hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--pv2-shadow-md);
    border-color: rgba(234, 88, 12, 0.22);
  }
}

.pv2-hero-badge:active {
  transform: scale(0.98);
}

.pv2-hero-badge i {
  color: var(--pv2-accent);
  font-size: 0.88rem;
}

.pv2-kicker {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pv2-muted);
  margin-bottom: 0.75rem;
}

.pv2-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.85rem, 6.25vw, 4.85rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.pv2-highlight {
  display: inline;
  background: linear-gradient(transparent 62%, rgba(251, 146, 60, 0.38) 62%);
  padding-inline: 0.06em;
}

.pv2-lead {
  font-size: 1.25rem;
  line-height: 1.58;
  color: var(--pv2-muted);
  margin-bottom: 1.25rem;
}

.pv2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.pv2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-sizing: border-box;
}

button.pv2-btn {
  appearance: none;
  -webkit-appearance: none;
}

.pv2-btn:active {
  transform: translateY(1px);
}

.pv2-btn--primary {
  background: linear-gradient(135deg, var(--pv2-accent), #fb923c);
  color: #fff;
  box-shadow: 0 10px 30px var(--pv2-accent-ring);
}

.pv2-btn--primary:hover {
  background: linear-gradient(135deg, var(--pv2-accent-hover), var(--pv2-accent));
  color: #fff;
}

.pv2-btn--ghost {
  background: var(--pv2-surface);
  color: var(--pv2-ink);
  border: 1px solid var(--pv2-border);
  box-shadow: var(--pv2-shadow-sm);
}

.pv2-btn--ghost:hover {
  border-color: rgba(234, 88, 12, 0.25);
}

.pv2-btn--lg {
  padding: 1.05rem 1.75rem;
  font-size: 1.0625rem;
}

/* Hlavní CTA: flex (ne inline-flex), aby margin-inline: auto spolehlivě centroval */
.pv2-btn.pv2-btn--primary.pv2-btn--lg {
  display: flex;
  width: 100%;
  max-width: var(--pv2-max);
  margin-inline: auto;
}

.pv2-hero-visual {
  position: relative;
  isolation: isolate;
}

.pv2-blob {
  position: absolute;
  inset: 8% 6% auto 6%;
  aspect-ratio: 1;
  border-radius: 42% 58% 48% 52% / 44% 46% 54% 56%;
  background: linear-gradient(145deg, #ffedd5, #fdba74 45%, #fb923c);
  opacity: 0.85;
  z-index: 0;
}

.pv2-hero-photo {
  position: relative;
  z-index: 1;
  border-radius: var(--pv2-radius-lg);
  box-shadow: var(--pv2-shadow-lg);
  mask-image: radial-gradient(ellipse at center, #000 62%, transparent 100%);
}

@media (min-width: 960px) {
  .pv2-hero-visual {
    flex: 1 1 auto;
    min-height: 0;
    border-radius: var(--pv2-radius-lg);
    overflow: visible;
  }

  .pv2-hero-photo {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    border-radius: var(--pv2-radius-lg);
    box-shadow: var(--pv2-shadow-lg);
    mask-image: none;
  }
}

.pv2-float-cards {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.pv2-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--pv2-border);
  box-shadow: var(--pv2-shadow-md);
  font-size: 0.875rem;
  font-weight: 600;
}

.pv2-float-card i {
  color: var(--pv2-accent);
}

.pv2-float-card__meta {
  display: block;
  font-weight: 600;
  color: var(--pv2-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pv2-float-card--a {
  top: 10%;
  left: -4%;
}

.pv2-float-card--b {
  bottom: 18%;
  left: -2%;
}

.pv2-float-card--c {
  top: 22%;
  right: -6%;
}

@media (max-width: 959px) {
  .pv2-float-card {
    display: none;
  }
}

/* Sections */
.pv2-section {
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.pv2-section--surface {
  background: var(--pv2-bg-elevated);
}

/* Mobil: před/po hned pod hero — méně prázdna shora a zdola */
@media (max-width: 959px) {
  .pv2-section--promena {
    padding-block: clamp(0.6rem, 2.2vw, 1rem);
  }

  .pv2-section--promena > .pv2-container > .pv2-media-frame {
    margin-bottom: 0.45rem;
  }

  main > .pv2-section--white:first-of-type {
    padding-top: clamp(0.75rem, 3vw, 1.35rem);
  }
}

.pv2-section--white {
  background: var(--pv2-surface);
}

.pv2-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.pv2-section__lead {
  margin: 0 0 2rem;
  max-width: var(--pv2-prose);
  color: var(--pv2-muted);
  font-size: 1.0625rem;
}

.pv2-media-frame {
  border-radius: var(--pv2-radius-lg);
  overflow: hidden;
  box-shadow: var(--pv2-shadow-md);
  margin-bottom: 0.75rem;
}

/* Vyplnit celou šířku karty (max-width:100% samo o sobě obrázek neroztáhne) */
.pv2-media-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Fotka nad příběhem: omezení sloupce jako u .pv2-prose níže (.pv2-container.pv2-prose v HTML) */
.pv2-section > .pv2-container > .pv2-media-frame {
  margin-inline: auto;
  max-width: 100%;
}

.pv2-section > .pv2-container > .pv2-media-frame + .pv2-caption {
  max-width: 100%;
  margin-inline: auto;
}

.pv2-caption {
  text-align: center;
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--pv2-soft);
  margin: 0;
}

/* Prose */
.pv2-prose {
  max-width: var(--pv2-prose);
  margin-inline: auto;
}

.pv2-prose p {
  margin: 0 0 1rem;
}

.pv2-prose > .pv2-caption {
  margin: 0;
}

.pv2-prose .pv2-media-frame {
  margin-block: 1.5rem;
  margin-inline: auto;
  max-width: 100%;
}

.pv2-prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.015em;
}

.pv2-prose strong {
  font-weight: 700;
}

/* Bonus grid */
.pv2-bonus-list {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .pv2-bonus-list {
    gap: 1.5rem;
  }
}

.pv2-bonus-card {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--pv2-radius-lg);
  background: var(--pv2-surface);
  border: 1px solid var(--pv2-border);
  box-shadow: var(--pv2-shadow-sm);
}

@media (min-width: 720px) {
  .pv2-bonus-card {
    grid-template-columns: minmax(160px, 220px) 1fr;
    align-items: start;
    padding: 1.5rem;
  }
}

.pv2-bonus-card__media {
  border-radius: var(--pv2-radius);
  overflow: hidden;
  box-shadow: var(--pv2-shadow-sm);
}

/* Mobil: obrázok bonusu nie na celú šírku karty */
@media (max-width: 719px) {
  .pv2-bonus-card__media {
    max-width: min(11.5rem, 48vw);
    margin-inline: auto;
  }

  .pv2-bonus-card__media img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.pv2-bonus-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.pv2-bonus-card__plus {
  color: var(--pv2-accent);
  font-weight: 800;
}

.pv2-price-row {
  font-size: 0.9375rem;
  margin-bottom: 0.65rem;
}

.pv2-price-row del {
  color: var(--pv2-soft);
}

.pv2-badge-free {
  margin-left: 0.65rem;
  font-weight: 800;
  color: var(--pv2-accent);
}

.pv2-bonus-card__desc {
  margin: 0;
  color: var(--pv2-muted);
}

.pv2-closing {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-top: 2.5rem;
}

.pv2-closing p {
  margin: 0 0 0.75rem;
  font-size: 1.0625rem;
}

/* CTA band */
.pv2-cta {
  position: relative;
  border-radius: var(--pv2-radius-lg);
  overflow: hidden;
  background:
    radial-gradient(1200px 400px at 10% 0%, rgba(251, 146, 60, 0.35), transparent),
    radial-gradient(900px 380px at 90% 100%, rgba(253, 186, 116, 0.35), transparent),
    linear-gradient(135deg, #1c1917, #292524);
  color: #fafaf9;
}

.pv2-cta__grid {
  display: grid;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 900px) {
  .pv2-cta__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 2.5rem;
    padding: clamp(2.5rem, 5vw, 3.5rem);
  }
}

.pv2-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.pv2-cta__desc {
  margin: 0 0 1.5rem;
  color: rgba(250, 250, 249, 0.82);
  font-size: 1.0625rem;
}

.pv2-mini-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.85rem;
}

.pv2-mini-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-weight: 600;
}

.pv2-mini-list i {
  margin-top: 0.2rem;
  color: #fdba74;
}

.pv2-cta-countdown {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.pv2-cta-countdown__label {
  font-weight: 700;
}

.pv2-cta-countdown .pv2-countdown__num {
  color: #fff;
}

.pv2-cta-countdown .pv2-countdown__lbl {
  color: rgba(250, 250, 249, 0.55);
}

.pv2-price-block {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.pv2-price-block__old {
  font-size: 1.25rem;
  text-decoration: line-through;
  opacity: 0.55;
}

.pv2-price-block__now {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pv2-cta-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.pv2-cta-visual img {
  width: min(100%, 380px);
  border-radius: var(--pv2-radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.pv2-heart {
  position: absolute;
  bottom: 8%;
  right: 8%;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fecaca;
}

/* FAQ */
.pv2-faq {
  max-width: 720px;
  margin-inline: auto;
}

.pv2-faq-item {
  border: 1px solid var(--pv2-border);
  border-radius: var(--pv2-radius);
  background: var(--pv2-surface);
  margin-bottom: 0.75rem;
  overflow: clip;
}

.pv2-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font: inherit;
  font-weight: 700;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  color: inherit;
}

.pv2-faq-q:hover {
  background: rgba(234, 88, 12, 0.04);
}

.pv2-faq-q i {
  transition: transform 0.2s ease;
  color: var(--pv2-soft);
}

.pv2-faq-item.is-open .pv2-faq-q i {
  transform: rotate(180deg);
}

.pv2-faq-a {
  padding: 0 1.25rem 1.15rem;
  color: var(--pv2-muted);
}

.pv2-faq-item:not(.is-open) .pv2-faq-a {
  display: none;
}

.pv2-faq-item.is-open .pv2-faq-a {
  display: block;
}

.pv2-faq-a p {
  margin: 0;
}

/* Footer */
.pv2-footer {
  padding: 2.5rem 0 calc(5rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--pv2-border);
  background: var(--pv2-bg-elevated);
}

.pv2-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .pv2-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.pv2-footer__copy {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--pv2-muted);
  line-height: 1.55;
}

.pv2-footer__link {
  font-weight: 600;
  color: var(--pv2-ink);
  text-decoration: none;
}

.pv2-footer__link:hover {
  color: var(--pv2-accent);
}

/* Sticky */
.pv2-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  justify-content: center;
  padding: 0.85rem 1.25rem calc(0.85rem + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(246, 244, 240, 0.96), transparent);
}

/* Od širšího telefonu / tabletu — jen rozumně široké „pilulky“, ne 1120px */
@media (min-width: 640px) {
  .pv2-sticky .pv2-btn.pv2-btn--primary.pv2-btn--lg {
    width: auto;
    max-width: min(20rem, 100%);
    padding: 0.72rem 1.35rem;
    font-size: 1rem;
  }
}

/* zobrazení řídí JS: display: flex (ne block), aby fungovalo justify-content */

/* Modal */
.pv2-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.pv2-modal.is-active {
  display: flex;
}

.pv2-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.45);
  backdrop-filter: blur(4px);
}

.pv2-modal__panel {
  position: relative;
  width: min(100%, 520px);
  max-height: min(92vh, 880px);
  margin: auto auto 0;
  border-radius: var(--pv2-radius-lg) var(--pv2-radius-lg) 0 0;
  background: var(--pv2-surface);
  box-shadow: var(--pv2-shadow-lg);
  display: flex;
  flex-direction: column;
}

@media (min-width: 540px) {
  .pv2-modal {
    align-items: center;
    padding: 1.5rem;
  }

  .pv2-modal__panel {
    margin: auto;
    border-radius: var(--pv2-radius-lg);
    max-height: min(90vh, 780px);
  }
}

.pv2-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--pv2-border);
  background: var(--pv2-bg);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--pv2-muted);
  z-index: 2;
}

.pv2-modal__close:hover {
  background: var(--pv2-accent-soft);
  color: var(--pv2-accent);
}

.pv2-modal__scroll {
  overflow: auto;
  padding: 1.75rem 1.5rem 1.5rem;
}

@media (min-width: 540px) {
  .pv2-modal__scroll {
    padding: 2rem;
  }
}

.pv2-modal__kicker {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pv2-soft);
  margin: 0 0 0.35rem;
}

.pv2-modal__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.pv2-modal__lead {
  margin: 0 0 1.25rem;
  color: var(--pv2-muted);
  font-size: 0.9875rem;
}

.pv2-order-card {
  border: 1px solid var(--pv2-border);
  border-radius: var(--pv2-radius);
  padding: 1.1rem 1.15rem;
  background: var(--pv2-bg);
  margin-bottom: 1rem;
}

.pv2-order-card__prices {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.pv2-order-card__old {
  text-decoration: line-through;
  color: var(--pv2-soft);
  font-weight: 600;
}

.pv2-order-card__now {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.pv2-order-card__hint {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--pv2-muted);
}

.pv2-upsell {
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: var(--pv2-radius);
  padding: 1rem;
  background: var(--pv2-accent-soft);
  margin-bottom: 1rem;
}

.pv2-upsell__title {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--pv2-ink);
  line-height: 1.25;
}

.pv2-upsell-label {
  display: block;
  cursor: pointer;
}

.pv2-upsell-label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pv2-upsell-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: start;
  padding: 0.65rem;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.pv2-upsell-label input:focus-visible + .pv2-upsell-box {
  outline: 2px solid var(--pv2-accent);
  outline-offset: 2px;
}

.pv2-upsell-label input:checked + .pv2-upsell-box {
  border-color: rgba(234, 88, 12, 0.55);
  background: #fff;
}

.pv2-upsell-thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.pv2-upsell-name {
  display: block;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.pv2-upsell-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--pv2-muted);
  line-height: 1.45;
}

.pv2-upsell-prices {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.45rem;
}

.pv2-upsell-prices del {
  color: var(--pv2-soft);
  font-size: 0.9rem;
}

.pv2-upsell-prices strong {
  color: var(--pv2-accent);
  font-size: 1rem;
}

.pv2-upsell-check {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  border: 2px solid rgba(120, 113, 108, 0.35);
  display: grid;
  place-items: center;
  color: transparent;
  margin-top: 0.15rem;
}

.pv2-upsell-label input:checked + .pv2-upsell-box .pv2-upsell-check {
  background: var(--pv2-accent);
  border-color: var(--pv2-accent);
  color: #fff;
}

.pv2-modal-total {
  padding: 0.85rem 0;
  margin-bottom: 0.25rem;
  border-top: 1px dashed var(--pv2-border);
}

.pv2-modal-total__rows {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pv2-modal-total__line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.pv2-modal-total__line--catalog {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pv2-muted);
}

.pv2-modal-total__line--catalog del {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pv2-soft);
}

.pv2-modal-total__line--pay {
  font-weight: 800;
}

.pv2-modal-total__line--pay span:last-child {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--pv2-accent);
}

.pv2-modal-total[hidden] {
  display: none !important;
}

.pv2-form label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.pv2-form input[type="text"],
.pv2-form input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--pv2-border);
  font: inherit;
  background: #fff;
  margin-bottom: 1rem;
}

.pv2-form input:focus {
  outline: none;
  border-color: rgba(234, 88, 12, 0.45);
  box-shadow: 0 0 0 3px var(--pv2-accent-ring);
}

.pv2-form .pv2-btn {
  width: 100%;
  margin-top: 0.25rem;
}

.pv2-trust {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--pv2-muted);
  line-height: 1.45;
}

.pv2-trust i {
  margin-top: 0.15rem;
  color: var(--pv2-accent);
}

/* Terms modal wider */
.pv2-modal__panel--terms {
  width: min(100%, 720px);
}

.pv2-modal__body--terms {
  padding-right: 0.25rem;
}

.pv2-modal__body--terms h3 {
  font-family: var(--font-display);
  margin: 1.5rem 0 0.5rem;
  font-size: 1.15rem;
}

.pv2-modal__body--terms p,
.pv2-modal__body--terms ul {
  color: var(--pv2-muted);
  font-size: 0.9375rem;
}

.pv2-modal__body--terms ul {
  padding-left: 1.25rem;
}
