﻿/* ============================================================
   SportPulse – styles.css
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0f172a;
  --orange:  #f97316;
  --orange2: #ea580c;
  --cyan:    #06b6d4;
  --bg:      #ffffff;
  --bg2:     #f8fafc;
  --bg3:     #f1f5f9;
  --text:    #1e293b;
  --muted:   #64748b;
  --border:  #e2e8f0;
  --green:   #22c55e;
  --red:     #ef4444;
  --radius:  10px;
  --shadow:  0 4px 24px rgba(0,0,0,.10);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── UTILITY ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 50px;
  font-size: 17px; font-weight: 700; cursor: pointer; border: none;
  transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,.35); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-lg { font-size: 19px; padding: 18px 44px; }
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 13px; font-weight: 600;
}
.badge-red { background: var(--red); color: #fff; }
.badge-green { background: var(--green); color: #fff; }
.section-title {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800;
  color: var(--navy); margin-bottom: 12px; line-height: 1.2;
}
.section-sub { font-size: 17px; color: var(--muted); margin-bottom: 40px; }
.text-center { text-align: center; }

/* ── HEADER ── */
.site-header {
  background: var(--navy); position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: 1120px; margin: 0 auto;
}
.logo { color: #fff; font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.logo span { color: var(--orange); }
.header-contact { color: #94a3b8; font-size: 14px; display: flex; gap: 16px; }
.header-contact a { color: #cbd5e1; }
.header-contact a:hover { color: var(--orange); text-decoration: none; }
.header-trust {
  background: var(--orange); text-align: center; padding: 7px;
  font-size: 13px; font-weight: 600; color: #fff; letter-spacing: .3px;
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 60px 0 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?w=1400&q=80');
  background-size: cover; background-position: center;
  opacity: .22;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 440px;
  gap: 40px; align-items: center;
  max-width: 1120px; margin: 0 auto; padding: 0 20px 60px;
}
.hero-eyebrow { color: var(--orange); font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.hero-title {
  font-size: clamp(30px, 4.5vw, 52px); font-weight: 900; color: #fff;
  line-height: 1.12; margin-bottom: 18px;
}
.hero-title em { color: var(--orange); font-style: normal; }
.hero-desc { color: #94a3b8; font-size: 18px; margin-bottom: 28px; max-width: 480px; }
.hero-price-row { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.price-now { color: var(--orange); font-size: 42px; font-weight: 900; }
.price-was { color: #64748b; font-size: 22px; text-decoration: line-through; }
.price-save { background: var(--red); color: #fff; padding: 4px 10px; border-radius: 6px; font-size: 14px; font-weight: 700; }
.hero-cta-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-img-wrap {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  position: relative;
}
.hero-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-img-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(15,23,42,.88); color: #fff; border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px); border-radius: 10px; padding: 10px 14px;
}
.hero-img-badge strong { display: block; font-size: 15px; }
.hero-img-badge span { font-size: 12px; color: #94a3b8; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.trust-icon { font-size: 26px; }
.trust-item strong { font-size: 13px; font-weight: 700; color: var(--navy); }
.trust-item span { font-size: 12px; color: var(--muted); }

/* ── FEATURES ── */
.features-section { padding: 72px 0; background: var(--bg); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feat-card {
  background: var(--bg2); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}
.feat-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.feat-icon { font-size: 36px; margin-bottom: 14px; }
.feat-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ── PRODUCT DETAIL ── */
.product-section { padding: 72px 0; background: var(--bg3); }
.product-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
}
.product-gallery { display: flex; flex-direction: column; gap: 12px; }
.product-img-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.product-img-main img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-img-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.product-img-row div { border-radius: 8px; overflow: hidden; border: 2px solid var(--border); cursor: pointer; }
.product-img-row div:hover { border-color: var(--orange); }
.product-img-row img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-info {}
.product-badge-row { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.product-name { font-size: 28px; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.product-sku { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.stars { color: #f59e0b; font-size: 18px; }
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.rating-count { font-size: 14px; color: var(--muted); }
.product-price-box {
  background: var(--bg); border-radius: var(--radius);
  padding: 20px; border: 1px solid var(--border); margin-bottom: 20px;
}
.product-price-box .price-now { font-size: 36px; }
.price-note { font-size: 12px; color: var(--muted); margin-top: 6px; }
.check-list { margin-bottom: 20px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; padding: 6px 0; border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border: none; }
.check-list .ck { color: var(--green); font-size: 16px; font-weight: 700; flex-shrink: 0; }
.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.qty-row label { font-size: 14px; font-weight: 600; }
.qty-select {
  padding: 10px 16px; border-radius: 8px; border: 1px solid var(--border);
  font-size: 15px; background: var(--bg); cursor: pointer;
}
.btn-order { width: 100%; margin-bottom: 12px; text-align: center; font-size: 18px; padding: 18px; border-radius: var(--radius); }
.payment-icons { display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap; }
.pay-icon {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 6px;
  padding: 5px 10px; font-size: 12px; font-weight: 700; color: var(--muted);
}

/* ── SPECS ── */
.specs-section { padding: 72px 0; background: var(--bg); }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr:nth-child(even) td { background: var(--bg2); }
.specs-table td {
  padding: 12px 18px; border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.specs-table td:first-child { font-weight: 600; color: var(--navy); width: 38%; }

/* ── SPORTS ── */
.sports-section { padding: 72px 0; background: var(--bg3); }
.sports-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.sport-item {
  background: var(--bg); border-radius: var(--radius); padding: 20px 12px;
  text-align: center; border: 1px solid var(--border);
}
.sport-item .si { font-size: 30px; margin-bottom: 8px; }
.sport-item span { font-size: 13px; font-weight: 600; color: var(--navy); }

/* ── GALLERY ── */
.gallery-section { padding: 72px 0; background: var(--bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }

/* ── REVIEWS ── */
.reviews-section { padding: 72px 0; background: var(--bg3); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--bg); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff; display: flex;
  align-items: center; justify-content: center; font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 15px; color: var(--navy); }
.review-meta { font-size: 12px; color: var(--muted); }
.review-text { font-size: 14px; color: var(--text); line-height: 1.6; }
.review-stars { color: #f59e0b; font-size: 14px; margin-bottom: 10px; }
.review-verified { font-size: 11px; color: var(--green); font-weight: 600; margin-top: 10px; }

/* ── ORDER FORM ── */
.order-section {
  padding: 80px 0; background: var(--navy);
  position: relative; overflow: hidden;
}
.order-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1200&q=60');
  background-size: cover; background-position: center; opacity: .08;
}
.order-inner { position: relative; z-index: 1; }
.order-inner .section-title { color: #fff; }
.order-inner .section-sub { color: #94a3b8; }
.order-form-wrap {
  max-width: 640px; margin: 0 auto;
  background: var(--bg); border-radius: 16px;
  padding: 36px; box-shadow: 0 24px 80px rgba(0,0,0,.3);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 14px; border-radius: 8px; border: 1.5px solid var(--border);
  font-size: 15px; font-family: inherit; color: var(--text);
  transition: border-color .15s;
  background: var(--bg);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.form-street-row { display: grid; grid-template-columns: 1fr 100px; gap: 12px; }
.form-plz-row { display: grid; grid-template-columns: 120px 1fr; gap: 12px; }
.form-submit-btn {
  width: 100%; padding: 18px; font-size: 18px; font-weight: 700;
  background: var(--orange); color: #fff; border: none; border-radius: 10px;
  cursor: pointer; margin-top: 8px;
  transition: background .15s, transform .15s;
}
.form-submit-btn:hover { background: var(--orange2); transform: translateY(-1px); }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }
.form-divider { text-align: center; margin: 16px 0; font-size: 13px; color: var(--muted); font-weight: 600; }

/* ── FAQ ── */
.faq-section { padding: 72px 0; background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer; font-weight: 600; font-size: 15px;
  color: var(--navy);
}
.faq-q:hover { color: var(--orange); }
.faq-toggle { font-size: 20px; color: var(--orange); transition: transform .2s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 16px; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: #94a3b8; padding: 52px 0 20px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1.4fr 1.4fr 1fr;
  gap: 40px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 20px;
}
.footer-col .logo { font-size: 20px; margin-bottom: 12px; display: block; }
.footer-col-desc { font-size: 13px; color: #94a3b8; line-height: 1.65; max-width: 260px; margin-bottom: 0; }
.footer-col-title {
  color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col p { font-size: 13px; color: #94a3b8; line-height: 1.7; margin-bottom: 2px; }
.footer-col p a { color: #94a3b8; }
.footer-col p a:hover { color: var(--orange); text-decoration: none; }
.footer-nav { display: flex; flex-direction: column; gap: 9px; }
.footer-nav a { font-size: 13px; color: #94a3b8; }
.footer-nav a:hover { color: var(--orange); text-decoration: none; }
.footer-bottom {
  padding-top: 18px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12px; color: #64748b; }
.footer-pay { display: flex; gap: 8px; }
.footer-pay span {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 5px; padding: 3px 8px; font-size: 11px; font-weight: 700; color: #64748b;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--navy); border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -4px 28px rgba(0,0,0,.3);
  padding: 16px 24px; display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; transform: translateY(110%);
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
}
.cookie-banner.cb-visible { transform: translateY(0); }
.cookie-banner p { color: #cbd5e1; font-size: 13px; flex: 1; min-width: 200px; line-height: 1.5; }
.cookie-banner p a { color: var(--orange); }
.cb-btns { display: flex; gap: 10px; }
.cb-decline {
  padding: 9px 18px; border-radius: 8px; border: 1px solid rgba(255,255,255,.2);
  background: transparent; color: #cbd5e1; font-size: 13px; cursor: pointer; font-weight: 600;
}
.cb-decline:hover { background: rgba(255,255,255,.06); }
.cb-accept {
  padding: 9px 18px; border-radius: 8px; border: none;
  background: var(--orange); color: #fff; font-size: 13px; cursor: pointer; font-weight: 700;
}

/* ── TOAST ── */
#toast {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--navy); color: #fff; padding: 12px 24px; border-radius: 8px;
  font-size: 14px; opacity: 0; transition: all .3s; pointer-events: none; z-index: 1000;
  white-space: nowrap;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy); padding: 48px 0 40px;
  text-align: center; color: #fff;
}
.page-hero h1 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.page-hero p { color: #94a3b8; font-size: 15px; }
.page-content { padding: 60px 0; }
.page-content .container { max-width: 800px; }
.page-content h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.page-content h2:first-child { margin-top: 0; }
.page-content p, .page-content li { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 10px; }
.page-content ul { list-style: disc; padding-left: 20px; }
.page-content ul li { margin-bottom: 6px; }
.page-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.page-content table td, .page-content table th { padding: 10px 14px; border: 1px solid var(--border); font-size: 14px; }
.page-content table th { background: var(--bg2); font-weight: 600; }
.impressum-box {
  background: var(--bg2); border-radius: var(--radius); border: 1px solid var(--border);
  padding: 24px; margin-bottom: 20px;
}
.impressum-box p { margin-bottom: 6px; }

/* ── DANKE PAGE ── */
.danke-hero { min-height: 70vh; display: flex; align-items: center; justify-content: center; background: var(--bg2); }
.danke-box { text-align: center; padding: 48px; max-width: 520px; }
.danke-icon { font-size: 72px; margin-bottom: 20px; }
.danke-box h1 { font-size: 32px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.danke-box p { font-size: 16px; color: var(--muted); margin-bottom: 28px; line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { max-width: 440px; margin: 0 auto; }
  .product-inner { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .sports-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .header-contact { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

