/* ── WEBORNIN OUTDOOR — Design System ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --forest:  #1C3A1A;
  --forest2: #142B12;
  --moss:    #4A6741;
  --moss2:   #3a5333;
  --amber:   #D4861A;
  --amber2:  #b87215;
  --stone:   #F2EDE6;
  --stone2:  #E8E1D8;
  --ink:     #1A1A1A;
  --mu:      #5A5A5A;
  --mu2:     #8A8A8A;
  --chalk:   #FFFFFF;
  --line:    #D8D2C8;
  --line2:   #E8E2DA;
  --red-cert:#C0392B;
  --fd: 'Libre Baskerville', Georgia, serif;
  --fb: 'Inter', Arial, sans-serif;
  --tr: .22s ease;
  --radius: 6px;
  --shadow: 0 2px 16px rgba(28,58,26,.10);
  --shadow-lg: 0 6px 32px rgba(28,58,26,.14);
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--stone);
  color: var(--ink);
  line-height: 1.7;
  font-size: 18px;
  overflow-x: hidden;
}
.container { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 28px; }
a { text-decoration: none; color: inherit; }
img { display: block; }

/* ── INFO BAR ── */
.info-bar {
  background: var(--forest2);
  color: rgba(255,255,255,.65);
  font-size: 14px;
  font-family: var(--fb);
  padding: 8px 0;
  letter-spacing: .02em;
}
.info-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.info-bar a { color: rgba(255,255,255,.65); transition: color .2s; }
.info-bar a:hover { color: var(--amber); }

/* ── HEADER ── */
.header {
  background: var(--chalk);
  border-bottom: 2px solid var(--forest);
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 2px 20px rgba(28,58,26,.10);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__icon {
  width: 42px;
  height: 42px;
  background: var(--forest);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo__icon svg { width: 24px; height: 24px; }
.logo__name {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: .02em;
  line-height: 1;
}
.logo__tag {
  display: block;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 3px;
}
/* Nav */
.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 600;
  color: var(--mu);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--tr);
  letter-spacing: .01em;
}
.nav a:hover, .nav a.active { color: var(--forest); background: rgba(28,58,26,.07); }
.nav a.nav-cta {
  background: var(--amber);
  color: var(--chalk);
  padding: 9px 20px;
  border-radius: var(--radius);
}
.nav a.nav-cta:hover { background: var(--amber2); }
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: var(--tr);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--chalk);
  border-top: 1px solid var(--line);
  padding: 10px 28px 20px;
}
.mobile-nav a {
  padding: 13px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--mu);
  border-bottom: 1px solid var(--line2);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--forest); }
.mobile-nav.open { display: flex; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--fb);
  font-size: 17px;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--tr);
  text-align: center;
  letter-spacing: .01em;
}
.btn-amber { background: var(--amber); color: var(--chalk); }
.btn-amber:hover { background: var(--amber2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,134,26,.35); }
.btn-forest { background: var(--forest); color: var(--chalk); }
.btn-forest:hover { background: var(--forest2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--forest); border: 2px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--chalk); }
.btn-outline-white { background: transparent; color: var(--chalk); border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }
.btn-lg { padding: 18px 44px; font-size: 19px; }

/* ── WANDER-ZÄHLER (Signature animated strip) ── */
.wanderzaehler {
  background: var(--forest);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.wanderzaehler__track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: wzScroll 30s linear infinite;
  white-space: nowrap;
  padding: 14px 0;
}
.wanderzaehler__track:hover { animation-play-state: paused; }
@keyframes wzScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.wz-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,.15);
  flex-shrink: 0;
}
.wz-item__num {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 700;
  color: var(--amber);
}
.wz-item__label {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── TRUST BAR ── */
.trust-bar { background: var(--chalk); border-bottom: 1px solid var(--line); padding: 12px 0; }
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
}
.trust-item__icon { font-size: 20px; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(28,58,26,.08);
  border: 1px solid rgba(28,58,26,.15);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: .06em;
}
.trust-badge--red { background: rgba(192,57,43,.08); border-color: rgba(192,57,43,.2); color: var(--red-cert); }

/* ── SECTIONS ── */
.section { padding: 72px 0; }
.section--stone { background: var(--stone); }
.section--chalk { background: var(--chalk); }
.section--forest { background: var(--forest); }
.section--stone2 { background: var(--stone2); }
.section-eyebrow {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--fd);
  font-size: clamp(26px,3.5vw,42px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title--white { color: var(--chalk); }
.section-sub {
  font-size: 18px;
  color: var(--mu);
  line-height: 1.75;
  max-width: 620px;
}
.section-sub--white { color: rgba(255,255,255,.7); }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── PRODUCT CARDS ── */
.product-card {
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--tr);
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--moss);
}
.product-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  background: var(--stone2);
}
.product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-card__body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
}
.product-card__title {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.product-card__title a:hover { color: var(--forest); }
.product-card__spec {
  font-size: 13px;
  color: var(--mu2);
  font-family: var(--fb);
  letter-spacing: .03em;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line2);
  margin-top: auto;
}
.product-card__price {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 700;
  color: var(--forest);
}
.product-card__price-old {
  font-size: 15px;
  color: var(--mu2);
  text-decoration: line-through;
  display: block;
}
.product-card__btn {
  background: var(--forest);
  color: var(--chalk);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition: var(--tr);
  white-space: nowrap;
}
.product-card__btn:hover { background: var(--moss); }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--mu2);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--moss); transition: color .2s; }
.breadcrumb a:hover { color: var(--forest); }

/* ── STARS ── */
.stars { color: var(--amber); font-size: 18px; letter-spacing: 1px; }

/* ── TECH TABLE (German specificity) ── */
.tech-table { width: 100%; border-collapse: collapse; font-size: 16px; }
.tech-table tr { border-bottom: 1px solid var(--line2); }
.tech-table tr:last-child { border-bottom: none; }
.tech-table td { padding: 11px 14px; vertical-align: top; }
.tech-table td:first-child {
  font-weight: 700;
  color: var(--ink);
  width: 42%;
  background: var(--stone);
}
.tech-table td:last-child { color: var(--mu); background: var(--chalk); }

/* ── FOOTER ── */
footer { background: var(--forest2); color: rgba(255,255,255,.55); }
.footer__top {
  padding: 56px 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__about { font-size: 15px; line-height: 1.8; margin-top: 16px; max-width: 260px; }
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--chalk);
  margin-bottom: 16px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 15px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer__links a:hover { color: var(--amber); }
.footer__contact { font-size: 15px; line-height: 1.9; }
.footer__contact a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer__contact a:hover { color: var(--amber); }
.footer__bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}
.footer__nachhaltigkeit {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-top: 16px;
}

/* ── SCROLL TOP ── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--forest);
  color: var(--chalk);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--tr);
  z-index: 50;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--moss); }

/* ── RESPONSIVE ── */
@media(max-width: 960px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media(max-width: 768px) {
  body { font-size: 17px; }
  .container { padding: 0 18px; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 48px 0; }
  .footer__top { grid-template-columns: 1fr; gap: 24px; }
  .footer__about { max-width: none; }
}
