@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --cream: oklch(96% 0.018 75);
  --warm-white: #fef5e7;
  --near-black: oklch(13% 0.012 60);
  --mid-gray: oklch(55% 0.008 60);
  --light-gray: oklch(93% 0.008 75);
  --accent: #ff4013;
  --accent-hover: #e0380f;
  --accent-light: #fff0ec;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px oklch(13% 0.012 60 / 0.08);
  --shadow-md: 0 6px 32px oklch(13% 0.012 60 / 0.12);
  --shadow-lg: 0 16px 56px oklch(13% 0.012 60 / 0.16);
}

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--near-black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(254, 245, 231, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
nav#main-nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img { display: block; height: 22px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--mid-gray);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--near-black); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--near-black);
  color: var(--warm-white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(255,64,19,0.35);
  pointer-events: none;
}
.nav-cta svg {
  display: block;
  flex-shrink: 0;
  transform: translateY(-1px);
}
.nav-cta:hover { background: var(--accent) !important; color: white !important; transform: translateY(-1px); }
.nav-phone-item { margin-right: 40px; }
.nav-phone {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  line-height: 1;
  white-space: nowrap;
}
.nav-phone svg { flex-shrink: 0; opacity: 0.8; }

/* Kontakt skupina v hlavičce (telefon | Kontakt) — zarovnaná řádkem s menu */
.nav-links .nav-contact-group {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-right: 96px;
  line-height: 1;
}
.nav-links .nav-contact-group a {
  line-height: 1;
}
.nav-links .nav-contact-group .nav-phone svg {
  width: 14px; height: 14px;
}
.nav-links .nav-phone-content {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.nav-links .nav-phone-hours {
  display: block;
  margin: 2px 0 0;
  font-size: 11px;
  font-weight: 400;
  color: var(--mid-gray, #888);
  opacity: 0.85;
  white-space: nowrap;
  line-height: 1;
}

/* Od 1200px: otevírací doba vedle telefonu (jeden řádek) */
@media (min-width: 1200px) {
  .nav-links .nav-phone-content {
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
  }
  .nav-links .nav-phone-hours {
    display: inline;
    margin: 0;
  }
}
.nav-links .nav-sep {
  color: var(--mid-gray, #888);
  opacity: 0.3;
  font-weight: 400;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}
.nav-links .nav-kontakt {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}

/* CTA "Pokračovat v návrhu" — defaultně zobrazena plná verze */
.nav-cta-short { display: none; }

/* ── Responzivní zúžení hlavičky ── */
@media (max-width: 1400px) {
  /* Zkrácená verze CTA "Pokračovat v návrhu" → "Návrh" */
  .nav-cta .nav-cta-long { display: none; }
  .nav-cta .nav-cta-short { display: inline; }
  /* Menší odsazení kontaktní skupiny od menu */
  .nav-links .nav-contact-group { margin-right: 48px; }
}
@media (max-width: 1080px) {
  /* Skrýt celou kontaktní skupinu (i telefonní číslo) */
  .nav-links .nav-contact-group { display: none; }
}

/* ── STICKY BOTTOM CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.sticky-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--near-black);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 32px oklch(13% 0.012 60 / 0.32);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.sticky-cta-btn:hover {
  background: var(--accent);
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(255,64,19,0.4);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255,64,19,0.35);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,64,19,0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--near-black);
  border: 1.5px solid oklch(80% 0.01 60);
  border-radius: 100px;
  padding: 9px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-secondary:hover {
  border-color: var(--near-black);
  background: oklch(96% 0.006 75);
  transform: translateY(-1px);
}

/* ── SECTIONS ── */
section { overflow: hidden; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── HERO ── */
#hero {
  padding-top: 64px;
  padding-left: 40px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: center;
  gap: 40px;
  background: var(--warm-white);
  position: relative;
}
.hero-content {
  padding: 40px 0;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--near-black);
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-subtitle {
  font-size: 18px;
  color: var(--mid-gray);
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.hero-buttons a { white-space: nowrap}
.hero-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cream);
  border-radius: 28px 0 0 28px;
  align-self: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.hero-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  position: absolute;
  inset: 0;
}

/* ── TRUST BAR ── */
#trust {
  background: #E5D2B5;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 24px,
    rgba(80,55,30,0.04) 24px,
    rgba(80,55,30,0.04) 25px
  );
  padding: 40px 0;
}
.trust-inner {
  width: 100%;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.trust-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.trust-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg { width: 28px; height: 28px; stroke: var(--accent); stroke-width: 1.8; fill: none; }
.trust-label {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-display);
  font-style: italic;
  color: #2a1f14;
  line-height: 1.3;
}
.trust-label em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
}
.trust-desc {
  font-size: 16px;
  color: #5d4730;
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
#how {
  padding: 120px 40px;
  background: var(--warm-white);
}
.section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  text-align: center;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--near-black);
}
.section-title em { font-style: italic; color: var(--accent); }
.section-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--mid-gray);
  max-width: 520px;
  margin: 0 auto 72px;
  line-height: 1.6;
}
.steps-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.6% + 44px);
  right: calc(16.6% + 44px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), #d4956e);
  z-index: 0;
}
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 88px;
  height: 88px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: white;
  box-shadow: 0 8px 24px rgba(255,64,19,0.3);
  flex-shrink: 0;
}
.step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--near-black);
}
.step-desc {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ── PRICING ── */
#pricing {
  padding: 120px 40px;
  background: var(--warm-white);
}
.pricing-sizes {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}
.size-card {
  background: #D4B896;
  border: 1.5px solid #C4A882;
  border-radius: 20px;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: visible;
}
.size-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.size-card--popular {
  box-shadow: 0 8px 24px rgba(42,31,20,0.12);
  transform: translateY(-4px);
}
.size-badge {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0;
  white-space: nowrap;
}
.size-visual-wrap {
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  position: relative;
  margin-top: -40px;
}
.size-visual-img {
  max-height: 240px;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(40,25,12,0.28)) drop-shadow(0 4px 8px rgba(40,25,12,0.18));
  transition: transform 0.25s ease;
}
.size-card:hover .size-visual-img { transform: translateY(-4px); }
.size-name {
  font-size: 17px;
  font-weight: 700;
  color: #2a1f14;
  letter-spacing: 0.2px;
  margin-top: 18px;
}
.size-divider {
  width: 32px;
  height: 1px;
  background: rgba(42,31,20,0.18);
  margin: 14px 0 14px;
}
.size-price {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: #2a1f14;
  letter-spacing: -0.5px;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.size-price-currency {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #6b4f35;
  letter-spacing: 0.3px;
}
.frame-styles {
  max-width: 960px;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: var(--warm-white);
  border: 1.5px solid oklch(90% 0.008 75);
  border-radius: var(--radius-md);
}
.pricing-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
}

/* ── REVIEWS ── */
#reviews {
  padding: 120px 40px;
  background: var(--cream);
}
.reviews-header {
  max-width: 1120px;
  margin: 0 auto 64px;
}
.reviews-overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}
.reviews-score {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--near-black);
  line-height: 1;
}
.reviews-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.reviews-stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  font-size: 22px;
}
.reviews-count {
  font-size: 14px;
  color: var(--mid-gray);
}
.reviews-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid oklch(90% 0.008 75);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.review-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 15px;
}
.review-text {
  font-size: 15px;
  color: var(--near-black);
  line-height: 1.65;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: white;
  flex-shrink: 0;
}
.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--near-black);
}
.review-location {
  font-size: 13px;
  color: var(--mid-gray);
}

/* ── EMOTIONAL SECTION ── */
#emotional {
  padding: 120px 40px;
  background: var(--near-black);
  position: relative;
  overflow: hidden;
}
#emotional::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(80,30,10,0.6) 0%, transparent 70%);
  pointer-events: none;
}
.emotional-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.emotional-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.emotional-title em { color: var(--accent); font-style: italic; }
.emotional-text {
  font-size: 18px;
  color: oklch(72% 0.01 60);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ── EMOTIONAL SLIDESHOW ── */
.emotional-slideshow {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  margin-top: 64px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.emotional-slide-track {
  display: flex;
  gap: 16px;
  animation: slideScroll 28s linear infinite;
  width: max-content;
}
.emotional-slide-track:hover { animation-play-state: paused; }
.emotional-slide {
  flex: 0 0 440px;
  height: 440px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.emotional-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.emotional-slide:hover img { transform: scale(1.05); }
@keyframes slideScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-456px * 6)); }
}

/* ── FAQ ── */
#faq {
  padding: 120px 40px;
  background: var(--warm-white);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid oklch(90% 0.008 75);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid oklch(90% 0.008 75);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--near-black);
  cursor: pointer;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--cream); }
.faq-question.open { background: var(--cream); }
.faq-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid oklch(85% 0.008 60);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s, border-color 0.2s, background 0.2s;
}
.faq-question.open .faq-arrow {
  transform: rotate(45deg);
  border-color: var(--accent);
  background: var(--accent-light);
}
.faq-arrow svg { width: 12px; height: 12px; stroke: var(--mid-gray); stroke-width: 2; fill: none; }
.faq-question.open .faq-arrow svg { stroke: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-answer-inner {
  padding: 24px 32px;
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* ── FINAL CTA ── */
#final-cta {
  padding: 120px 40px;
  background: var(--accent);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(220,130,90,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(180,90,50,0.4) 0%, transparent 50%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  line-height: 1.15;
}
.final-cta-sub {
  font-size: 18px;
  color: oklch(95% 0.04 75 / 0.85);
  margin-bottom: 40px;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--accent);
  border: none;
  border-radius: 100px;
  padding: 18px 40px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px oklch(13% 0.012 60 / 0.24);
}
.btn-white:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px oklch(13% 0.012 60 / 0.32);
}

/* ── FOOTER ── */
footer {
  background: var(--near-black);
  color: oklch(65% 0.01 60);
  padding: 64px 40px 32px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-name {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
}
.footer-brand-name img { display: block; height: 32px; width: auto; }
.footer-brand-desc {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: oklch(50% 0.01 60);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: oklch(65% 0.01 60);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }

/* Telefonní blok v patičce (Zákaznický servis) — pod seznamem odkazů */
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  margin-top: 18px;
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--accent); }
.footer-phone svg { flex-shrink: 0; opacity: 0.7; }
.footer-phone-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
}
.footer-phone-text strong {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.footer-phone-text small {
  font-size: 11px;
  color: oklch(65% 0.01 60);
  font-weight: 400;
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid oklch(22% 0.012 60);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy { font-size: 13px; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.25s;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(10px);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ── SOCIAL PROOF BAR ── */
.social-proof-bar {
  background: var(--warm-white);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  flex-wrap: wrap;
}
.social-proof-bar .sp-divider {
  width: 1.5px;
  height: 28px;
  background: oklch(82% 0.008 60);
}
.social-proof-bar .sp-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-proof-bar .sp-stars {
  display: flex;
  gap: 6px;
  color: #f59e0b;
  font-size: 28px;
}
.social-proof-bar .sp-score {
  font-size: 25px;
  font-weight: 700;
  color: var(--near-black);
}
.social-proof-bar .sp-customers {
  font-size: 25px;
  color: var(--near-black);
  font-weight: 700;
}
.social-proof-bar .sp-customers span {
  font-size: 18px;
  font-weight: 400;
  color: var(--mid-gray);
}
.social-proof-bar .sp-delivery {
  font-size: 18px;
  color: var(--mid-gray);
}
.social-proof-bar .sp-delivery strong {
  color: var(--near-black);
  font-weight: 700;
  font-size: 25px;
}

/* ── MOBILE NAV BURGER ── */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--near-black);
}
.nav-burger svg { display: block; }

/* Mobilní košík v hlavičce (vpravo) — viditelný jen na mobilu */
.nav-cart-mobile {
  display: none;
  position: relative;
  align-items: center;
  color: var(--mid-gray);
  transition: color 0.2s;
  text-decoration: none;
  padding: 8px;
}
.nav-cart-mobile:hover { color: var(--near-black); }
.nav-cart-mobile svg { display: block; }
.nav-cart-mobile .cart-badge {
  position: absolute;
  top: 0; right: 0;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(255,64,19,0.35);
  pointer-events: none;
}

/* Mobile menu overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--warm-white);
  z-index: 99;
  flex-direction: column;
  padding: 40px 24px;
  gap: 0;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--near-black);
  text-decoration: none;
  border-bottom: 1px solid oklch(90% 0.008 75);
  transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile .nav-mobile-link--cart {
  display: flex; align-items: center; gap: 10px;
  position: relative;
}
.nav-mobile .nav-mobile-link--cart svg { width: 22px; height: 22px; flex-shrink: 0; }

/* Telefonní odkaz pod CTA — nenápadný, ne jako položka menu */
.nav-mobile .nav-mobile-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: center;
  padding: 14px 0 0;
  margin-top: 4px;
  border-bottom: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid-gray, #888);
}
.nav-mobile .nav-mobile-phone svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-mobile .nav-mobile-phone:hover { color: var(--accent); }

.nav-mobile .nav-mobile-phone-hours {
  align-self: center;
  margin-top: 2px;
  font-size: 12px;
  color: var(--mid-gray, #888);
  opacity: 0.85;
}

.nav-mobile .nav-mobile-kontakt {
  align-self: center;
  padding: 8px 0 4px;
  margin-top: 6px;
  border-bottom: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid-gray, #888);
}
.nav-mobile .nav-mobile-kontakt:hover { color: var(--accent); }
.nav-mobile .nav-mobile-link--cart .cart-badge {
  position: static; transform: none;
  margin-left: auto;
  box-shadow: 0 2px 6px rgba(255,64,19,0.35);
}
.nav-mobile .nav-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  background: var(--accent);
  color: white;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  border-bottom: none;
}

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 1024px) {
  #hero { padding-left: 24px; gap: 24px; }
  .hero-content { max-width: 100%; }
  .trust-inner { gap: 32px; }
  .pricing-sizes { gap: 16px; }
  .footer-top { gap: 32px; }
}

/* Tablet portrait & small tablets */
@media (max-width: 900px) {
  /* Nav — mobil: burger vlevo, logo uprostřed, košík vpravo */
  nav#main-nav {
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 100%;
    align-items: center;
  }
  .nav-links { display: none !important; }
  .nav-burger { display: flex; align-items: center; justify-self: start; grid-column: 1; grid-row: 1; }
  .nav-logo { justify-self: center; grid-column: 2; grid-row: 1; }
  .nav-cart-mobile { display: inline-flex; justify-self: end; grid-column: 3; grid-row: 1; }

  /* Hero */
  #hero {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-top: 64px;
  }
  .hero-content {
    padding: 60px 24px 32px;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  .hero-subtitle { text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-visual {
    aspect-ratio: 16/9;
    height: auto;
    min-height: 240px;
    border-radius: 20px;
    margin: 0 20px 20px;
  }

  /* Social proof */
  .social-proof-bar { padding: 24px 20px; gap: 16px; }
  .social-proof-bar .sp-divider { display: none; }
  .social-proof-bar .sp-score,
  .social-proof-bar .sp-customers { font-size: 20px; }
  .social-proof-bar .sp-customers span { font-size: 15px; }
  .social-proof-bar .sp-stars { font-size: 22px; }
  .social-proof-bar .sp-delivery { font-size: 15px; }
  .social-proof-bar .sp-delivery strong { font-size: 20px; }

  /* Trust */
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; padding: 0 20px; }

  /* How */
  #how { padding: 80px 20px; }
  .steps-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid::before { display: none; }
  .section-subtitle { margin-bottom: 48px; }

  /* Emotional */
  #emotional { padding: 80px 20px; }
  .emotional-slide { flex: 0 0 300px; height: 300px; }
  @keyframes slideScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-316px * 6)); }
  }

  /* Pricing */
  #pricing { padding: 80px 20px; }
  .pricing-sizes { grid-template-columns: repeat(2, 1fr); }
  .frame-styles { padding: 20px; gap: 16px; flex-direction: column; align-items: flex-start; }

  /* Reviews */
  #reviews { padding: 80px 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-score { font-size: 48px; }

  /* FAQ */
  #faq { padding: 80px 20px; }
  .faq-question { padding: 20px 20px; font-size: 15px; }
  .faq-answer-inner { padding: 0 20px 20px; font-size: 14px; }

  /* Final CTA */
  #final-cta { padding: 80px 20px; }
  .final-cta-sub { font-size: 15px; }
  .btn-white { padding: 16px 32px; font-size: 15px; }

  /* Footer */
  footer { padding: 48px 20px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Lightbox */
  .lightbox { padding: 16px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; }
}

/* Mobile */
@media (max-width: 600px) {
  /* Hero */
  .hero-content { padding: 48px 16px 24px; }
  .hero-title { font-size: clamp(24px, 7vw, 36px); }
  .hero-subtitle { font-size: 15px; margin-bottom: 24px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { justify-content: center; width: 100%; }
  .hero-visual { margin: 0 16px 16px; border-radius: 16px; min-height: 200px; }

  /* Social proof */
  .social-proof-bar { flex-direction: column; gap: 12px; padding: 20px 16px; text-align: center; }

  /* Trust */
  .trust-inner { grid-template-columns: 1fr; gap: 24px; padding: 0 16px; }
  #trust { padding: 32px 0; }
  .trust-label { font-size: 18px; }
  .trust-desc { font-size: 14px; }

  /* How */
  #how { padding: 60px 16px; }
  .step-number { width: 64px; height: 64px; font-size: 24px; }
  .step-title { font-size: 17px; }
  .step-desc { font-size: 14px; }

  /* Emotional */
  #emotional { padding: 60px 16px; }
  .emotional-slideshow { margin-top: 40px; }
  .emotional-slide { flex: 0 0 260px; height: 260px; border-radius: 12px; }
  @keyframes slideScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-276px * 6)); }
  }
  .emotional-text { font-size: 16px; }

  /* Pricing */
  #pricing { padding: 60px 16px; }
  .pricing-sizes { grid-template-columns: 1fr; gap: 32px; }
  .size-card { padding: 32px 20px 20px; }
  .size-visual-wrap { height: 180px; margin-top: -32px; }
  .size-visual-img { max-height: 200px !important; }
  .size-name { font-size: 16px; }
  .size-price { font-size: 26px; }
  .frame-styles { margin-top: 24px; padding: 16px; border-radius: 12px; }
  .pricing-cta-wrap { margin-top: 32px; }
  .pricing-cta-wrap .btn-primary { width: 100%; justify-content: center; }
  .pricing-cta-wrap > div { flex-direction: column; gap: 8px; text-align: center; }
  .pricing-cta-wrap > div span { font-size: 16px !important; }

  /* Reviews */
  #reviews { padding: 60px 16px; }
  .reviews-overall { flex-direction: column; gap: 12px; }
  .reviews-score { font-size: 40px; }
  .review-card { padding: 24px 20px; }
  .review-text { font-size: 14px; }

  /* FAQ */
  #faq { padding: 60px 16px; }
  .section-subtitle { font-size: 15px; }

  /* Final CTA */
  #final-cta { padding: 60px 16px; }
  .final-cta-sub { font-size: 14px; margin-bottom: 28px; }
  .btn-white { width: 100%; justify-content: center; padding: 16px 24px; font-size: 15px; }

  /* Footer */
  footer { padding: 40px 16px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand-name img { height: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }

  /* Lightbox */
  .lightbox { padding: 8px; }
  .lightbox-close, .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  #lb-counter { font-size: 12px; padding: 6px 14px; bottom: 16px; }

  /* Sticky CTA */
  .sticky-cta-btn { padding: 14px 24px; font-size: 14px; }
}

/* ── TEXT PAGE MODAL ── */
.page-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow-y: auto;
}
.page-modal-overlay.open {
  display: flex;
}
.page-modal {
  position: relative;
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px 56px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.page-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--warm-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: var(--near-black);
}
.page-modal-close:hover {
  background: var(--accent-light);
  color: var(--accent);
}
.page-modal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--near-black);
  margin-bottom: 24px;
}
.page-modal-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--near-black);
  margin-top: 28px;
  margin-bottom: 10px;
}
.page-modal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid-gray);
  margin-bottom: 12px;
}
.page-modal-content ul,
.page-modal-content ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.page-modal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid-gray);
  margin-bottom: 6px;
}
.page-modal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-modal-content a:hover {
  color: var(--accent-hover);
}

@media (max-width: 600px) {
  .page-modal-overlay { padding: 0; align-items: flex-end; }
  .page-modal {
    max-width: 100%;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
    padding: 32px 24px 40px;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero-title { font-size: 22px; }
  .hero-subtitle { font-size: 14px; }
  .section-title { font-size: 22px; }
  .emotional-title { font-size: 24px; }
  .final-cta-title { font-size: 24px; }
  .trust-inner { padding: 0 8px; }
  .size-card { padding: 20px 16px 16px; }
  .nav-logo img { height: 18px; }
}

/* ── Home upload overlay (sending to konfigurator) ── */
.home-upload-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(250,246,237,.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}
.home-upload-overlay.visible { display: flex; }
.home-upload-inner { text-align: center; }
.home-upload-spinner {
  width: 38px; height: 38px;
  border: 3px solid rgba(0,0,0,.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 14px;
  animation: home-upload-spin .8s linear infinite;
}
.home-upload-inner p { color: #333; font-size: 15px; font-weight: 500; }
.home-upload-progress {
  width: 220px; height: 4px;
  margin: 14px auto 0;
  background: rgba(0,0,0,.1);
  border-radius: 2px;
  overflow: hidden;
}
.home-upload-progress-bar {
  height: 100%; width: 0;
  background: var(--accent);
  border-radius: 2px;
  transition: width .15s ease;
}
@keyframes home-upload-spin { to { transform: rotate(360deg); } }

/* ── Home drag overlay ── */
.home-drag-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 1990;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.home-drag-overlay.visible { display: flex; }
.home-drag-inner {
  background: white;
  border: 3px dashed var(--accent);
  border-radius: 24px;
  padding: 56px 80px;
  text-align: center;
  color: var(--accent);
  max-width: 90%;
}
.home-drag-title { font-size: 24px; font-weight: 700; margin-top: 14px; color: #1a1a1a; }
.home-drag-sub { font-size: 15px; color: var(--mid-gray); margin-top: 6px; }
@media (max-width: 600px) {
  .home-drag-inner { padding: 36px 28px; }
  .home-drag-title { font-size: 18px; }
  .home-drag-sub { font-size: 13px; }
}
