: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;
  }
}

/* =========================================================
   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%),
    url("/shop-d/images/hero/hero-bueromoebel-duesseldorf-skyline.webp");
  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-benefits {
  position: absolute;
  left: clamp(24px, 4vw, 72px);
  right: 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 {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}

/* =========================================================
   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: 30px;
  }

  .angebote-headline {
    padding-left: 48px;
    padding-right: 48px;
  }

  .angebote-headline-row {
    align-items: flex-start;
  }
}


/* 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;
  }

}