:root {
  --orange: #f28c00;
  --orange-dark: #d96a00;
  --blue: #004f9e;
  --yellow: #f5c400;
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #e6e9ee;
  --accent: #d96a00;
  --accent-soft: #fff3e8;
  --bg: #f5f7fa;
  --soft: #eef2f6;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, .10);
  --radius: 24px;
  --max: 1180px;
  --font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.hero-bild-box {
    position: relative;
}

.hero-bild-box img {
    width: 100%;
    display: block;
}

.hero-button {
    position: absolute;
    left: 35px;
    bottom: 35px;
    transform: none;
    background: #f28c00;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    white-space: nowrap;
}

.hero-button:hover,
.hero-button:focus {
    background: #d97800;
    color: #ffffff;
    text-decoration: none;
}

/* ab Tablet und kleiner: Button unter das Hero-Bild */
@media (max-width: 991px) {
    .hero-button {
        position: static;
        display: block;
        transform: none;
        margin: 12px 0 0 0;
        text-align: center;
        font-size: 17px;
        padding: 12px 18px;
        white-space: normal;
    }
}

.hero-intro-section,
.angebote-headline,
.angebote-slider-wrap {
  max-width: 100vw;
  box-sizing: border-box;
}

/* =========================================================
   PREMIUM HEADER
   ========================================================= */

.premium-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.premium-header.is-scrolled {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.premium-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: all 0.25s ease;
}

.premium-header.is-scrolled .premium-header-inner {
  padding: 8px 24px;
}


/* Logo */

.premium-brand a {
  display: inline-flex;
  align-items: center;
}

.premium-brand img {
  width: auto;
  height: auto;
  transition: all 0.25s ease;
}

/* Normales Logo */
.premium-brand img.premium-logo-large {
  display: block !important;
  max-height: 62px;
}

/* Kleines Logo im Anfangszustand verstecken */
.premium-brand img.premium-logo-small {
  display: none !important;
  max-height: 42px;
}

/* Beim Scrollen Logo wechseln */
.premium-header.is-scrolled .premium-brand img.premium-logo-large {
  display: none !important;
}

.premium-header.is-scrolled .premium-brand img.premium-logo-small {
  display: block !important;
}


/* Suche */

.premium-suche {
  flex: 1;
  max-width: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease;
}

.premium-search-form {
  width: min(100%, 400px);
  margin: 0;
}

.premium-search-form .input-group {
  width: 100%;
}

.premium-search-form .form-control {
  height: 42px;
  border-radius: 999px 0 0 999px;
  border: 1px solid #d8dde5;
  box-shadow: none;
  font-size: 15px;
  padding-left: 18px;
  transition: all 0.25s ease;
}

.premium-search-form .btn {
  height: 42px;
  padding: 0 18px;
  border-radius: 0 999px 999px 0;
  border: 1px solid #d8dde5;
  background: #f7f8fa;
  color: #374151;
  transition: all 0.25s ease;
}

.premium-search-form .glyphicon-search {
  font-size: 17px;
}

.premium-header.is-scrolled .premium-search-form .form-control {
  height: 34px;
  font-size: 13px;
}

.premium-header.is-scrolled .premium-search-form .btn {
  height: 34px;
  padding-top: 5px;
  padding-bottom: 5px;
}


/* Kontakt / Telefonnummer */

.premium-contact {
  text-align: right;
  line-height: 1.25;
  transition: all 0.25s ease;
}

.premium-contact-label {
  display: block;
  margin-bottom: 5px;
  color: #555;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: all 0.25s ease;
}

.premium-phone {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #222;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.premium-phone:hover {
  color: #d96a00;
  text-decoration: none;
}

.premium-phone-icon {
  color: #d96a00;
  font-size: 22px;
  line-height: 1;
  transition: all 0.25s ease;
}

.premium-header.is-scrolled .premium-contact-label {
  font-size: 12px;
}

.premium-header.is-scrolled .premium-phone {
  font-size: 17px;
}

.premium-header.is-scrolled .premium-phone-icon {
  font-size: 18px;
}

/* =========================================================
   WARENKORB IM PREMIUM HEADER
   ========================================================= */

.premium-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.premium-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 42px;
  padding: 9px 14px;

  border-radius: 999px;
  border: 1px solid #d96a00;

  background: #fff3e8;
  color: #d96a00;

  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

  box-shadow: 0 8px 20px rgba(217, 106, 0, 0.14);

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.premium-cart:hover,
.premium-cart:focus {
  background: #d96a00;
  color: #ffffff;
  border-color: #d96a00;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(217, 106, 0, 0.26);
  transform: translateY(-1px);
}

.premium-cart-icon {
  font-size: 17px;
}

.premium-header.is-scrolled .premium-cart {
  min-height: 34px;
  padding: 7px 12px;
  font-size: 13px;
}

.premium-header.is-scrolled .premium-cart-icon {
  font-size: 15px;
}

@media (max-width: 991px) {
  .premium-actions {
    gap: 12px;
  }

  .premium-cart-text {
    display: none;
  }

  .premium-cart {
    width: 42px;
    min-width: 42px;
    padding-left: 0;
    padding-right: 0;
  }

  .premium-header.is-scrolled .premium-cart {
    width: 36px;
    min-width: 36px;
  }
}

/* =========================================================
   PREMIUM HEADER: mehrere Telefonnummern
   ========================================================= */

.premium-header .premium-contact-multi {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 255px;
  text-align: left;
  line-height: 1.15;
}

/* Eine Telefonzeile */
.premium-header .premium-contact-multi .premium-phone-row {
  display: grid;
  grid-template-columns: 100px 18px 1fr;
  align-items: center;
  column-gap: 7px;

  color: #222;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;

  transition: all 0.2s ease;
}

.premium-header .premium-contact-multi .premium-phone-row:hover,
.premium-header .premium-contact-multi .premium-phone-row:focus {
  color: #d96a00;
  text-decoration: none;
}

/* Telefon-Icon */
.premium-header .premium-contact-multi .premium-phone-icon {
  color: #d96a00;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}

/* Ortsname linksbündig */
.premium-header .premium-contact-multi .premium-phone-location {
  text-align: left;
  padding-left: 2px;
}

/* Telefonnummer rechtsbündig */
.premium-header .premium-contact-multi .premium-phone-number {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Beim Scrollen kleiner */
.premium-header.is-scrolled .premium-contact-multi .premium-phone-row {
  font-size: 13px;
  line-height: 1.1;
}

.premium-header.is-scrolled .premium-contact-multi .premium-phone-icon {
  font-size: 13px;
}


/* =========================================================
   RESPONSIVE: Telefonnummern im Header
   ========================================================= */

@media (max-width: 991px) {
  .premium-header .premium-contact-multi {
    min-width: 220px;
  }

  .premium-header .premium-contact-multi .premium-phone-row {
    grid-template-columns: 90px 16px 1fr;
    column-gap: 5px;
    font-size: 13px;
  }

  .premium-header .premium-contact-multi .premium-phone-icon {
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  .premium-header .premium-contact-multi {
    min-width: 190px;
  }

  .premium-header .premium-contact-multi .premium-phone-row {
    grid-template-columns: 78px 16px 1fr;
    column-gap: 4px;
    font-size: 12px;
  }

  .premium-header .premium-contact-multi .premium-phone-icon {
    font-size: 12px;
  }

  .premium-header .premium-contact-multi .premium-phone-location {
    padding-left: 0;
  }
}


/* =========================================================
   HERO / INTRO
   ========================================================= */

.hero-intro-section {
  width: 100vw;
  max-width: none;
  margin: 0 0 42px;
  padding: 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: minmax(0, 72%) minmax(320px, 28%);
  min-height: clamp(360px, 32vw, 500px);
  background: #E5E5E5;
  overflow-x: hidden;
}

.hero-image {
  position: relative;
  min-height: clamp(360px, 32vw, 500px);
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.14) 45%, rgba(0,0,0,.04) 100%),
	var(--hero-image);
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #eef2f6;
  overflow: hidden;
}

.hero-title {
  position: absolute;
  left: clamp(28px, 5vw, 86px);
  top: clamp(36px, 6vw, 96px);
  max-width: 920px;
  z-index: 2;
}

.hero-eyebrow {
  background: rgba(255,255,255,.92);
  color: #d96a00;
  margin-bottom: 18px;
}

.hero-title h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.02;
  font-weight: 750;
  letter-spacing: -0.055em;
  text-shadow: 0 8px 28px rgba(0,0,0,.35);
}

.hero-title h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-shadow: 0 5px 18px rgba(0,0,0,.28);
}

.hero-benefits {
  position: absolute;
  left: clamp(24px, 4vw, 72px);
  right: calc(28% + clamp(24px, 4vw, 72px));
  bottom: clamp(24px, 4vw, 54px);
  z-index: 2;
}

/* Intro-Card */

.intro-card {
  width: 100%;
  padding: 40px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.intro-content {
  max-width: 520px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intro-content h1 {
  margin: 0 0 18px;
  color: #111827;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.intro-content h2 {
  margin: 20px 0 0;
  color: #111827;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.intro-content p {
  margin: 0 0 15px;
  color: #374151;
  font-size: 17px;
  line-height: 1.62;
}

.intro-lead {
  color: #1f2937;
  font-size: 21px !important;
  line-height: 1.42 !important;
  font-weight: 650;
}


/* Benefits */

.intro-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intro-benefits li {
  position: relative;
  padding: 12px 14px 12px 42px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .14);
  backdrop-filter: blur(8px);
}

.intro-benefits li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(217, 106, 0, 0.92);
  color: #ffffff;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  font-weight: 800;
}

/* Intro-Benefits auf Handy untereinander und kleiner */
@media (max-width: 767px) {
  .intro-card {
    padding: 10px;
  }

  .intro-benefits {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .intro-benefits li {
    padding: 9px 12px 9px 34px;
    border-radius: 11px;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 700;
  }

  .intro-benefits li::before {
    left: 12px;
    top: 9px;
    width: 16px;
    height: 16px;
    font-size: 11px;
    line-height: 16px;
  }

  .hero-benefits {
    position: static;
    grid-column: 1;
    margin: 12px 15px 0;
    padding: 0;
    z-index: auto;
  }

  .hero-benefits li {
    background: #ffffff;
    color: #111827;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    backdrop-filter: none;
  }
}

/* =========================================================
   SONSTIGES
   ========================================================= */

.auto-style1 {
  font-size: xx-small;
}

.photo-gallery-container {
  padding: 28px;
  border-radius: 18px;
  background: #f6f7f8;
  border: 1px solid #e1e4e8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.angebote-headline {
  position: relative;

  width: 100vw;
  max-width: none;

  left: 50%;
  transform: translateX(-50%);

  margin-top: 20px;

  padding: 0 54px;
  box-sizing: border-box;

  overflow-x: hidden;
  overflow-y: visible;
}

.angebote-headline-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.angebote-headline h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.angebote-headline p {
  max-width: 680px;
  margin: 0;
  color: #5f6b7a;
  font-size: 16px;
  line-height: 1.6;
}

.angebote-scroll-hinweis {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 4px;
  padding: 10px 14px;

  border-radius: 999px;
  background: #fff3e8;
  color: #d96a00;

  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.angebote-scroll-hinweis .glyphicon {
  font-size: 11px;
}


/* Abstand des Sliders etwas anpassen */
.angebote-slider-wrap {
  margin-top: 18px;
}


/* Tablet */
@media (max-width: 991px) {
  .intro-card {
    padding: 15px;
  }

  .angebote-headline {
    padding-left: 48px;
    padding-right: 48px;
  }

  .angebote-headline-row {
    align-items: flex-start;
  }
  
  .hero-benefits {
    position: static;
    grid-column: 1;
    margin: 12px 15px 0;
    padding: 0;
    z-index: auto;
  }

  .hero-benefits li {
    background: #ffffff;
    color: #111827;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    backdrop-filter: none;
  }
}


/* Smartphone */
@media (max-width: 767px) {
  .angebote-headline {
    margin: 28px auto 8px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .angebote-headline-row {
    display: block;
  }

  .angebote-headline h2 {
    font-size: 24px;
    line-height: 1.12;
  }

  .angebote-headline p {
    font-size: 14px;
    line-height: 1.5;
  }
}

.angebote-slider-wrap {
  position: relative;

  width: 100vw;
  max-width: none;

  left: 50%;
  transform: translateX(-50%);

  margin-top: 20px;

  padding: 0 54px;
  box-sizing: border-box;

  overflow-x: hidden;
  overflow-y: visible;
}

.angebote {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 8px 0 24px;

  display: flex;
  flex-wrap: nowrap;
  gap: 24px;

  overflow-x: auto;
  overflow-y: visible;

  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scroll-padding-left: 0;

  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
  -ms-overflow-style: none;

  justify-content: flex-start;
}

.angebote.is-centered {
  justify-content: center;
}

.angebote::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

/* Jedes Angebots-Element bleibt gleich breit */
.angebote > div {
  flex: 0 0 310px;
  width: 310px;
  max-width: 310px;
  scroll-snap-align: start;
}

/* Link neutral */
.angebote > div > a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.angebote > div > a:hover,
.angebote > div > a:focus {
  color: inherit;
  text-decoration: none;
}

/* Bootstrap-Spalten innerhalb der Karte neutralisieren */
.angebote .angebot-card {
  float: none !important;

  width: 100% !important;
  max-width: none;
  min-width: 0;
  height: 100%;

  padding: 24px;
  margin: 0;

  display: flex;
  flex-direction: column;

  border-radius: 22px;
  border: 1px solid #e5e7eb;
  background: #ffffff;

  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.angebot-card h3 {
  font-size: 16px;
  font-weight: 700;
  color:#111827;
}

/* Hover */
.angebote > div > a:hover .angebot-card,
.angebote > div > a:focus .angebot-card {
  transform: translateY(-6px);
  border-color: #d96a00;
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.16);
}

/* Bildbereich */
.angebote .angebot-card > div:first-child {
  height: 250px !important;
  margin-bottom: 18px;
  border-radius: 18px;
  overflow: hidden;
}

/* Produktbild */
.angebote .angebot-card img {
  max-height: 210px !important;
  width: auto;
  margin: 0 auto;
  transition: transform 0.28s ease;
}

.angebote > div > a:hover .angebot-card img,
.angebote > div > a:focus .angebot-card img {
  transform: scale(1.04);
}

/* Produkttitel */
.angebote .angebot-card > div:nth-child(2) {
  height: auto !important;
  min-height: 72px;

  color: #111827;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

/* Preis- und Label-Zeile */
.angebote .angebot-card > div:last-child {
  margin-top: auto;
  padding-top: 0;

  min-height: 44px;
  height: auto !important;

  border-top: none;
}

.angebote .angebot-card > div:last-child b {
  color: #111827;
  font-size: 17px;
  font-weight: 800;
}

/* Labels */
.angebote .label {
  display: inline-block;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

/* Klickgefühl */
.angebote > div > a:active .angebot-card {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}


/* Pfeilbuttons */

.angebote-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;

  width: 44px;
  height: 44px;

  border: 1px solid #e5e7eb;
  border-radius: 50%;

  background: #ffffff;
  color: #111827;

  display: none;
  align-items: center;
  justify-content: center;

  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);

  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.angebote-arrow:hover,
.angebote-arrow:focus {
  background: #fff3e8;
  color: #d96a00;
  border-color: #d96a00;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22);
  outline: none;
}

.angebote-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.angebote-arrow-left {
  left: 16px;
}

.angebote-arrow-right {
  right: 16px;
}

.angebote-arrow.is-visible {
  display: flex;
}

/* Tablet */

@media (max-width: 991px) {
  .angebote-slider-wrap {
    max-width: none;
    padding-left: 48px;
    padding-right: 48px;
  }

  .angebote > div {
    flex-basis: 270px;
    width: 270px;
    max-width: 270px;
  }
}

/* Smartphone */

@media (max-width: 767px) {
  .angebote-slider-wrap {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);

    margin-top: 24px;
    margin-bottom: 34px;

    padding-left: 15px;
    padding-right: 15px;

	overflow-x: hidden;
	overflow-y: visible;
  }

  .angebote {
    gap: 14px;
    justify-content: flex-start;
  }

  .angebote.is-centered {
    justify-content: center;
  }
  
  .angebote > div {
    flex-basis: 82vw;
    width: 82vw;
    max-width: 270px;
  }

  .angebote .angebot-card {
    padding: 8px;
    border-radius: 14px;
  }

  .angebote .angebot-card > div:first-child {
    height: 210px !important;
    margin-bottom: 8px;
    border-radius: 10px;
  }

  .angebote .angebot-card img {
    max-height: 195px !important;
    max-width: 100%;
  }

  .angebote .angebot-card > div:nth-child(2) {
    min-height: 54px;
    font-size: 14px;
    line-height: 1.25;
  }

  .angebote .angebot-card > div:last-child {
    padding-top: 8px;
    min-height: 34px;
  }

  .angebote .angebot-card > div:last-child b {
    font-size: 15px;
  }

  .angebote-arrow {
    width: 38px;
    height: 38px;
    z-index: 50;
  }

  .angebote-arrow-left {
    left: 12px;
  }

  .angebote-arrow-right {
    right: 12px;
  }

}

/* =========================================================
   ANGEBOTE: Preis, alter Preis, Ersparnis, Lieferzeit
   ========================================================= */

.angebot-pricebox {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #edf0f3;
  text-align: right;
}

.angebot-price-current {
  display: block;
  color: #e60000;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
  white-space: nowrap;
}

.angebot-price-old {
  display: block;
  margin-top: 4px;
  color: #8b95a1;
  font-size: 14px;
  font-weight: 700;
  text-decoration: line-through;
  white-space: nowrap;
}

.angebot-saving {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 7px;
  padding: 1px 2px;
  border-radius: 999px;
  color: #d96a00;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.angebot-delivery {
  margin-top: 8px;
  color: #16803c;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.angebot-delivery::before {
  content: "●";
  margin-right: 6px;
  color: #16a34a;
  font-size: 10px;
}

.angebot-saving {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 8px;
  padding: 1px 2px;
  border-radius: 999px;
  color: #d96a00;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.angebot-delivery {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #16803c;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.angebot-delivery::before {
  content: "●";
  color: #16a34a;
  font-size: 10px;
  line-height: 1;
}

@media (max-width: 767px) {
  .angebot-pricebox {
    padding-top: 10px;
  }

  .angebot-price-current {
    font-size: 19px;
  }

  .angebot-price-old {
    font-size: 13px;
  }

  .angebot-saving {
    font-size: 12px;
    padding: 1px 2px;
  }

  .angebot-delivery {
    font-size: 12px;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Suchleiste im Header auf kleineren Geräten ausblenden */
@media (max-width: 991px) {
  .premium-header .premium-suche {
    display: none;
  }

  .hero-intro-section {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: clamp(280px, 48vw, 430px);
    background-size: cover;
    background-position: center center;
  }
  
  .intro-content {
    max-width: 100%;
  }

  .premium-phone {
    justify-content: center;
  }
  
  .premium-header.is-scrolled .premium-header-inner {
    padding: 8px 24px;
  }

}


@media (max-width: 767px) {
  .premium-header-inner {
    gap: 12px;
    padding: 10px 12px;
  }

  .premium-header.is-scrolled .premium-header-inner {
    padding: 6px 12px;
  }

  .premium-brand img {
    max-height: 48px;
  }

  .premium-header.is-scrolled .premium-brand img {
    max-height: 36px;
  }

  .premium-suche {
    max-width: none;
  }
}


@media (max-width: 560px) {
  .hero-image {
    min-height: 230px;
    background-size: cover;
    background-position: center center;
  }
  
  .intro-content h1 {
    font-size: 32px;
  }

  .intro-content p {
    font-size: 16px;
  }

  .intro-lead {
    font-size: 18px !important;
  }

  .premium-header-inner {
    padding: 8px 12px;
    gap: 10px;
    text-align: center;
  }

  .premium-brand img {
    margin: 0 auto;
    max-height: 32px;
  }
  
  .premium-header.is-scrolled .premium-brand img {
    max-height: 30px;
  }

  .premium-suche {
    justify-content: center;
    width: 100%;
  }

  .premium-search-form {
    width: 100%;
  }

  .premium-contact {
    text-align: center;
  }

  .premium-phone {
    font-size: 18px;
  }

  .premium-phone-icon {
    font-size: 23px;
  }
}

.expan-shop-nav {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  border-top: 1px solid #edf0f3;
  border-bottom: 1px solid #dfe4ea;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  min-height: 52px;
  z-index: 9990;
}

.expan-shop-nav .container-fluid {
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.expan-shop-nav .navbar-collapse {
  border: 0;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.expan-shop-menu {
  float: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.expan-shop-menu > li {
  float: none;
  position: relative;
}

.expan-shop-menu > li > a {
  padding: 16px 14px;
  color: #1f2937 !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.2s ease;

  white-space: nowrap;
}

.expan-shop-menu > li > a:hover,
.expan-shop-menu > li > a:focus,
.expan-shop-menu > .open > a,
.expan-shop-menu > .open > a:hover,
.expan-shop-menu > .open > a:focus {
  background: #fff3e8 !important;
  color: #d96a00 !important;
}

.expan-shop-menu > li > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  background: #d96a00;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.expan-shop-menu > li > a:hover::after,
.expan-shop-menu > .open > a::after {
  transform: scaleX(1);
}

.expan-shop-menu .caret {
  margin-left: 5px;
  border-top-color: #9ca3af;
}

.expan-shop-menu > li > a:hover .caret,
.expan-shop-menu > .open > a .caret {
  border-top-color: #d96a00;
}


/* Dropdown-Menü */

.expan-shop-nav .dropdown-menu {
  min-width: 240px;
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.expan-shop-nav .dropdown-menu > li > a {
  padding: 10px 12px;
  border-radius: 10px;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  transition: all 0.18s ease;
}

.expan-shop-nav .dropdown-menu > li > a:hover,
.expan-shop-nav .dropdown-menu > li > a:focus {
  background: #fff3e8;
  color: #d96a00;
}


/* Optional: Dropdown bei Desktop per Hover öffnen */
@media (min-width: 768px) {
  .expan-shop-nav .dropdown:hover > .dropdown-menu {
    display: block;
  }

  .expan-shop-nav .dropdown:hover > a {
    background: #fff3e8 !important;
    color: #d96a00 !important;
  }
}

@media (max-width: 1100px) and (min-width: 768px) {
  .expan-shop-nav .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }

  .expan-shop-menu > li > a {
    padding-left: 9px;
    padding-right: 9px;
    font-size: 13px;
  }

  .expan-shop-menu .caret {
    margin-left: 3px;
  }
}

/* Mobile Navigation */

@media (max-width: 767px) {
  .expan-shop-nav {
    min-height: 54px;
  }

  .expan-shop-nav .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }

  .expan-shop-nav .navbar-header {
    width: 100%;
    float: none !important;
  }

  .expan-shop-nav .navbar-toggle {
    margin-right: 0;
    border: 0;
    border-radius: 12px;
    background: #f3f4f6;
  }

  .expan-shop-nav .navbar-toggle:hover,
  .expan-shop-nav .navbar-toggle:focus {
    background: #fff3e8;
  }

  .expan-shop-nav .navbar-toggle .icon-bar {
    background: #374151;
  }

  .expan-shop-nav .adresse {
    padding: 15px 20px 0 14px !important;
    color: #1f2937;
    font-size: 15px;
    font-weight: 800;
  }

  .expan-shop-menu {
    display: block;
    width: 100%;
    margin: 0;
    padding: 10px 0;
  }

  .expan-shop-menu > li {
    display: block;
    width: 100%;
  }

  .expan-shop-menu > li > a {
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 15px;
  }

  .expan-shop-menu > li > a::after {
    display: none;
  }

  .expan-shop-nav .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin: 4px 0 10px;
    padding: 6px;
    border: 0;
    border-radius: 14px;
    background: #f7f8fa;
    box-shadow: none;
  }

  .expan-shop-nav .dropdown-menu > li > a {
    padding: 10px 14px;
    font-size: 14px;
  }
}

.artikel-card-wrap {
  padding: 14px;
}

.artikel-card-link,
.artikel-card-link:hover,
.artikel-card-link:focus {
  display: block;
  color: inherit;
  text-decoration: none;
}

.artikel-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e6e9ee;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  min-height: 430px;
}

.artikel-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.artikel-card-bottom {
  padding-top: 14px;
  border-top: 1px solid #edf0f3;
}

.artikel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
  border-color: #d96a00;
}

.artikel-card-image {
  height: 245px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.artikel-card-image img {
  max-height: 210px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.artikel-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.artikel-card-badges .btn {
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border: none;
}

.artikel-card-body {
  padding: 0px 18px 10px;
}

.artikel-card-title {
  min-height: 62px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 16px;
}

.artikel-card-bottom {
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.artikel-card-status {
  border-radius: 999px;
  font-size: 12px;
  padding: 6px 10px;
}

.artikel-card-price {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  color: #d96a00;
  text-align: right;
  white-space: nowrap;
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .artikel-card-wrap {
    padding: 8px;
  }

  .artikel-card {
    border-radius: 14px;
    min-height: auto;
  }

  .artikel-card-image {
    height: 210px;
    padding: 10px;
  }

  .artikel-card-image img {
    max-height: 190px;
    border-radius: 8px;
  }

  .artikel-card-body {
    padding: 12px 13px 14px;
  }

  .artikel-card-title {
    min-height: auto;
    font-size: 15px;
  }

}














.category-overview {
  width: 100vw;
  max-width: none;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 40px 0 56px;
  padding: 56px 54px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.category-section-head {
  max-width: 1180px;
  margin: 0 auto 26px;
}

.category-section-head h1 {
  margin: 25 0 10px;
  color: #111827;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.category-section-head h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.category-section-head p {
  max-width: 760px;
  margin: 0;
  color: #5f6b7a;
  font-size: 16px;
  line-height: 1.6;
}

.category-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.category-card {
  position: relative;
  display: block;
  min-height: 245px;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(229, 231, 235, 0.9);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.category-card:hover,
.category-card:focus {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-6px);
  border-color: #d96a00;
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  display: block;
  transition: transform 0.32s ease;
}

.category-card:hover img,
.category-card:focus img {
  transform: scale(1.06);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
}

.category-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px;
}

.category-card-overlay span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(197, 122, 34, 0.92);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.category-card-overlay h3 {
  margin: 0;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}


@media (max-width: 1200px) {
  .category-card-overlay span {
    font-size: 10px;
    font-weight: 700;
  } 
  
  .category-card-overlay h3 {
    font-size: 16px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .category-overview {
    padding: 44px 48px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Smartphone */
@media (max-width: 767px) {
  .category-overview {
    margin: 30px 0 38px;
    padding: 34px 15px;
  }

  .category-section-head {
    margin-bottom: 18px;
  }

  .category-section-head h2 {
    font-size: 25px;
  }

  .category-section-head p {
    font-size: 14px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .category-card,
  .category-card img {
    min-height: 210px;
  }

  .category-card {
    border-radius: 16px;
  }

  .category-card-overlay {
    padding: 16px;
  }

  .category-card-overlay h3 {
    font-size: 19px;
  }
}







.photo-gallery-container {
  max-width: 1180px;
  margin: 0 auto 56px;
  padding: 34px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

.photo-gallery-container .eyebrow {
  margin-bottom: 18px;
}

.photo-gallery-container .row {
  margin-left: -8px;
  margin-right: -8px;
}

.photo-gallery-container [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 16px !important;
}

.photo-gallery-container a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.photo-gallery-container img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.28s ease;
}

.photo-gallery-container a:hover,
.photo-gallery-container a:focus {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.15);
  text-decoration: none;
}

.photo-gallery-container a:hover img,
.photo-gallery-container a:focus img {
  transform: scale(1.03);
}

@media (max-width: 767px) {
  .photo-gallery-container {
    margin: 0 15px 38px;
    padding: 20px;
    border-radius: 18px;
  }

  .photo-gallery-container .col-xs-4 {
    width: 50%;
  }
}

.category-grid,
.photo-gallery-container,
.photo-gallery-container .row {
  overflow: visible;
}

.category-overview {
  overflow-x: hidden;
  overflow-y: visible;
}

.category-card {
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
}

.category-card:hover,
.category-card:focus {
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.24);
}

.photo-gallery-container a {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.photo-gallery-container a:hover,
.photo-gallery-container a:focus {
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.24);
}






.expan-section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.expan-location-section {
  padding: 46px 0 28px;
  background: #ffffff;
}

.expan-section-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.expan-section-head h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
  font-weight: 800;
}

.expan-section-head p {
  margin: 0;
  color: #5f6b7a;
  font-size: 17px;
  line-height: 1.55;
}

.expan-location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.expan-location-card {
  overflow: hidden;
  border: 1px solid #e6e9ee;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.expan-location-card:hover {
  transform: translateY(-5px);
  border-color: #d96a00;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.15);
}

.expan-location-card a,
.expan-location-card a:hover,
.expan-location-card a:focus {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.expan-location-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.expan-location-body {
  padding: 22px;
}

.expan-location-body h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.expan-location-body p {
  min-height: 74px;
  margin: 0 0 20px;
  color: #374151;
  font-size: 15px;
  line-height: 1.55;
}

.expan-location-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 6px;
  background: #f28c00;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(217, 106, 0, 0.22);
}

.expan-location-button .glyphicon {
  font-size: 16px;
}

.expan-benefit-section {
  padding: 22px 0 56px;
  background: #ffffff;
}

.expan-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.expan-benefit-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid #e6e9ee;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.expan-benefit-icon {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff3e8;
  color: #f28c00;
  font-size: 32px;
}

.expan-benefit-card h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 800;
}

.expan-benefit-card p {
  margin: 0 0 10px;
  color: #374151;
  font-size: 15px;
  line-height: 1.55;
}

.expan-benefit-card a {
  color: #d96a00;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.expan-benefit-card a:hover,
.expan-benefit-card a:focus {
  color: #b85600;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .expan-location-grid {
    gap: 18px;
  }

  .expan-location-body {
    padding: 18px;
  }

  .expan-location-body h3 {
    font-size: 21px;
  }

  .expan-location-body p {
    min-height: 92px;
    font-size: 14px;
  }

  .expan-benefit-card {
    grid-template-columns: 76px 1fr;
    padding: 22px;
  }

  .expan-benefit-icon {
    width: 64px;
    height: 64px;
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .expan-section-inner {
    padding: 0 15px;
  }

  .expan-location-section {
    padding: 32px 0 18px;
  }

  .expan-section-head {
    margin-bottom: 20px;
  }

  .expan-section-head h2 {
    font-size: 26px;
  }

  .expan-section-head p {
    font-size: 15px;
  }

  .expan-location-grid,
  .expan-benefit-grid {
    grid-template-columns: 1fr;
  }

  .expan-location-body p {
    min-height: 0;
  }

  .expan-location-button {
    width: 100%;
  }

  .expan-benefit-section {
    padding-bottom: 36px;
  }

  .expan-benefit-card {
    grid-template-columns: 62px 1fr;
    gap: 16px;
    padding: 18px;
  }

  .expan-benefit-icon {
    width: 56px;
    height: 56px;
    font-size: 23px;
  }

  .expan-benefit-card h3 {
    font-size: 18px;
  }

  .expan-benefit-card p {
    font-size: 14px;
  }
}

.expan-start-text {
  margin: 0 auto 28px;
  text-align: center;
}

.expan-start-text h1 {
  margin: 0 0 12px;
  color: #111827;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.expan-start-text h2 {
  margin: 0 0 18px;
  color: #d96a00;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
  font-weight: 750;
}

.expan-start-text p {
  max-width: 820px;
  margin: 0 auto;
  color: #374151;
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .expan-start-text {
    padding-top: 18px;
    margin-bottom: 18px;
  }

  .expan-start-text h1 {
    font-size: 28px;
  }

  .expan-start-text h2 {
    font-size: 18px;
  }

  .expan-start-text p {
    font-size: 15px;
    line-height: 1.6;
  }
}



.expan-info-header {
  background: #fff3e8;
  color: #9a4a00;
  border-bottom: 1px solid #ffd6ad;
  box-shadow: none;
}

.expan-info-header .glyphicon {
  color: #d96a00;
}

.expan-info-header-inner {
  max-width: 1180px;
  min-height: 49px;
  margin: 0 auto;
  padding: 10px 24px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  text-align: center;
  font-size: 15px;
  line-height: 1.35;
}

.expan-info-header strong {
  font-weight: 800;
}

@media (max-width: 991px) {
  .expan-info-header-inner {
    min-height: 49px;
    padding: 8px 16px;
    font-size: 14px;
  }
}

.preisvariante-input {
  margin-left: 5px;
  text-align: right;
  border: none;
  width: 135px;
  max-width: 100%;
  background: transparent;
  color: #d96a00;
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .preisvariante-input {
    width: 125px;
    font-size: 14px;
  }
}


.expan-home-hero {
  padding: 34px 0 28px;
  background: #f5f7fa;
}

.expan-home-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.expan-home-hero-text {
  padding: 38px;
  border: 1px solid #e6e9ee;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.expan-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #fff3e8;
  color: #d96a00;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.expan-home-hero h1 {
  margin: 0 0 16px;
  color: #111827;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.06;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.expan-home-lead {
  margin: 0 0 16px;
  color: #263449;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.42;
  font-weight: 750;
}

.expan-home-hero p {
  margin: 0 0 18px;
  color: #5f6b7a;
  font-size: 17px;
  line-height: 1.65;
}

.expan-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 22px;
}

.expan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.expan-btn:hover,
.expan-btn:focus {
  transform: translateY(-2px);
  text-decoration: none;
}

.expan-btn-primary {
  background: #f28c00;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(217, 106, 0, 0.22);
}

.expan-btn-primary:hover,
.expan-btn-primary:focus {
  background: #d96a00;
  color: #ffffff;
}

.expan-btn-secondary {
  border: 1px solid #d8dde5;
  background: #ffffff;
  color: #111827;
}

.expan-btn-secondary:hover,
.expan-btn-secondary:focus {
  border-color: #d96a00;
  color: #d96a00;
}

.expan-home-benefits {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expan-home-benefits li {
  position: relative;
  padding-left: 30px;
  color: #263449;
  font-size: 15px;
  font-weight: 800;
}

.expan-home-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #d96a00;
  color: #ffffff;
  font-size: 13px;
  line-height: 21px;
  text-align: center;
  font-weight: 800;
}

.expan-home-hero-media {
  min-width: 0;
}

.expan-hero-carousel {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.expan-hero-carousel .carousel-inner {
  border-radius: 24px;
}

.expan-hero-carousel .item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.expan-hero-carousel .carousel-control {
  width: 12%;
  border-radius: 24px;
  background-image: none;
  opacity: 1;
}

.expan-hero-carousel .carousel-control.left {
  background: linear-gradient(90deg, rgba(0,0,0,0.26), rgba(0,0,0,0));
}

.expan-hero-carousel .carousel-control.right {
  background: linear-gradient(270deg, rgba(0,0,0,0.26), rgba(0,0,0,0));
}

.expan-hero-carousel .carousel-indicators {
  bottom: 16px;
}

.expan-hero-carousel .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-color: #ffffff;
  background: rgba(255,255,255,0.45);
}

.expan-hero-carousel .carousel-indicators .active {
  width: 11px;
  height: 11px;
  background: #f28c00;
  border-color: #f28c00;
}

.expan-home-service {
  padding: 28px 0 54px;
  background: #f5f7fa;
}

.expan-home-service-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.expan-home-service-card {
  padding: 28px;
  border: 1px solid #e6e9ee;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.expan-home-service-card .glyphicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #fff3e8;
  color: #d96a00;
  font-size: 23px;
}

.expan-home-service-card h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 850;
}

.expan-home-service-card p {
  margin: 0;
  color: #5f6b7a;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .expan-home-hero-inner {
    grid-template-columns: 1fr;
  }

  .expan-home-hero-media {
    order: -1;
  }

  .expan-hero-carousel .item img {
    height: 390px;
  }

  .expan-home-service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .expan-home-hero {
    padding: 18px 0 18px;
  }

  .expan-home-hero-inner,
  .expan-home-service-grid {
    padding: 0 12px;
  }

  .expan-home-hero-text {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .expan-home-hero h1 {
    font-size: 30px;
  }

  .expan-home-lead {
    font-size: 18px;
  }

  .expan-home-hero p {
    font-size: 15px;
    line-height: 1.6;
  }

  .expan-home-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .expan-btn {
    width: 100%;
  }

  .expan-hero-carousel {
    border-radius: 16px;
  }

  .expan-hero-carousel .carousel-inner {
    border-radius: 16px;
  }

  .expan-hero-carousel .item img {
    height: 260px;
  }

  .expan-home-service-card {
    padding: 22px;
    border-radius: 16px;
  }
}

/* Moderner Footer-Bereich */
.footer-index {
  margin-top: 46px;
  padding: 0;
  border: 0;
  background: #f5f7fa;
  color: #152033;
}

/* Footer Navigation */
.footer-index > .navbar {
  margin: 0 0 24px;
  border: 1px solid #e6e9ee;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.footer-index > .navbar .container-fluid {
  padding: 10px 18px;
}

.footer-index .navbar-nav {
  float: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.footer-index .navbar-nav > li {
  float: none;
}

.footer-index .navbar-nav > li > a {
  padding: 10px 16px;
  border-radius: 999px;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.footer-index .navbar-nav > li > a:hover,
.footer-index .navbar-nav > li > a:focus,
.footer-index .navbar-nav > .active > a,
.footer-index .navbar-nav > .active > a:hover,
.footer-index .navbar-nav > .active > a:focus {
  background: #fff3e8;
  color: #d96a00;
}

/* Lange Footer-Texte */
.footer2-index {
  margin: 0 0 28px;
  padding: 34px;
  border: 1px solid #e6e9ee;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

/* Überschriften als moderne Trenner */
.footer2-index h4 {
  position: relative;
  margin: 30px 0 12px;
  padding: 0 0 0 18px;
  color: #111827;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.footer2-index h4:first-child {
  margin-top: 0;
}

.footer2-index h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 24px;
  border-radius: 99px;
  background: #d96a00;
}

/* Fließtext lesbarer machen */
.footer2-index p {
  max-width: 980px;
  margin: 0 0 16px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.78;
}

.footer2-index b,
.footer2-index strong {
  color: #111827;
}

/* Bereich nach footer2, z.B. Parken / Wegbeschreibung */
.footer-index > .row {
  margin-left: 0;
  margin-right: 0;
  padding: 30px 28px;
  border: 1px solid #e6e9ee;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.07);
}

.footer-index > .row h3 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.footer-index > .row h4 {
  margin: 22px 0 12px;
  color: #d96a00;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 850;
}

.footer-index > .row p {
  margin: 0 0 16px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.75;
}

/* Stadtlinks als Chips */
.footer-index > .row a {
  display: inline-flex;
  align-items: center;
  margin: 0 6px 8px 0;
  padding: 8px 12px;
  border: 1px solid #e6e9ee;
  border-radius: 999px;
  background: #ffffff;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-index > .row a:hover,
.footer-index > .row a:focus {
  transform: translateY(-1px);
  border-color: #d96a00;
  background: #fff3e8;
  color: #d96a00;
  text-decoration: none;
}

/* Abstand zwischen den Standort-Spalten */
.footer-index > .row .col-md-4 {
  margin-top: 12px;
}

/* Mobile Optimierung */
@media (max-width: 767px) {
  .footer-index {
    margin-top: 28px;
  }

  .footer-index > .navbar {
    border-radius: 14px;
  }

  .footer-index > .navbar .container-fluid {
    padding: 8px 12px;
  }

  .footer-index .navbar-nav {
    display: block;
    margin: 0;
  }

  .footer-index .navbar-nav > li > a {
    display: block;
    margin-bottom: 6px;
    text-align: center;
  }

  .footer2-index {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .footer2-index h4 {
    margin-top: 24px;
    font-size: 19px;
  }

  .footer2-index p {
    font-size: 15px;
    line-height: 1.65;
  }

  .footer-index > .row {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .footer-index > .row h3 {
    font-size: 23px;
  }

  .footer-index > .row h4 {
    font-size: 18px;
  }

  .footer-index > .row a {
    width: 100%;
    justify-content: center;
    margin-right: 0;
  }
}