/* ============================================================
   RADWELT.STORE – Mockup Stylesheet
   Font: Inter (Google Fonts)
   Farben: #ff0d00 Rot | #111 Dunkel | #f5f5f5 Hell
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #ff0d00;
  --red-dark:  #cc0a00;
  --black:     #111111;
  --dark:      #222222;
  --mid:       #555555;
  --light:     #f5f5f5;
  --border:    #e4e4e4;
  --white:     #ffffff;
  --font:      'Inter', system-ui, sans-serif;
  --radius:    6px;
  --shadow:    0 2px 12px rgba(0,0,0,0.08);
  --max-width: 1280px;
  --header-h:  72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Utility ── */
.badge-red {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  vertical-align: middle;
  margin-left: 6px;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

/* Utility-Bar (oben) */
.util-bar {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 0;
}

.util-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.util-bar a { color: rgba(255,255,255,0.75); transition: color .2s; }
.util-bar a:hover { color: white; }

.util-left { display: flex; gap: 20px; align-items: center; }
.util-sep { opacity: 0.35; }
.util-right { display: flex; gap: 16px; align-items: center; }
.util-right a { display: flex; align-items: center; gap: 5px; }


/* Main Nav */
.main-nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0;
}

.main-nav .container {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: 56px;
  padding: 4px 0;
}

.nav-logo img {
  height: 22px;
  width: auto;
  max-width: none;
}

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

.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  border-radius: var(--radius);
  transition: background .15s, color .15s;
  white-space: nowrap;
}

.nav-item > a:hover,
.nav-item:hover > a {
  background: var(--light);
  color: var(--red);
}

.nav-item > a.active { color: var(--red); }

.nav-item > a .chevron {
  width: 14px;
  height: 14px;
  opacity: 0.5;
  transition: transform .2s;
}

.nav-item:hover > a .chevron { transform: rotate(180deg); }

/* Sale-Link rot */
.nav-sale > a {
  color: var(--red) !important;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 8px 0;
  z-index: 2000;
}

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

.dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: background .15s, color .15s;
}

.dropdown li a:hover {
  background: var(--light);
  color: var(--red);
}

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 12px;
}

/* Mega-Dropdown für E-Bikes / Bikes */
.mega-dropdown {
  min-width: 680px;
  left: 0;
  padding: 24px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
}

.nav-item:hover .mega-dropdown { display: grid; }

.mega-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.mega-col ul li a {
  padding: 5px 0;
  font-size: 13.5px;
  display: block;
}

/* Nav Actions (rechts) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  color: var(--black);
  transition: background .15s;
  position: relative;
}

.nav-icon-btn:hover { background: var(--light); }

.nav-icon-btn svg { width: 20px; height: 20px; }

.cart-count {
  position: absolute;
  top: 6px; right: 5px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-cta {
  background: var(--red);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius);
  transition: background .15s, transform .1s;
  white-space: nowrap;
  margin-left: 8px;
}

/* ── Such-Flyout (Lupe hover → Input klappt auf) ── */
.search-wrap {
  display: flex;
  align-items: center;
  position: relative;
}

.search-flyout {
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width .32s cubic-bezier(0.4,0,0.2,1), opacity .25s ease;
}

.search-wrap:hover .search-flyout,
.search-wrap:focus-within .search-flyout {
  max-width: 260px;
  opacity: 1;
}

.search-flyout-input {
  width: 248px;
  height: 34px;
  padding: 0 14px;
  margin-right: 6px;
  border: 1.5px solid var(--border);
  border-radius: 17px;
  font-family: var(--font);
  font-size: 13px;
  color: var(--dark);
  background: var(--light);
  outline: none;
  transition: border-color .2s;
}

.search-flyout-input:focus {
  border-color: var(--red);
  background: white;
}

.search-trigger {
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
}

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

/* ============================================================
   HERO / BANNER
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 60%);
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  color: white;
}

.hero-content h1 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background .15s, transform .1s;
  letter-spacing: 0.2px;
}

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

.btn-secondary {
  display: inline-block;
  background: white;
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: border-color .15s;
  margin-left: 12px;
}

.btn-secondary:hover { border-color: white; background: transparent; color: white; }

/* ============================================================
   SECTIONS
   ============================================================ */

.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-dark { background: var(--light); }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: var(--black);
}

.section-header a {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 4px;
}

.section-header a:hover { text-decoration: underline; }

/* ── Category Grid ── */
.cat-grid {
  display: grid;
  gap: 16px;
}

.cat-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cat-grid-6 { grid-template-columns: repeat(6, 1fr); }

.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--light);
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.cat-card:hover img { transform: scale(1.04); }

.cat-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 24px 16px 14px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  transition: box-shadow .2s, transform .2s;
}

.product-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 3px;
  z-index: 1;
  letter-spacing: 0.3px;
}

.product-card-price.is-sale {
  color: var(--red);
}

.product-card-img img {
  width: 118%;
  height: 118%;
  object-fit: contain;
  padding: 0;
  margin-left: -12%;
  transition: transform .3s;
}

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

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

.product-card-brand {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--mid);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.product-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-card-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
}

.product-card-price .uvp {
  font-size: 13px;
  font-weight: 400;
  color: var(--mid);
  text-decoration: line-through;
  margin-left: 6px;
}

.product-card-avail {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #2a7a2a;
  background: #e8f5e9;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
}

/* ── Service-Cards ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/7;
  cursor: pointer;
}

.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.service-card:hover img { transform: scale(1.04); }

.service-card-label {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: white;
}

.service-card-label h3 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.service-card-label p {
  font-size: 13px;
  opacity: 0.85;
}

/* ── 360-Store-Section ── */
.stores360 {
  background: var(--black);
  padding: 64px 0;
  color: white;
}

.stores360 .section-header h2 { color: white; }
.stores360 .section-header a { color: rgba(255,255,255,0.7); }

.store360-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.store360-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: #222;
  cursor: pointer;
}

.store360-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity .3s;
}

.store360-card:hover img { opacity: 1; }

.store360-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.store360-label .icon360 {
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.65);
  padding: 56px 0 32px;
  font-size: 13.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand img { height: 28px; width: auto; display: block; margin-bottom: 20px; filter: brightness(0) invert(1); object-fit: contain; }

.footer-brand p { line-height: 1.7; margin-bottom: 20px; max-width: 280px; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: white;
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  transition: color .2s;
}

.footer-col ul li a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}

.footer-payment {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-payment img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

/* ============================================================
   STORES OVERVIEW PAGE
   ============================================================ */

.stores-hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.stores-hero img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  opacity: 0.65;
  display: block;
}

.stores-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
  color: white;
}

.stores-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 12px;
}

.stores-hero h1 {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.stores-hero p {
  font-size: 17px;
  opacity: 0.8;
}

.stores-map-section {
  background: var(--light);
  padding: 0;
  position: relative;
}

.stores-map-section iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: none;
}

.stores-list {
  padding: 64px 0;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.store-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.store-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.store-card-img {
  aspect-ratio: 16/7;
  overflow: hidden;
  background: var(--light);
}

.store-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.store-card:hover .store-card-img img { transform: scale(1.04); }

.store-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.store-card-body .store-hours {
  flex: 1;
}

.store-card-body h3 {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}

.store-meta {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 14px;
}

.store-meta strong { color: var(--black); font-weight: 600; }

.store-hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.store-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.store-hours-row .day { color: var(--mid); }
.store-hours-row .time { font-weight: 500; color: var(--black); }
.store-hours-row .closed { color: #aaa; }

.store-card-actions {
  display: flex;
  gap: 8px;
}

.btn-outline {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  transition: border-color .2s, background .2s;
}

.btn-outline:hover { border-color: var(--black); background: var(--light); }

.btn-outline-red {
  border-color: var(--red);
  color: var(--red);
}

.btn-outline-red:hover { background: #fff0f0; border-color: var(--red-dark); }

/* ============================================================
   STORE DETAIL PAGE (GERA)
   ============================================================ */

/* CUBE Store schwarzer Header */
.cube-store-header {
  background: #0a0a0a;
  color: white;
  border-bottom: none;
}

.cube-store-header .util-bar { background: #000; border-bottom: 1px solid #222; }

.cube-store-header .main-nav { background: #0a0a0a; }

.cube-store-header .nav-logo img { filter: brightness(0) invert(1); }

.cube-store-header .nav-item > a { color: rgba(255,255,255,0.85); }

.cube-store-header .nav-item > a:hover,
.cube-store-header .nav-item:hover > a {
  background: rgba(255,255,255,0.08);
  color: white;
}

.cube-store-header .nav-icon-btn { color: rgba(255,255,255,0.85); }
.cube-store-header .nav-icon-btn:hover { background: rgba(255,255,255,0.08); }

/* Store Hero */
.store-hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.store-hero img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  opacity: 0.75;
  display: block;
}

.store-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.65));
}

.store-hero-content .container { color: white; }

.store-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.store-hero-content h1 {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.store-hero-content .store-address {
  font-size: 16px;
  opacity: 0.8;
}

/* Sticky Anker-Nav */
.anchor-nav {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.anchor-nav .container {
  display: flex;
  gap: 0;
}

.anchor-nav a {
  padding: 14px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--mid);
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.anchor-nav a:hover,
.anchor-nav a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Store Info Section */
.store-info-section { padding: 56px 0; }

.store-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.info-block h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--mid);
  margin-bottom: 12px;
}

.info-block .info-value {
  font-size: 15px;
  color: var(--black);
  line-height: 1.8;
}

.info-block a { color: var(--red); font-weight: 600; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 5px 0; font-size: 14px; }
.hours-table td:first-child { color: var(--mid); width: 80px; }
.hours-table td:last-child { font-weight: 500; }
.hours-table .closed { color: #bbb; }

/* Map Section */
.store-map-section { background: var(--light); }
.store-map-section iframe { width: 100%; height: 400px; border: none; display: block; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--light);
  border-radius: var(--radius);
  transition: box-shadow .2s, background .2s;
}

.service-item:hover { box-shadow: var(--shadow); background: white; }

.service-item-highlight {
  background: var(--black);
  color: white;
}

.service-item-highlight h3 { color: white; }
.service-item-highlight p  { color: rgba(255,255,255,0.65); }
.service-item-highlight:hover { background: #1a1a1a; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }

.service-icon {
  width: 56px; height: 56px;
  background: #fff0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.service-item-highlight .service-icon { background: rgba(255,255,255,0.1); }

.service-icon svg { width: 26px; height: 26px; color: var(--red); }
.service-icon-img { background: rgba(255,0,13,0.08); }

.service-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.service-item p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: white;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top;
}

.team-card-body {
  padding: 18px;
}

.team-card-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.team-card-body p {
  font-size: 13px;
  color: var(--mid);
}

/* CTA Banner */
.cta-banner {
  background: var(--red);
  color: white;
  padding: 56px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.cta-banner p {
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 28px;
}

.btn-white {
  display: inline-block;
  background: white;
  color: var(--red);
  font-size: 15px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: transform .15s, box-shadow .15s;
}

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .stores-grid { grid-template-columns: repeat(2, 1fr); }
  .store360-grid { grid-template-columns: repeat(2, 1fr); }
  .inspektion-grid { grid-template-columns: 1fr 1fr; }
  .mega-dropdown { min-width: 520px; grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  :root { --header-h: 56px; }

  .container { padding: 0 16px; }

  /* Header */
  .util-bar { display: none; }
  .nav-links { display: none; }
  .nav-logo { margin-right: auto; }
  .nav-logo img { height: 20px; }
  .main-nav { height: var(--header-h); }
  .btn-cta { display: none; }
  .nav-actions { gap: 2px; }

  /* Mobile Hamburger-Platzhalter */
  .nav-actions::before {
    content: '☰';
    font-size: 20px;
    padding: 10px 12px;
    cursor: pointer;
    color: var(--black);
    order: -1;
  }
  .cube-store-header .nav-actions::before { color: white; }

  /* Hero */
  .hero img { max-height: 340px; object-position: center; }
  .hero-content h1 { font-size: 28px; line-height: 1.15; }
  .hero-content p { font-size: 14px; }
  .btn-primary, .btn-secondary { font-size: 13px; padding: 11px 20px; }
  .btn-secondary { margin-left: 8px; }

  /* Sections */
  .section { padding: 40px 0; }
  .section-header h2 { font-size: 20px; }
  .section-header { margin-bottom: 20px; }

  /* Grids → 1 Spalte oder 2 */
  .cat-grid-3 { grid-template-columns: 1fr 1fr; }
  .cat-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .store360-grid { grid-template-columns: 1fr; }
  .stores-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Product card kleiner */
  .product-card-name { font-size: 13px; }
  .product-card-price { font-size: 15px; }

  /* Store Detail */
  .store-hero img { max-height: 200px; }
  .store-hero-content h1 { font-size: 26px; }
  .anchor-nav .container { overflow-x: auto; padding-bottom: 2px; }
  .anchor-nav a { padding: 12px 14px; font-size: 12.5px; }
  .store-info-grid { grid-template-columns: 1fr; gap: 24px; }
  .inspektion-grid { grid-template-columns: 1fr; }

  /* Werkstatt 2-col → 1-col */
  div[style*="grid-template-columns: 1fr 1fr; gap: 48px"] {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
  }

  /* Anfahrt 2-col → 1-col */
  div[style*="grid-template-columns: 1fr 360px"] {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
  }

  .store-map-section iframe { height: 280px; }
  .stores-map-section .map-stores-layout {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .stores-map-section .map-area iframe { height: 280px; }
  .map-store-list { max-height: 280px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-payment { flex-wrap: wrap; }

  /* Stores-Hero */
  .stores-hero img { max-height: 240px; }
  .stores-hero h1 { font-size: 28px; }
  .stores-hero p { font-size: 14px; }

  /* CTA Banner */
  .cta-banner h2 { font-size: 24px; }
  .cta-banner p { font-size: 15px; }
}

/* ── Sehr kleines Mobile (≤ 380px) ── */
@media (max-width: 380px) {
  .product-grid { grid-template-columns: 1fr; }
  .cat-grid-3 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
}
