:root {
  --cyan: #00E5E5;
  --violet: #A100FF;
  --violet-dark: #7900C0;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --gray-bg: #F2F2F2;
  --gray-bg-hover: #E8E8E8;
  --gray-mid: #888;
  --gray-text: #555;
  --gray-divider: #DDD;
  --warning: #ff6b1a;
}
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  background: var(--white); color: var(--black); line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased; font-size: 16px;
  margin: 0;
}

/* === EIN 1200 PX CONTAINER UM ALLES === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
}

/* === SITE HEADER (Logo links, Burger rechts) === */
.site-header {
  background: var(--white);
  position: relative;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 20px;
}
.brand-link {
  display: block;
  text-decoration: none;
  line-height: 0;
}
.brand-logo {
  height: 80px;
  width: auto;
  display: block;
  transition: opacity 0.15s;
}
.brand-link:hover .brand-logo, .brand-link:active .brand-logo { opacity: 0.75; }
@media (max-width: 600px) {
  .brand-logo { height: 56px; }
  .header-inner { padding: 16px 0 14px; }
}

/* Burger Button */
.burger {
  background: none; border: none; padding: 0;
  width: 48px; height: 48px;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 28px; height: 3px;
  background: var(--black);
  transition: transform 0.25s ease, opacity 0.15s ease;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* === OFF-CANVAS NAV === */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 200;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }

.main-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 320px; max-width: 90vw;
  background: var(--white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
  display: flex; flex-direction: column;
}
.main-nav.open { transform: translateX(0); }
.main-nav-top {
  display: flex; justify-content: flex-end; align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-divider);
}
.main-nav-close {
  background: none; border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
}
.main-nav-close svg { width: 20px; height: 20px; }
.main-nav ul {
  list-style: none; padding: 8px 0; margin: 0;
}
.main-nav li { margin: 0; }
.main-nav a {
  display: block;
  padding: 16px 24px;
  font-size: 17px; font-weight: 700;
  color: var(--black);
  text-decoration: none;
  border-left: 4px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.main-nav a:hover { background: var(--gray-bg); }
.main-nav li.active a {
  border-left-color: var(--cyan);
  color: var(--violet);
  background: var(--gray-bg);
}

/* === ARTICLE TYPOGRAFIE === */
article { width: 100%; padding-top: 24px; }
article h1 {
  font-size: 40px; font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.15; margin-bottom: 16px;
}
article .subtitle {
  font-size: 18px; color: var(--gray-text); font-weight: 500;
  margin-bottom: 28px; line-height: 1.5;
}
article h2 {
  font-size: 30px; font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.2; margin: 44px 0 14px;
}
article h3 {
  font-size: 19px; font-weight: 700; margin: 22px 0 8px;
}
article p {
  font-size: 16px; line-height: 1.65; margin-bottom: 14px;
}
article ul, article ol { padding-left: 22px; margin-bottom: 16px; }
article li { margin-bottom: 6px; line-height: 1.55; }
article a {
  color: var(--violet); text-decoration: underline; font-weight: 600;
}
article a:hover { color: var(--violet-dark); }
article strong { font-weight: 700; }

@media (max-width: 600px) {
  article h1 { font-size: 28px; }
  article h2 { font-size: 22px; }
  article h3 { font-size: 17px; }
  article .subtitle { font-size: 16px; }
  article p { font-size: 15px; }
}

/* === HERO-FRAME (16:9 garantiert) === */
.hero-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: var(--gray-bg);
  display: block;
}
.hero-frame img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-hero { margin: 12px 0 36px; }
.section-hero { margin: 40px 0 32px; }

/* === CTA MINI === */
.cta-mini {
  background: var(--gray-bg);
  padding: 18px 22px;
  margin: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  border-left: 4px solid var(--cyan);
}
.cta-mini-text { font-weight: 700; font-size: 14px; color: var(--black); }
.cta-mini-btn {
  background: var(--cyan); color: var(--black); padding: 12px 18px;
  font-weight: 800; font-size: 13px; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.cta-mini-btn:hover, .cta-mini-btn:active { background: var(--violet); color: var(--white); }
@media (max-width: 600px) {
  .cta-mini { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-mini-btn { text-align: center; }
}

/* === CTA HERO (mit Bildhintergrund + Overlay) === */
.cta-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 32px;
  margin: 56px 0;
  text-align: center;
  color: var(--white);
  isolation: isolate;
  background: var(--black);
}
.cta-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/outfit-outdoor.jpg') center/cover no-repeat;
  z-index: -2;
}
.cta-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10,10,10,0.78), rgba(10,10,10,0.78));
  z-index: -1;
}
.cta-hero-label {
  display: inline-block;
  background: var(--cyan);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: 18px;
}
.cta-hero h3 {
  color: var(--white);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 14px;
}
.cta-hero p {
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  line-height: 1.5;
  max-width: 580px;
  margin: 0 auto 24px;
}
.cta-hero-btn {
  display: inline-block;
  background: var(--cyan);
  color: var(--black);
  padding: 18px 38px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.15s, color 0.15s;
}
.cta-hero-btn:hover, .cta-hero-btn:active {
  background: var(--violet);
  color: var(--white);
}
@media (max-width: 600px) {
  .cta-hero { padding: 44px 22px; }
  .cta-hero h3 { font-size: 24px; }
  .cta-hero p { font-size: 15px; }
  .cta-hero-btn { padding: 14px 28px; font-size: 14px; }
}

/* === CTA LARGE === */
.cta-large {
  background: var(--black); color: var(--white);
  padding: 56px 32px;
  margin: 56px 0;
  text-align: center;
}
.cta-large h3 {
  color: var(--white); font-size: 28px; font-weight: 800; margin-bottom: 16px;
}
.cta-large p {
  color: #ccc; font-size: 16px; line-height: 1.6;
  max-width: 640px; margin: 0 auto 24px;
}
.cta-large-btn {
  display: inline-block; background: var(--cyan); color: var(--black);
  padding: 16px 36px;
  font-weight: 800; font-size: 14px; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: background 0.15s, color 0.15s;
}
.cta-large-btn:hover, .cta-large-btn:active { background: var(--violet); color: var(--white); }
@media (max-width: 600px) {
  .cta-large { padding: 40px 22px; }
  .cta-large h3 { font-size: 22px; }
  .cta-large p { font-size: 14px; }
}

/* === TEMPERATUR-BLOCK === */
.temp-block {
  border: 2px solid var(--gray-divider);
  margin: 32px 0;
  overflow: hidden;
}
.temp-block-content { padding: 28px 32px; }
.temp-block-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.temp-badge {
  background: var(--cyan); color: var(--black);
  padding: 6px 14px; font-weight: 800; font-size: 14px;
  letter-spacing: 0.03em; flex-shrink: 0;
}
.temp-block h3 { margin: 0; font-size: 20px; font-weight: 800; }
.temp-block p { font-size: 16px; line-height: 1.6; margin-bottom: 0; }
@media (max-width: 600px) {
  .temp-block-content { padding: 18px 16px; }
}

/* === GEAR GRID === */
.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin: 18px 0 14px;
}
.gear-item {
  background: var(--gray-bg);
  padding: 10px 8px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  text-decoration: none;
  color: var(--black);
  transition: background 0.15s;
}
a.gear-item:hover { background: var(--gray-bg-hover); }
a.gear-item .gear-item-label { color: var(--black); }
.gear-item-buy {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 2px;
}
a.gear-item:hover .gear-item-buy { color: var(--violet); }
.gear-item img {
  width: 100%; aspect-ratio: 1; object-fit: contain;
  background: var(--white); display: block;
}
.gear-item-label {
  font-size: 12px; font-weight: 700; margin-top: 8px; line-height: 1.2;
  color: var(--black);
}

/* === PRODUCT CARDS (Affiliate) === */
.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 14px 0 4px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-divider);
  padding: 18px 20px;
  text-decoration: none !important;
  color: var(--black);
  transition: border-color 0.15s;
}
.product-card:hover { border-color: var(--cyan); }
.product-card-label {
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 6px;
}
.product-card-title {
  font-size: 15px; font-weight: 700;
  line-height: 1.35; color: var(--black);
  margin-bottom: 4px;
}
.product-card-meta {
  font-size: 13px; color: var(--gray-text);
  margin-bottom: 14px; line-height: 1.5;
}
.product-card-cta {
  display: inline-block;
  background: var(--cyan);
  color: var(--black);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 12px 18px;
  margin-top: auto;
  text-align: center;
  align-self: stretch;
  transition: background 0.15s, color 0.15s;
}
.product-card:hover .product-card-cta {
  background: var(--violet);
  color: var(--white);
}

/* === FAQ === */
.faq-item { border-bottom: 1px solid var(--gray-divider); padding: 20px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-weight: 800; font-size: 17px; margin-bottom: 10px; }
.faq-a { color: var(--gray-text); line-height: 1.65; }

/* === RELATED === */
.related { background: var(--gray-bg); padding: 26px 28px; margin: 40px 0 0; }
.related h3 {
  margin-top: 0; font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--gray-text);
}
.related ul { list-style: none; padding: 0; margin-top: 14px; }
.related li { margin-bottom: 8px; }
.related a { font-weight: 600; }

/* === SITE FOOTER === */
.site-footer {
  margin-top: 60px;
  padding: 36px 0 24px;
  border-top: 1px solid var(--gray-divider);
  font-size: 13px; color: var(--gray-mid);
  font-weight: 500; line-height: 1.6;
}
.footer-top {
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.footer-symbol-link { line-height: 0; }
.footer-symbol { height: 32px; width: auto; opacity: 0.85; }
.footer-nav {
  display: flex; flex-wrap: wrap; gap: 4px 18px;
  list-style: none; padding: 0; margin: 0;
}
.footer-nav a {
  color: var(--gray-text); text-decoration: none; font-weight: 600;
  font-size: 14px;
}
.footer-nav a:hover { color: var(--black); }
.footer-disclaimer {
  font-size: 12px; color: var(--gray-mid);
  border-top: 1px solid var(--gray-divider);
  padding-top: 20px;
}
.footer-arrow { color: var(--cyan); font-weight: 800; }
.footer-copy { margin-top: 10px; font-size: 11px; color: var(--gray-mid); }
@media (max-width: 600px) {
  .footer-top { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-disclaimer { font-size: 11px; }
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 3px solid var(--violet);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
  padding: 18px 16px 16px; z-index: 9999;
  font-size: 13px; line-height: 1.5;
  animation: cookieSlideUp 0.3s ease-out;
}
@keyframes cookieSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-content { max-width: 560px; margin: 0 auto; }
.cookie-text strong {
  display: block; margin-bottom: 6px; font-size: 14px; font-weight: 800; color: var(--black);
}
.cookie-text p { margin: 0 0 14px; color: var(--gray-text); font-size: 13px; }
.cookie-text a { color: var(--black); text-decoration: underline; font-weight: 600; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-btn {
  flex: 1; padding: 13px 16px; font-size: 13px; font-weight: 800;
  border: none; cursor: pointer; font-family: inherit;
  transition: background 0.15s, color 0.15s;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.cookie-decline { background: var(--gray-bg); color: var(--black); }
.cookie-decline:active { background: var(--gray-bg-hover); }
.cookie-accept { background: var(--cyan); color: var(--black); }
.cookie-accept:active { background: var(--violet); color: var(--white); }
