/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FFA72F;
  --orange-dark: #FF7C2E;
  --red: #F22B2F;
  --dark: #333333;
  --dark2: #1a1a1a;
  --gray: #666;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --nav-blue: #1a1a1a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, #FFA72F 0%, #FF7C2E 40%, #FF4A2A 75%, #F22B2F 100%);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.announcement-bar a { color: var(--orange); }

/* ===== NAVIGATION ===== */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-bottom: 1px solid #f0f0f0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}

.nav-logo img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  flex: 1;
}

.nav-links a, .nav-dropdown > span {
  color: var(--dark);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.nav-links a:hover, .nav-dropdown > span:hover { background: var(--light-gray); }
.nav-links a.active { background: var(--light-gray); color: var(--orange); }

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  min-width: 200px;
  overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--dark);
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--light-gray); }

.nav-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.nav-icons a {
  color: var(--white);
  font-size: 20px;
  transition: opacity 0.2s;
}

.nav-icons a:hover { opacity: 0.7; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}

.hero-slides { position: relative; width: 100%; height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.1));
}

.hero-content {
  position: absolute;
  bottom: 80px;
  left: 10%;
  max-width: 520px;
}

.hero-eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title em {
  font-style: italic;
  font-weight: 700;
}

.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-bottom: 32px;
}

.hero-arrows {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}

.hero-arrow {
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 20px;
  cursor: pointer;
  pointer-events: all;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow:hover { background: rgba(255,255,255,0.4); }

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero-dot.active { background: var(--white); transform: scale(1.3); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-align: center;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255,167,47,0.4);
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--dark2);
  transform: translateY(-1px);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  padding: 0;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  padding: 24px 20px;
  border-right: 1px solid #eee;
}

.trust-item:last-child { border-right: none; }
.trust-item .icon { font-size: 28px; flex-shrink: 0; }
.trust-item strong { display: block; font-size: 14px; margin-bottom: 2px; }
.trust-item span { color: var(--gray); font-weight: 400; font-size: 12px; }

@media (max-width: 900px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-top: 1px solid #eee; }
  .trust-item:nth-child(4) { border-top: 1px solid #eee; border-right: none; }
}

/* ===== SECTION HEADERS ===== */
.section {
  padding: 80px 24px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-eyebrow {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--gray);
  font-size: 16px;
}

/* ===== PRODUCT GRID ===== */
.products-section { background: var(--light-gray); }

.product-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0f0f0;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
}

.product-card-body { padding: 20px; }

.product-card-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.stars { color: #f5a623; font-size: 15px; letter-spacing: 1px; }
.review-count { color: var(--gray); font-size: 13px; }

.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-original {
  color: var(--gray);
  font-size: 14px;
  text-decoration: line-through;
}

.price-sale {
  color: var(--dark);
  font-size: 20px;
  font-weight: 800;
}

/* ===== FEATURES SECTION ===== */
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.feature-card:hover { transform: translateY(-4px); }

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-text {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== USP BANNER ===== */
.usp-banner {
  background: linear-gradient(135deg, #FFA72F 0%, #FF7C2E 35%, #FF4A2A 70%, #F22B2F 100%);
  padding: 90px 24px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.usp-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.usp-banner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.usp-banner p {
  font-size: 18px;
  opacity: 0.92;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ===== REVIEWS ===== */
.reviews-section { background: var(--light-gray); }

.reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.review-stars { color: #f5a623; font-size: 16px; margin-bottom: 14px; }

.review-text {
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.7;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.review-name { font-weight: 700; font-size: 14px; }
.review-product { font-size: 12px; color: var(--gray); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark2);
  color: rgba(255,255,255,0.8);
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 30px;
}

.footer-brand img {
  height: 40px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  opacity: 0.7;
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery-main {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--light-gray);
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.product-thumb {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.product-thumb.active { border-color: var(--orange); }

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info-name {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.product-info-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.product-info-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
}

.product-info-price .price-sale { font-size: 2rem; }

.product-info-desc {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.product-features-list {
  margin-bottom: 32px;
}

.product-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}

.product-features-list li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.product-add-to-cart {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-add-to-cart .btn { width: 100%; font-size: 16px; padding: 16px; }

/* ===== ÜBER UNS ===== */
.about-hero {
  background: linear-gradient(135deg, var(--nav-blue) 0%, var(--dark2) 100%);
  padding: 100px 24px;
  text-align: center;
  color: var(--white);
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
}

.about-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  margin-top: 48px;
}

.about-content h2:first-child { margin-top: 0; }

.about-content p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== KONTAKT ===== */
.kontakt-section {
  max-width: 700px;
  margin: 80px auto;
  padding: 0 24px;
}

.kontakt-section h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.kontakt-section p.subtitle {
  color: var(--gray);
  margin-bottom: 40px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
}

.form-group textarea { height: 130px; resize: vertical; }

/* ===== FAQ ===== */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  gap: 16px;
}

.faq-question .toggle {
  font-size: 22px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-question .toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding-bottom: 20px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--nav-blue);
  padding: 50px 24px;
  text-align: center;
  color: var(--white);
}

.page-header h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; }
.page-header p { opacity: 0.8; margin-top: 8px; font-size: 16px; }

.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  font-size: 13px;
  color: var(--gray);
}

.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--white);
    padding: 16px;
    gap: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-top: 1px solid #f0f0f0;
    z-index: 999;
  }
  .nav-links.open a, .nav-links.open .nav-dropdown > span {
    color: var(--dark);
    padding: 12px 16px;
    font-size: 16px;
  }
  .nav-hamburger { display: flex; }
  .nav-icons .btn { font-size: 12px !important; padding: 7px 12px !important; }

  /* Hero */
  .hero { height: 70vh; min-height: 400px; }
  .hero-content { left: 5%; right: 5%; bottom: 40px; max-width: 100%; }
  .hero-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .hero-subtitle { font-size: 14px; margin-bottom: 20px; }
  .hero-buttons { display: flex; flex-direction: column; gap: 10px; }
  .hero-buttons .btn { width: 100%; text-align: center; }

  /* Sections */
  .section { padding: 50px 16px; }

  /* Product grid */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-card-name { font-size: 14px; }
  .product-card-body { padding: 14px; }

  /* Product detail */
  .product-detail { grid-template-columns: 1fr; gap: 24px; margin: 30px auto; }
  .product-thumbnails { gap: 8px; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .product-thumb { width: 60px; height: 60px; flex-shrink: 0; }
  .product-info-name { font-size: clamp(1.1rem, 4vw, 1.5rem); }
  .product-info-price .price-sale { font-size: 1.6rem; }

  /* Variant buttons */
  .variant-switcher { flex-direction: column; }

  /* Trust bar */
  .trust-inner { gap: 16px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer { padding: 40px 16px 24px; }

  /* Kontakt 2-col grid */
  .kontakt-grid { grid-template-columns: 1fr !important; }

  /* Specs grid in product pages */
  .specs-grid { grid-template-columns: 1fr !important; }

  /* USP banner */
  .usp-banner { padding: 60px 16px; }
  .usp-banner p { font-size: 15px; }

  /* Page header */
  .page-header { padding: 36px 16px; }

  /* About */
  .about-hero { padding: 60px 16px; }
  .about-content { padding: 48px 16px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .product-grid { grid-template-columns: 1fr; }
  .hero { height: 60vh; }
  .hero-content { bottom: 30px; }
  .nav-icons .btn { display: none; }
}
