/* ================================================
   WHEELTOP.CZ – Custom CSS pro Shoptet
   Vložit do: Vzhled → Editor šablony → style.css
   nebo Vzhled → Vlastní CSS
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── PROMĚNNÉ ──────────────────────────────────── */
:root {
  --wt-white: #ffffff;
  --wt-off: #f7f6f4;
  --wt-border: #e2e0dc;
  --wt-text: #1a1a1a;
  --wt-mid: #666560;
  --wt-muted: #9e9c97;
  --wt-accent: #e8ff00;
  --wt-red: #ff3b2f;
}

/* ── HERO ──────────────────────────────────────── */
.wt-hero {
  min-height: 88vh;
  padding: clamp(48px, 8vw, 100px) clamp(20px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--wt-white);
}
.wt-hero-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(200px, 28vw, 480px);
  letter-spacing: -0.02em;
  color: var(--wt-off);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  line-height: 1;
  z-index: 0;
}
.wt-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.wt-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wt-muted);
}
.wt-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wt-red);
  animation: wt-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes wt-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.wt-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 152px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--wt-text);
  margin-bottom: 8px;
}
.wt-hero-title-outline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 152px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  -webkit-text-stroke: 2px var(--wt-text);
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 36px;
}
.wt-hero-desc {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--wt-mid);
  font-weight: 300;
  max-width: 380px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.wt-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.wt-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1.5px solid var(--wt-border);
  color: var(--wt-mid);
  border-radius: 100px;
}
.wt-badge.wt-accent { background: var(--wt-accent); border-color: var(--wt-accent); color: var(--wt-text); }
.wt-hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* Buttons */
.wt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 15px 32px;
  transition: all 0.22s;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.wt-btn-black { background: var(--wt-text); color: #fff; }
.wt-btn-black:hover { background: #2d2d2d; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.15); color: #fff; }
.wt-btn-outline { background: transparent; color: var(--wt-text); border: 1.5px solid var(--wt-border); }
.wt-btn-outline:hover { border-color: var(--wt-text); transform: translateY(-2px); }
.wt-btn-accent { background: var(--wt-accent); color: var(--wt-text); }
.wt-btn-accent:hover { background: #d4f000; transform: translateY(-2px); }
.wt-hero-link {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--wt-mid);
  display: flex; align-items: center; gap: 6px;
  text-decoration: none;
  transition: color 0.2s;
}
.wt-hero-link:hover { color: var(--wt-text); }

/* Hero visual */
.wt-hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.wt-hero-img-container { position: relative; width: 100%; max-width: 560px; }
.wt-hero-img-bg {
  position: absolute; inset: -20%;
  background: radial-gradient(circle at 50% 50%, #f0efeb 0%, transparent 70%);
  border-radius: 50%;
}
.wt-hero-img-container img {
  width: 100%; object-fit: contain;
  position: relative; z-index: 1;
  animation: wt-float 7s ease-in-out infinite;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.12));
}
@keyframes wt-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-14px) rotate(0.5deg); }
  66% { transform: translateY(-6px) rotate(-0.5deg); }
}
.wt-float-tag {
  position: absolute; top: 10%; right: 0;
  background: #fff; border: 1.5px solid var(--wt-border);
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  z-index: 2;
  animation: wt-tag1 5s ease-in-out infinite;
}
@keyframes wt-tag1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.wt-float-tag2 {
  position: absolute; bottom: 14%; left: -24px;
  background: var(--wt-text); padding: 14px 20px;
  z-index: 2;
  animation: wt-tag2 6s ease-in-out infinite;
}
@keyframes wt-tag2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.wt-tag-num { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--wt-text); line-height: 1; }
.wt-tag-label { font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--wt-muted); }
.wt-tag2-label { font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.wt-tag2-val { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--wt-accent); line-height: 1; }

/* ── STRIP ─────────────────────────────────────── */
.wt-strip { background: var(--wt-text); overflow: hidden; padding: 13px 0; border-top: 1.5px solid var(--wt-text); border-bottom: 1.5px solid var(--wt-text); }
.wt-strip-track { display: flex; width: max-content; animation: wt-strip 24s linear infinite; }
@keyframes wt-strip { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.wt-strip-item {
  display: flex; align-items: center; gap: 28px; padding: 0 32px;
  font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6); white-space: nowrap;
}
.wt-strip-item strong { color: var(--wt-accent); }
.wt-strip-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.25); flex-shrink: 0; }

/* ── SECTION COMMON ────────────────────────────── */
.wt-section { padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 72px); }
.wt-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--wt-muted); margin-bottom: 14px;
}
.wt-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.9; color: var(--wt-text);
  letter-spacing: 0.01em;
}
.wt-section-head {
  max-width: 1440px; margin: 0 auto 64px;
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.wt-section-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 15px; color: var(--wt-mid);
  font-weight: 300; max-width: 340px; line-height: 1.7;
}

/* ── PRODUKTOVÉ KARTY ──────────────────────────── */
.wt-products-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.wt-pcard {
  background: var(--wt-off);
  position: relative; overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s;
  cursor: pointer;
}
.wt-pcard:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.1); }
.wt-pcard-accent {
  height: 3px; width: 100%;
  position: absolute; top: 0; left: 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.wt-pcard:hover .wt-pcard-accent { transform: scaleX(1); }
.wt-pcard[data-type="gravel"] .wt-pcard-accent { background: #c8b89a; }
.wt-pcard[data-type="road"] .wt-pcard-accent { background: #93b4f0; }
.wt-pcard[data-type="mtb"] .wt-pcard-accent { background: #86c99a; }
.wt-pcard-top { padding: 36px 36px 0; }
.wt-pcard-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.wt-pcard-type { font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--wt-muted); }
.wt-pcard-stock { display: flex; align-items: center; gap: 5px; font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #16a34a; }
.wt-pcard-stock::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #16a34a; }
.wt-pcard-name { font-family: 'Bebas Neue', sans-serif; font-size: clamp(64px, 7vw, 96px); color: var(--wt-text); line-height: 0.85; letter-spacing: 0.02em; margin-bottom: 6px; }
.wt-pcard-fullname { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--wt-muted); margin-bottom: 28px; }
.wt-pcard-img { width: 100%; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; padding: 24px; position: relative; }
.wt-pcard-img img { width: 100%; max-width: 280px; object-fit: contain; filter: drop-shadow(0 16px 32px rgba(0,0,0,0.13)); transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1); position: relative; }
.wt-pcard:hover .wt-pcard-img img { transform: scale(1.07) translateY(-8px); }
.wt-pcard-bottom { padding: 0 36px 36px; }
.wt-pcard-features { list-style: none; margin-bottom: 28px; }
.wt-pcard-features li { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 400; color: var(--wt-mid); padding: 9px 0; border-bottom: 1px solid var(--wt-border); display: flex; justify-content: space-between; align-items: center; }
.wt-pcard-features li:first-child { border-top: 1px solid var(--wt-border); }
.wt-pcard-features li span { font-weight: 600; color: var(--wt-text); font-size: 12px; }
.wt-pcard-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.wt-pcard-cta { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--wt-text); color: #fff; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; padding: 14px 24px; text-decoration: none; transition: all 0.22s; }
.wt-pcard-cta:hover { background: #2d2d2d; color: #fff; }
.wt-pcard-arrow { width: 48px; height: 48px; border: 1.5px solid var(--wt-border); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--wt-mid); transition: all 0.22s; flex-shrink: 0; }
.wt-pcard:hover .wt-pcard-arrow { background: var(--wt-text); border-color: var(--wt-text); color: #fff; }

/* ── HIGHLIGHT (tmavá sekce) ───────────────────── */
.wt-highlight {
  background: var(--wt-text);
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 72px);
  position: relative; overflow: hidden;
}
.wt-highlight::before {
  content: 'WIRELESS';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(100px, 18vw, 280px);
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none;
}
.wt-highlight-inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px); align-items: center;
  position: relative;
}
.wt-hl-eyebrow { font-family: 'Outfit', sans-serif; font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.wt-hl-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 7vw, 100px); color: #fff; line-height: 0.9; letter-spacing: 0.01em; margin-bottom: 32px; }
.wt-hl-title em { color: var(--wt-accent); font-style: normal; }
.wt-hl-body { font-family: 'Outfit', sans-serif; font-size: 16px; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.8; max-width: 420px; margin-bottom: 48px; }
.wt-hl-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 48px; }
.wt-hl-stat { background: rgba(255,255,255,0.05); padding: 20px 16px; text-align: center; }
.wt-hl-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--wt-accent); line-height: 1; margin-bottom: 4px; }
.wt-hl-stat-label { font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.wt-hl-img-wrap { position: relative; width: 100%; max-width: 500px; margin: auto; }
.wt-hl-img-wrap img { width: 100%; object-fit: contain; filter: drop-shadow(0 24px 48px rgba(232,255,0,0.15)) brightness(1.05); }
.wt-spec-float { position: absolute; background: rgba(255,255,255,0.06); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); padding: 12px 16px; }
.wt-spec-float-key { font-family: 'Outfit', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 3px; }
.wt-spec-float-val { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: #fff; line-height: 1; }
.wt-sf-1 { top: 8%; right: -16px; }
.wt-sf-2 { bottom: 12%; left: -16px; }

/* ── FEATURES MŘÍŽKA ───────────────────────────── */
.wt-features-row {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1.5px solid var(--wt-border);
  border-left: 1.5px solid var(--wt-border);
}
.wt-feat-cell { padding: 40px 32px; border-right: 1.5px solid var(--wt-border); border-bottom: 1.5px solid var(--wt-border); transition: background 0.3s; }
.wt-feat-cell:hover { background: var(--wt-off); }
.wt-feat-icon { font-size: 28px; margin-bottom: 18px; display: block; }
.wt-feat-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--wt-text); letter-spacing: 0.03em; margin-bottom: 10px; }
.wt-feat-body { font-family: 'Outfit', sans-serif; font-size: 13.5px; color: var(--wt-mid); font-weight: 300; line-height: 1.7; }

/* ── SROVNÁVACÍ TABULKA ────────────────────────── */
.wt-compare { background: var(--wt-off); padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 72px); }
.wt-compare-inner { max-width: 1440px; margin: 0 auto; }
.wt-table-wrap { overflow-x: auto; margin-top: 56px; border: 1.5px solid var(--wt-border); background: #fff; }
.wt-table { width: 100%; min-width: 600px; border-collapse: collapse; }
.wt-table th { padding: 20px 24px; text-align: left; font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.05em; color: var(--wt-text); border-bottom: 1.5px solid var(--wt-border); background: #fff; }
.wt-table th:first-child { font-family: 'Outfit', sans-serif; font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--wt-muted); }
.wt-table th.col-gex { color: #7c6f5e; }
.wt-table th.col-tx { color: #2563eb; }
.wt-table th.col-ox { color: #16a34a; }
.wt-table td { padding: 16px 24px; font-family: 'Outfit', sans-serif; font-size: 14px; color: var(--wt-mid); border-bottom: 1px solid var(--wt-border); vertical-align: middle; }
.wt-table td:first-child { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--wt-muted); background: var(--wt-off); }
.wt-table td strong { font-weight: 600; color: var(--wt-text); }
.wt-check { color: #16a34a; font-size: 16px; }
.wt-dash { color: var(--wt-border); }

/* ── RECENZE ───────────────────────────────────── */
.wt-reviews { padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 72px); }
.wt-reviews-inner { max-width: 1440px; margin: 0 auto; }
.wt-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.wt-rcard { background: var(--wt-off); padding: 36px; border-bottom: 3px solid transparent; transition: border-color 0.3s, transform 0.3s; }
.wt-rcard:hover { border-color: var(--wt-text); transform: translateY(-4px); }
.wt-rcard-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.wt-rcard-star { width: 14px; height: 14px; background: var(--wt-text); clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.wt-rcard-quote { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 300; color: var(--wt-text); line-height: 1.75; font-style: italic; margin-bottom: 28px; }
.wt-rcard-author { display: flex; align-items: center; justify-content: space-between; }
.wt-rcard-name { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--wt-mid); }
.wt-rcard-product { font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 10px; border: 1.5px solid var(--wt-border); color: var(--wt-muted); }

/* ── FINAL CTA ─────────────────────────────────── */
.wt-final-cta { background: var(--wt-off); border-top: 1.5px solid var(--wt-border); padding: clamp(72px, 10vw, 100px) clamp(20px, 5vw, 72px); }
.wt-final-cta-inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.wt-final-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 6vw, 80px); line-height: 0.92; color: var(--wt-text); letter-spacing: 0.01em; }
.wt-final-sub { font-family: 'Outfit', sans-serif; font-size: 15px; color: var(--wt-mid); font-weight: 300; margin-top: 16px; max-width: 380px; line-height: 1.7; }
.wt-final-btns { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

/* ── SCROLL ANIMACE ────────────────────────────── */
.wt-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.23, 1, 0.32, 1), transform 0.65s cubic-bezier(0.23, 1, 0.32, 1); }
.wt-reveal.wt-visible { opacity: 1; transform: none; }
.wt-d1 { transition-delay: 0.08s; }
.wt-d2 { transition-delay: 0.16s; }
.wt-d3 { transition-delay: 0.24s; }

/* ── RESPONZIVITA ──────────────────────────────── */
@media (max-width: 1024px) {
  .wt-products-grid { grid-template-columns: 1fr; max-width: 520px; }
  .wt-features-row { grid-template-columns: repeat(2, 1fr); }
  .wt-highlight-inner { grid-template-columns: 1fr; }
  .wt-reviews-grid { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 768px) {
  .wt-hero-inner { grid-template-columns: 1fr; }
  .wt-hero-visual { order: -1; max-width: 360px; margin: 0 auto; }
  .wt-final-cta-inner { grid-template-columns: 1fr; }
  .wt-final-btns { flex-direction: row; flex-wrap: wrap; }
  .wt-section-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .wt-features-row { grid-template-columns: 1fr; }
  .wt-float-tag { right: -8px; }
  .wt-float-tag2 { left: -8px; }
}
