/*
 * Theme Name:  Divi Child — Auktionshaus Demessieur
 * Theme URI:   https://www.demessieur.de
 * Description: Child-Theme für Divi 5 — Auktionshaus Demessieur Düsseldorf
 * Author:      Nesto
 * Template:    Divi
 * Version:     1.2.0
 */

/* ========================================
   INHALTSVERZEICHNIS
   ─────────────────────────────────────────
   1.  Design Tokens (Farben, Schriften)
   2.  Divi Overrides — Global
   3.  Divi Header & Navigation
   4.  NST Hero — Startseiten-Hero
   5.  NST Warengruppen-Grid
   6.  Responsive
       6a. Widescreen      (min-width: 1600px)
       6b. Desktop         (max-width: 1280px)
       6c. Tablet Landscape(max-width: 980px)
       6d. Tablet Portrait (max-width: 768px)
       6e. Mobil           (max-width: 480px)
======================================== */


/* ========================================
   1. Design Tokens
======================================== */

:root {
  /* Markenfarben */
  --color-navy:      #1a1d2e;
  --color-wine:      #6b1a2a;
  --color-wine-dark: #4a1020;
  --color-wine-hover:#8a2236;
  --color-gold:      #c4956a;

  /* Neutrale */
  --color-bg:        #faf9f7;
  --color-surface:   #f5f4f2;
  --color-border:    #e2ddd8;
  --color-text:      #1a1d2e;
  --color-muted:     #666;

  /* Typografie */
  --font-serif:  "Playfair Display", Georgia, serif;
  --font-sans:   "Inter", system-ui, sans-serif;

  /* Abstände */
  --section-gap:    3rem;
  --container-pad:  clamp(1rem, 4vw, 3rem);
}


/* ========================================
   2. Divi Overrides — Global
======================================== */

/* Sektion-Padding global entfernen wenn gewünscht */
/* .et_pb_section { padding: 0 !important; } */

/* Zeile mit Hero: Padding und Max-Breite aufheben */
.et_pb_row:has(.nst-hero) {
  padding-top:    0 !important;
  padding-bottom: 0 !important;
  max-width:      100% !important;
  width:          100% !important;
}

.et_pb_column:has(.nst-hero) {
  padding: 0 !important;
}

/* Sektion mit Hero: kein Padding */
.et_pb_section:has(.nst-hero) {
  padding-top:    0 !important;
  padding-bottom: 0 !important;
}


/* ========================================
   3. Divi Header & Navigation
======================================== */

header a,
.site-header a {
  color: #fff;
}

/* Aktives Menü-Item */
.et_pb_menu .et-menu li.current-menu-item > a {
  border-bottom: 2px solid var(--color-wine);
  padding-bottom: 2px;
  color: #fff !important;
}

/* Menü-Links */
.et_pb_menu .et-menu li a {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: color 0.18s ease;
}

.et_pb_menu .et-menu li a:hover {
  color: #fff !important;
}

/* Header-Sektion Hintergrund */
.et_pb_section.nst-header {
  background: var(--color-navy) !important;
}


/* ========================================
   4. NST Hero — Startseiten-Hero
======================================== */

/* Outer wrapper */
.nst-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-navy);
  width: 100%;
  box-sizing: border-box;
}

/* ── Linke Seite: Branding ── */
.nst-hero-brand {
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  box-sizing: border-box;
  min-height: clamp(380px, 40vw, 600px);
}

.nst-hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}

.nst-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: #fff;
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.nst-hero-title em {
  font-style: italic;
  color: var(--color-gold);
}

.nst-hero-sub {
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 1.75rem;
  max-width: 380px;
}

.nst-hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.nst-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--color-wine);
  color: #fff !important;
  border: 2px solid var(--color-wine);
  padding: 0.7rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.nst-hero-btn-primary:hover {
  background: var(--color-wine-hover);
  border-color: var(--color-wine-hover);
  color: #fff !important;
}

.nst-hero-btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.82) !important;
  border: 2px solid rgba(255, 255, 255, 0.25);
  padding: 0.7rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.nst-hero-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff !important;
}

/* ── Rechte Seite: Stage ── */
.nst-hero-stage {
  position: relative;
  overflow: hidden;
  align-self: stretch;
}

/* Slider-Container */
.nst-hero-slider {
  position: absolute;
  inset: 0;
}

/* Einzelner Slide */
.nst-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  overflow: hidden;
}

.nst-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  animation: nstHeroSlideIn 0.4s ease;
}

@keyframes nstHeroSlideIn {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Bild */
.nst-hero-slide-img {
  display: block;
  position: absolute;
  inset: 0;
}

.nst-hero-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #0d0f1a;
  transition: transform 0.6s ease;
}

.nst-hero-slide.is-active .nst-hero-slide-img img {
  transform: scale(1.025);
}

/* Gradient-Overlay */
.nst-hero-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(8, 6, 4, 0)    0%,
    rgba(8, 6, 4, 0.80) 45%,
    rgba(8, 6, 4, 0.96) 100%
  );
  padding: 3rem 1.5rem 1.5rem;
}

.nst-hero-slide-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.25rem;
}

.nst-hero-slide-kicker span {
  color: rgba(255, 255, 255, 0.28);
}

.nst-hero-slide-lot {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 0.15rem;
}

.nst-hero-slide-title {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.45rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nst-hero-slide-price {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--color-gold);
  margin-bottom: 0.6rem;
  line-height: 1;
}

.nst-hero-slide-price-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 0.18rem;
}

.nst-hero-slide-link {
  display: inline-block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6) !important;
  text-decoration: none !important;
  letter-spacing: 0.06em;
  transition: color 0.15s ease;
}

.nst-hero-slide-link:hover {
  color: var(--color-gold) !important;
}

/* Pfeile */
.nst-hero-prev,
.nst-hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  background: rgba(26, 29, 46, 0.72);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease;
  pointer-events: all;
}

.nst-hero-prev { left: 0; }
.nst-hero-next { right: 0; }

.nst-hero-prev:hover,
.nst-hero-next:hover { background: var(--color-wine); }

/* Dots */
.nst-hero-dots {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  z-index: 10;
  display: flex;
  gap: 5px;
  align-items: center;
}

.nst-hero-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
  flex-shrink: 0;
}

.nst-hero-dot.is-active {
  background: var(--color-gold);
  width: 20px;
}

/* Fallback — keine aktive Auktion */
.nst-hero-fallback {
  position: absolute;
  inset: 0;
  background: #0d0f1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nst-hero-fallback-inner {
  text-align: center;
  padding: 2rem;
}

.nst-hero-fallback-badge {
  display: inline-flex;
  flex-direction: column;
  background: rgba(26, 29, 46, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 2rem;
  margin-bottom: 1.25rem;
}

.nst-hero-fallback-badge-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.4rem;
}

.nst-hero-fallback-badge-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
}

.nst-hero-fallback-hint {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.38);
}


/* ========================================
   5. NST Warengruppen-Grid
======================================== */

.nst-categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin: 2rem 0;
}

.nst-category-item {
  text-decoration: none;
  display: block;
}

.nst-category-inner {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
  padding: 1.1rem 0.75rem;
  text-align: center;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  height: 100%;
}

.nst-category-item:hover .nst-category-inner {
  background: #fff;
  border-color: var(--color-wine);
  border-bottom-color: var(--color-wine);
  transform: translateY(-2px);
}

.nst-category-name {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.nst-category-item:hover .nst-category-name {
  color: var(--color-wine);
}


/* ========================================
   6. Responsive
======================================== */

/* ── 6a. Widescreen ≥ 1600px ── */
@media (min-width: 1600px) {

  .nst-hero-brand {
    padding: 5rem 4rem;
  }

  .nst-hero-title {
    font-size: 3rem;
  }

  .nst-hero-sub {
    font-size: 1rem;
    max-width: 440px;
  }

  .nst-categories-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

/* ── 6b. Desktop ≤ 1280px ── */
@media (max-width: 1280px) {

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

/* ── 6c. Tablet Landscape ≤ 980px ── */
@media (max-width: 980px) {

  /* Hero: untereinander statt nebeneinander */
  .nst-hero {
    grid-template-columns: 1fr;
  }

  .nst-hero-brand {
    padding: 2.5rem 1.75rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    min-height: auto;
  }

  .nst-hero-title {
    font-size: 1.9rem;
  }

  .nst-hero-sub {
    max-width: 100%;
  }

  /* Stage bekommt feste Höhe da kein Grid-Stretch mehr */
  .nst-hero-stage {
    height: 55vw;
    min-height: 300px;
    max-height: 460px;
  }

  /* Warengruppen: 4 Spalten */
  .nst-categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── 6d. Tablet Portrait ≤ 768px ── */
@media (max-width: 768px) {

  .nst-hero-brand {
    padding: 2rem 1.5rem;
  }

  .nst-hero-title {
    font-size: 1.7rem;
  }

  .nst-hero-stage {
    height: 62vw;
    min-height: 260px;
  }

  .nst-hero-slide-overlay {
    padding: 2rem 1.25rem 1rem;
  }

  /* Warengruppen: 3 Spalten */
  .nst-categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
}

/* ── 6e. Mobil ≤ 480px ── */
@media (max-width: 480px) {

  .nst-hero-brand {
    padding: 1.75rem 1.25rem;
  }

  .nst-hero-title {
    font-size: 1.5rem;
  }

  .nst-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .nst-hero-btn-primary,
  .nst-hero-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .nst-hero-stage {
    height: 72vw;
    min-height: 220px;
  }

  .nst-hero-slide-title {
    font-size: 0.92rem;
  }

  .nst-hero-prev,
  .nst-hero-next {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  /* Warengruppen: 2 Spalten */
  .nst-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ========================================
   7. NST Highlights — Startseiten-Sektion
======================================== */

.nst-highlights {
    width: 100%;
}

/* Header */
.nst-highlights-header {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 1.25rem;
}

.nst-highlights-eyebrow {
    width: 100%;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.25rem;
}

.nst-highlights-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-navy);
    flex: 1;
    margin: 0;
}

.nst-highlights-link {
    font-size: 0.78rem;
    color: var(--color-wine);
    text-decoration: none;
    flex-shrink: 0;
}

.nst-highlights-link:hover {
    text-decoration: underline;
}

/* Grid: Featured links, Sekundäre rechts */
.nst-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--color-border);
    border: 1px solid var(--color-border);
}

/* ── Alle Karten gleichwertig ── */
.nst-hl-featured,
.nst-hl-small {
    display: grid;
    grid-template-rows: 220px auto;
    text-decoration: none;
    background: #fff;
    overflow: hidden;
    transition: background 0.15s ease;
}

.nst-hl-featured:hover,
.nst-hl-small:hover {
    background: var(--color-bg);
}

/* Bild */
.nst-hl-featured-img,
.nst-hl-small-img {
    background: #1a1d2e;
    overflow: hidden;
}

.nst-hl-featured-img img,
.nst-hl-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.nst-hl-featured:hover .nst-hl-featured-img img,
.nst-hl-small:hover .nst-hl-small-img img {
    transform: scale(1.03);
}

/* Info-Bereich */
.nst-hl-featured-body,
.nst-hl-small-body {
    padding: 1.1rem 1.25rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.nst-hl-lot-number {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.15rem;
}

.nst-hl-featured-title,
.nst-hl-small-title {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    line-height: 1.35;
    color: var(--color-navy);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nst-hl-price-label {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #bbb;
    margin-top: 0.3rem;
    margin-bottom: 0.1rem;
}

.nst-hl-featured-price,
.nst-hl-small-price {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-wine);
    line-height: 1;
}

.nst-hl-sale-price {
    color: var(--color-wine);
}

.nst-hl-btn {
    display: none; /* Im Grid nicht nötig — ganzer Link ist klickbar */
}

/* Secondary wrapper: kein eigenes Grid mehr nötig */
.nst-hl-secondary {
    display: contents; /* Kinder direkt ins übergeordnete Grid einfügen */
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .nst-highlights-grid {
        grid-template-columns: 1fr;
    }

    .nst-hl-featured,
    .nst-hl-small {
        grid-template-rows: 180px auto;
    }
}

/* Kein Bild-Fallback */
.nst-hl-no-image {
    width: 100%;
    height: 100%;
    background: #1a1d2e;
    min-height: 120px;
}

/* Varianten — bei weniger als 4 Highlights */
.nst-highlights--1 .nst-highlights-grid,
.nst-highlights--2 .nst-highlights-grid,
.nst-highlights--3 .nst-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
}

.nst-highlights--1 .nst-highlights-grid {
    grid-template-columns: 1fr;
}



/* ========================================
   8. Katalog-Seite
======================================== */

/* ── Header ── */
.nst-catalog-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.nst-catalog-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-navy);
    margin: 0 0 0.35rem;
}

.nst-catalog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #999;
}

.nst-catalog-meta span::before {
    content: '';
}

.nst-catalog-meta span + span::before {
    content: '·';
    margin-right: 1rem;
}

/* ── Suchleiste ── */
.nst-search-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 1.75rem;
    padding: 1rem 1.25rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
}

.nst-search-field {
    display: flex;
    flex-direction: column;
}

.nst-search-field--text {
    flex: 1;
    min-width: 180px;
}

.nst-search-select,
.nst-search-input {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-navy);
    height: 38px;
    outline: none;
    transition: border-color 0.15s ease;
}

.nst-search-input {
    width: 100%;
}

.nst-search-select:focus,
.nst-search-input:focus {
    border-color: var(--color-navy);
}

.nst-search-btn {
    background: var(--color-navy);
    color: #fff;
    border: none;
    padding: 0 1.25rem;
    height: 38px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease;
}

.nst-search-btn:hover {
    background: var(--color-wine);
}

/* ── Lot-Grid ── */
.nst-lot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: transparent;
    border: none;
}

.nst-lot-item {
    background: #fff;
}

/* ── Lot-Card ── */
.nst-lot-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
    background: #fff;
    border: 1px solid var(--color-border);
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

.nst-lot-card:hover {
    background: var(--color-surface);
}

/* Bild */
.nst-lot-card-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0eeeb;
    flex-shrink: 0;
}

.nst-lot-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

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

/* Body */
.nst-lot-card-body {
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    border-top: 1px solid var(--color-border);
}

.nst-lot-card-number {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
}

.nst-lot-card-title {
    font-family: var(--font-serif);
    font-size: 0.88rem;
    line-height: 1.35;
    color: var(--color-navy);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.nst-lot-card-category {
    font-size: 0.72rem;
    color: #aaa;
    letter-spacing: 0.04em;
}

.nst-lot-card-price {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-wine);
    margin-top: 0.35rem;
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.nst-lot-card-price-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #bbb;
}

/* Keine Ergebnisse */
.nst-no-results {
    grid-column: 1 / -1;
    padding: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

/* ── Paginierung ── */
.nst-catalog-footer {
    margin-top: 2rem;
}

.nst-pagination {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.nst-pagination a,
.nst-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    font-size: 0.82rem;
    border: 1px solid var(--color-border);
    text-decoration: none;
    color: var(--color-navy);
    background: #fff;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.nst-pagination a:hover {
    background: var(--color-surface);
    border-color: var(--color-navy);
}

.nst-pagination .nst-page-current {
    background: var(--color-navy);
    color: #fff;
    border-color: var(--color-navy);
}

.nst-pagination .nst-page-sep {
    border: none;
    background: transparent;
    color: #bbb;
}

/* ── Responsive ── */
@media (max-width: 1280px) {
    .nst-lot-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nst-lot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nst-search-form {
        flex-direction: column;
    }

    .nst-search-field,
    .nst-search-field--text {
        width: 100%;
    }

    .nst-search-select,
    .nst-search-input,
    .nst-search-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nst-lot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .nst-lot-card-body {
        padding: 0.65rem 0.75rem;
    }

    .nst-lot-card-title {
        font-size: 0.82rem;
    }
}


/* ========================================
   9. Startseite — Highlights + News Grid
      Highlights links, Aktuelles rechts.
      Wenn [nst_news] leer → Highlights volle Breite.
======================================== */

/* Wrapper der beide Sektionen zusammenhält */
.nst-highlights-news-wrap {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
}

/* Wenn News-Block fehlt (leer) → Highlights volle Breite */
.nst-highlights-news-wrap:has(.nst-highlights:only-child),
.nst-highlights-news-wrap .nst-highlights:only-child {
    grid-column: 1 / -1;
}

/* ── News-Block ── */
.nst-news {
    border: 1px solid var(--color-border);
    background: var(--color-surface);
}

.nst-news-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0.85rem 1.1rem;
    border-bottom: 1px solid var(--color-border);
}

.nst-news-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.15rem;
}

.nst-news-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-navy);
}

.nst-news-all {
    font-size: 0.72rem;
    color: var(--color-wine);
    text-decoration: none;
    flex-shrink: 0;
}

.nst-news-all:hover {
    text-decoration: underline;
}

/* Einzelner News-Eintrag */
.nst-news-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0 0.85rem;
    align-items: start;
    padding: 1rem 1.1rem;
}

.nst-news-item + .nst-news-item {
    border-top: 1px solid var(--color-border);
}

.nst-news-date {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #bbb;
    padding-top: 3px;
    white-space: nowrap;
}

.nst-news-content {}

.nst-news-item-title {
    font-family: var(--font-serif);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.35;
    color: var(--color-navy);
    margin-bottom: 0.4rem;
}

.nst-news-item-text {
    font-size: 0.78rem;
    line-height: 1.65;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.4rem;
}

.nst-news-item-more {
    display: inline-block;
    font-size: 0.72rem;
    color: var(--color-wine);
    text-decoration: none;
    letter-spacing: 0.04em;
}

.nst-news-item-more:hover {
    text-decoration: underline;
}

/* Fallback: Auktions-Datum hervorheben */
.nst-news-auction-date {
    font-size: 0.78rem;
    color: #555;
    margin: 0.5rem 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nst-news-auction-date i {
    font-size: 14px;
    color: var(--color-wine);
}

.nst-news-auction-date strong {
    color: var(--color-navy);
    font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 980px) {
    .nst-highlights-news-wrap {
        grid-template-columns: 1fr;
    }

    /* News wandert unter Highlights */
    .nst-news-item {
        grid-template-columns: 60px 1fr;
    }
}


/* ========================================
   10. "So funktioniert eine Auktion"
======================================== */

.nst-how {
    background: var(--color-navy);
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
}

.nst-how-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0.5rem;
}

.nst-how-title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 2rem;
}

.nst-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.75rem;
}

.nst-how-step {
    background: var(--color-navy);
    padding: 1.75rem 1.5rem;
}

.nst-how-step-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: 0.85rem;
}

.nst-how-step-icon {
    font-size: 22px;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.65rem;
}

.nst-how-step-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.5rem;
}

.nst-how-step-text {
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
}

.nst-how-step-text strong {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

.nst-how-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.nst-how-btn {
    display: inline-flex;
    align-items: center;
    background: var(--color-wine);
    color: #fff !important;
    border: 2px solid var(--color-wine);
    padding: 0.7rem 1.4rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none !important;
    transition: background 0.18s ease;
}

.nst-how-btn:hover {
    background: var(--color-wine-hover);
    border-color: var(--color-wine-hover);
}

.nst-how-link {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.15s ease;
}

.nst-how-link:hover {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .nst-how-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   11. Über uns
======================================== */

.nst-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.nst-about-media {
    background: var(--color-navy);
    min-height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nst-about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Platzhalter wenn noch kein Bild vorhanden */
.nst-about-media-placeholder {
    width: 100%;
    height: 100%;
    min-height: 320px;
    background: var(--color-navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.nst-about-media-placeholder i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.12);
}

.nst-about-media-placeholder span {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
}

.nst-about-content {
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-surface);
    border-left: 1px solid var(--color-border);
}

.nst-about-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.5rem;
}

.nst-about-title {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 400;
    color: var(--color-navy);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.nst-about-text {
    font-size: 0.88rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 1.25rem;
}

.nst-about-list {
    list-style: none;
    font-size: 0.82rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 1.5rem;
}

.nst-about-list li::before {
    content: "→";
    color: var(--color-wine);
    margin-right: 0.5rem;
}

.nst-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--color-border);
    border: 1px solid var(--color-border);
    margin-bottom: 1.5rem;
}

.nst-about-stat {
    background: #fff;
    padding: 0.85rem 1rem;
}

.nst-about-stat-num {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-navy);
    line-height: 1;
}

.nst-about-stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    margin-top: 0.25rem;
}

.nst-about-note {
    font-size: 0.75rem;
    color: #aaa;
    font-style: italic;
}

.nst-about-btn {
    display: inline-flex;
    align-items: center;
    background: var(--color-navy);
    color: #fff !important;
    border: 2px solid var(--color-navy);
    padding: 0.7rem 1.4rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none !important;
    transition: background 0.18s ease;
    margin-bottom: 1rem;
    width: fit-content;
}

.nst-about-btn:hover {
    background: var(--color-wine);
    border-color: var(--color-wine);
}

@media (max-width: 900px) {
    .nst-about {
        grid-template-columns: 1fr;
    }

    .nst-about-media {
        min-height: 240px;
    }

    .nst-about-content {
        border-left: none;
        border-top: 1px solid var(--color-border);
    }

    .nst-about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ========================================
   12. CTA-Banner
======================================== */

.nst-cta {
    background: var(--color-wine);
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 6vw, 6rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    box-sizing: border-box;
}

@media (min-width: 1400px) {
   
}

.nst-cta-left {
    flex: 1;
    min-width: 0;
}

.nst-cta-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.35rem;
}

.nst-cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.3rem;
}

.nst-cta-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.nst-cta-right {
    text-align: right;
    flex-shrink: 0;
}

.nst-cta-date-label {
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.3rem;
}

.nst-cta-date {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.85rem;
}

.nst-cta-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: var(--color-wine) !important;
    border: 2px solid #fff;
    padding: 0.7rem 1.4rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.18s ease, color 0.18s ease;
}

.nst-cta-btn:hover {
    background: transparent;
    color: #fff !important;
}

@media (max-width: 768px) {
    .nst-cta {
        grid-template-columns: 1fr;
    }

    .nst-cta-right {
        text-align: left;
    }
}


/* ========================================
   13. Footer
======================================== */

.nst-footer {
    background: #111318;
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem) 1rem;
}

.nst-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.nst-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.85rem;
}

.nst-footer-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--color-wine);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

.nst-footer-logo-name {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
}

.nst-footer-logo-sub {
    display: block;
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.nst-footer-about {
    font-size: 0.78rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.85rem;
}

.nst-footer-contact {
    font-size: 0.78rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.42);
}

.nst-footer-contact a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

.nst-footer-contact a:hover {
    color: #fff;
}

.nst-footer-col h4 {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 0.85rem;
}

.nst-footer-col ul {
    list-style: none;
}

.nst-footer-col ul li {
    margin-bottom: 0.45rem;
}

.nst-footer-col ul li a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.48);
    text-decoration: none;
    transition: color 0.15s ease;
}

.nst-footer-col ul li a:hover {
    color: #fff;
}

.nst-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nst-footer-copy {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 980px) {
    .nst-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .nst-footer-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   14. Max-Width Container
   Hero bleibt volle Breite.
   Alle Inhalts-Sektionen bekommen einen
   inneren Container der auf 1400px begrenzt.
======================================== */

/* Innerer Container für Inhalts-Sektionen */
.nst-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Hero bleibt immer volle Breite — kein nst-inner nötig */
.nst-hero {
    max-width: 100%;
}

/* Warengruppen-Grid — inneren Container begrenzen */
.nst-categories-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem var(--container-pad);
}

/* Highlights + News — inneren Container begrenzen */
.nst-highlights-news-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem var(--container-pad);
}

/* How-it-works: innerer Container */
.nst-how-inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* Über uns: volle Breite aber Inhalt begrenzen */
.nst-about {
    max-width: 1400px;
    margin: 0 auto;
}

/* CTA: volle Breite mit innerem Container */
.nst-cta-wrap {
    width: 100%;
    background: var(--color-wine);
}

.nst-cta {
    max-width: 1400px;
    margin: 0 auto;
}

/* Katalog-Seite */
.nst-catalog {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem var(--container-pad) 4rem;
}

/* Lot-Detail-Seite */
.nst-lot-page {
    max-width: 1100px;
}

/* ── Responsive Anpassung ── */
@media (min-width: 1400px) {
    .nst-how {
        padding-left: calc((100vw - 1400px) / 2 + 3rem);
        padding-right: calc((100vw - 1400px) / 2 + 3rem);
    }
}


/* ========================================
   15. Fixes — Feedback Runde 1
======================================== */

/* ── Fix 1: Warengruppen-Sektion eigener Hintergrund ── */
.nst-categories-section {
    background: var(--color-navy) !important;
    border-top: none !important;
    border-bottom: none !important;
    padding: 2.5rem 0 !important;
}

.nst-categories-wrap {
    padding: 0 var(--container-pad);
}

.nst-categories-section-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-pad) 1.25rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.nst-categories-section-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.3rem;
}

.nst-categories-section-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

/* Kategorien als Pills auf Navy-Hintergrund */
.nst-categories-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
}

.nst-category-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.45rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.nst-category-tag:hover {
    background: var(--color-wine);
    border-color: var(--color-wine);
    color: #fff;
}

/* ── Fix 2: Highlights + News Sektion eigener Hintergrund ── */
.nst-highlights-section {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 2.5rem 0;
}

/* ── Fix 3: Über uns — Übergang und Überschrift ── */
.nst-about-section {
    background: #fff;
    border-top: 1px solid var(--color-border);
}

.nst-about-section-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem var(--container-pad) 0;
}

.nst-about-section-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.3rem;
}

.nst-about-section-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-navy);
    margin: 0 0 1.5rem;
}


/* ========================================
   16. Warengruppen-Icons
======================================== */

.nst-category-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.nst-category-icon {
    font-size: 1.6rem;
    color: var(--color-navy);
    transition: color 0.18s ease;
    display: block;
    line-height: 1;
}

.nst-category-item:hover .nst-category-icon {
    color: var(--color-wine);
}

/* Tabler Icons werden über functions.php eingebunden.
   Lokal: /wp-content/themes/child-theme/fonts/tabler/tabler-icons.woff2
   Siehe functions.php für Umstellung von CDN auf lokal (DSGVO). */


/* ========================================
   17. Hero — Breiten-Fix & Pfeil-Icons
======================================== */

/* Mehr Padding auf breiten Screens damit
   der Text nicht so weit links klebt */
.nst-hero-brand {
    padding: clamp(2rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
}

/* Pfeile: Tabler Icons statt HTML-Entities */
.nst-hero-prev::after,
.nst-hero-next::after {
    font-family: 'tabler-icons';
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1;
}

.nst-hero-prev::after { content: "\ea19"; } /* ti-arrow-left  */
.nst-hero-next::after { content: "\ea1c"; } /* ti-arrow-right */

/* Sicherstellen dass kein Text-Inhalt die Icons überlagert */
.nst-hero-prev,
.nst-hero-next {
    font-size: 0; /* Text-Fallback ausblenden */
}


/* ========================================
   18. Formulare
======================================== */

.nst-form-wrap {
    max-width: 720px;
}

.nst-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Sektionen */
.nst-form-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.nst-form-section:last-of-type {
    border-bottom: none;
}

.nst-form-section-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-navy);
    margin: 0 0 1rem;
}

/* Zeilen & Felder */
.nst-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.nst-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.nst-form-field:last-child {
    margin-bottom: 0;
}

.nst-form-field label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-navy);
    letter-spacing: 0.02em;
}

.nst-required {
    color: var(--color-wine);
    margin-left: 2px;
}

.nst-form-hint {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.nst-form-hint small {
    display: block;
    margin-top: 0.25rem;
    color: #aaa;
    font-size: 0.75rem;
}

/* Inputs */
.nst-form input[type=text],
.nst-form input[type=email],
.nst-form input[type=tel],
.nst-form input[type=number],
.nst-form select,
.nst-form textarea {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-navy);
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.15s ease;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

.nst-form input:focus,
.nst-form select:focus,
.nst-form textarea:focus {
    border-color: var(--color-navy);
}

.nst-form textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.nst-form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a1d2e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.5rem;
}

/* Checkbox */
.nst-form-checkbox {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 0.6rem !important;
}

.nst-form-checkbox input[type=checkbox] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--color-wine);
    cursor: pointer;
}

.nst-form-checkbox label {
    font-size: 0.82rem;
    font-weight: 400 !important;
    line-height: 1.5;
    cursor: pointer;
}

.nst-form-checkbox label a {
    color: var(--color-wine);
    text-decoration: underline;
}

/* Aktionen */
.nst-form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.nst-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-navy);
    color: #fff;
    border: 2px solid var(--color-navy);
    padding: 0.75rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.nst-form-btn:hover {
    background: var(--color-wine);
    border-color: var(--color-wine);
}

.nst-form-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.nst-form-note {
    font-size: 0.78rem;
    color: #999;
}

/* Status-Meldungen */
.nst-form-status {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    font-size: 0.88rem;
    line-height: 1.5;
}

.nst-form-status.nst-form-success {
    background: #e8f6ea;
    border: 1px solid #9ed3a5;
    color: #1a4a1a;
}

.nst-form-status.nst-form-error {
    background: #fdeaea;
    border: 1px solid #e0a4a4;
    color: #4a1a1a;
}

/* Los-Info im Gebotsformular */
.nst-form-lot-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-wine);
    margin-bottom: 1.5rem;
}

.nst-form-lot-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
}

.nst-form-lot-num {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-navy);
}

/* ── Upload-Bereich ── */
.nst-upload-area {
    border: 2px dashed var(--color-border);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
    position: relative;
}

.nst-upload-area:hover,
.nst-upload-area.is-dragging {
    border-color: var(--color-navy);
    background: var(--color-surface);
}

.nst-upload-area input[type=file] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.nst-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
}

.nst-upload-placeholder i {
    font-size: 2.5rem;
    color: #ccc;
}

.nst-upload-placeholder span {
    font-size: 0.88rem;
    color: #666;
}

.nst-upload-placeholder small {
    font-size: 0.75rem;
    color: #aaa;
}

.nst-upload-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    pointer-events: none;
}

.nst-upload-thumb {
    width: 80px;
    text-align: center;
}

.nst-upload-thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid var(--color-border);
}

.nst-upload-thumb span {
    display: block;
    font-size: 0.65rem;
    color: #999;
    margin-top: 0.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .nst-form-row {
        grid-template-columns: 1fr;
    }

    .nst-form-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .nst-form-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ========================================
   18. Formulare (Einliefern, Kontakt, Gebot)
======================================== */

.nst-form-wrap {
    max-width: 720px;
}

/* Erfolgs- und Fehlermeldungen */
.nst-form-success-msg {
    padding: 1rem 1.25rem;
    background: #e8f6ea;
    border: 1px solid #9ed3a5;
    color: #1a4a1a;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.nst-form-error-msg {
    padding: 1rem 1.25rem;
    background: #fdeaea;
    border: 1px solid #e0a4a4;
    color: #4a1a1a;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Grid */
.nst-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.nst-form-field--full {
    grid-column: 1 / -1;
}

/* Felder */
.nst-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.nst-form-field label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-navy);
    letter-spacing: 0.02em;
}

.nst-form-field input[type="text"],
.nst-form-field input[type="email"],
.nst-form-field input[type="tel"],
.nst-form-field input[type="number"],
.nst-form-field textarea,
.nst-form-field select {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-navy);
    outline: none;
    transition: border-color 0.15s ease;
    width: 100%;
    box-sizing: border-box;
}

.nst-form-field input:focus,
.nst-form-field textarea:focus {
    border-color: var(--color-navy);
}

.nst-form-field textarea {
    resize: vertical;
    line-height: 1.6;
}

.nst-form-field input[type="file"] {
    font-size: 0.82rem;
    padding: 0.5rem 0;
    border: none;
    cursor: pointer;
}

/* Hinweistext unter Label */
.nst-form-hint {
    font-weight: 400;
    font-size: 0.75rem;
    color: #999;
    display: block;
    margin-top: 0.1rem;
}

/* Pflichtfeld-Stern */
.nst-form-req {
    color: var(--color-wine);
    margin-left: 2px;
}

/* Foto-Vorschau */
.nst-form-preview {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.nst-form-preview-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid var(--color-border);
}

/* Checkbox */
.nst-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: #555;
    cursor: pointer;
    line-height: 1.5;
}

.nst-form-checkbox input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--color-navy);
}

.nst-form-checkbox a {
    color: var(--color-wine);
    text-decoration: none;
}

.nst-form-checkbox a:hover {
    text-decoration: underline;
}

/* Radio-Gruppe */
.nst-form-radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.nst-form-radio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--color-navy);
    cursor: pointer;
}

.nst-form-radio input[type="radio"] {
    accent-color: var(--color-navy);
    flex-shrink: 0;
}

/* Los-Info beim Gebotsformular */
.nst-form-lot-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-wine);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.nst-form-lot-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
}

.nst-form-lot-num {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-navy);
    font-weight: 400;
}

.nst-form-lot-auction {
    font-size: 0.78rem;
    color: #aaa;
}

/* Submit-Button */
.nst-form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy);
    color: #fff;
    border: 2px solid var(--color-navy);
    padding: 0.85rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.18s ease;
    min-width: 200px;
}

.nst-form-btn:hover {
    background: var(--color-wine);
    border-color: var(--color-wine);
}

.nst-form-btn:disabled {
    background: #aaa;
    border-color: #aaa;
    cursor: not-allowed;
}

/* Hinweistext unter Button */
.nst-form-note {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: #999;
    line-height: 1.6;
}

/* Honeypot verstecken */
.nst-form-hp {
    display: none !important;
    visibility: hidden !important;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .nst-form-grid {
        grid-template-columns: 1fr;
    }

    .nst-form-btn {
        width: 100%;
    }
}


/* ========================================
   19. Lot-Detailseite — Fixes
======================================== */

/* Footer-Fix: Lot-Seite braucht clearfix */
.nst-lot-page {
    max-width: 980px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 4rem;
    overflow: hidden; /* clearfix */
}

/* ── Toggle-Button ── */
.nst-bid-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-navy);
    color: #fff;
    border: 2px solid var(--color-navy);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.nst-bid-toggle:hover {
    background: var(--color-wine);
    border-color: var(--color-wine);
}

.nst-bid-toggle i {
    font-size: 1rem;
}

/* Pfeil-Indikator */
.nst-bid-toggle::after {
    content: '\ea19'; /* ti-arrow-right */
    font-family: 'tabler-icons';
    font-size: 0.85rem;
    margin-left: 0.25rem;
    transition: transform 0.2s ease;
}

.nst-lot-bid:has(.nst-bid-toggle-panel.active) .nst-bid-toggle::after {
    transform: rotate(90deg);
}

/* ── Gebot-Container ── */
.nst-lot-bid {
    margin-top: 2.5rem;
    max-width: 720px;
}

.nst-bid-toggle-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.nst-bid-toggle-panel.active {
    max-height: 2000px;
    opacity: 1;
    margin-top: 1.5rem;
}

/* Los-Info Box im Formular — aufgewertet */
.nst-form-lot-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--color-navy);
    border-left: 4px solid var(--color-wine);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.nst-form-lot-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.nst-form-lot-num {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #fff;
    font-weight: 400;
}

.nst-form-lot-auction {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-left: auto;
}


/* ========================================
   20. Lot-Detailseite — Footer Fix
======================================== */

/* Divi setzt auf Code-Blöcke manchmal float oder
   zu kleine Breiten — explizit überschreiben */
.et_pb_code:has(.nst-lot-page),
.et_pb_code_inner:has(.nst-lot-page) {
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

/* Lot-Seite: volle Breite, kein float */
.nst-lot-page {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 4rem;
    box-sizing: border-box;
    float: none;
    clear: both;
    overflow: visible;
    display: block;
    position: relative;
    z-index: 1;
}

/* Sicherstellen dass nach dem Lot-Container
   alles wieder normal fließt */
.nst-lot-page::after {
    content: '';
    display: table;
    clear: both;
}

/* Lot-Bild: kein float */
.nst-lot-image-area,
.nst-lot-top,
.nst-lot-side {
    float: none !important;
}


/* ========================================
   21. Los-Detailseite — Redesign
======================================== */

.nst-lot-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.25rem 4rem;
    box-sizing: border-box;
}

/* ── Navigation ── */
.nst-lot-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.nst-lot-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    text-decoration: none;
    transition: color 0.15s ease;
}

.nst-lot-nav-back:hover {
    color: var(--color-navy);
}

.nst-lot-nav-back i {
    font-size: 14px;
}

.nst-lot-nav-pager {
    display: flex;
    gap: 1rem;
}

.nst-lot-nav-pager a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    text-decoration: none;
    transition: color 0.15s ease;
}

.nst-lot-nav-pager a:hover {
    color: var(--color-navy);
}

/* ── Eyebrow ── */
.nst-lot-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1.5rem;
}

/* ── Haupt-Grid: Bild + Sidebar ── */
.nst-lot-detail-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

/* ── Medien-Spalte ── */
.nst-lot-media {}

.nst-lot-img-main {
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    overflow: hidden;
    margin-bottom: 8px;
}

.nst-lot-img-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.nst-lot-img-main:hover img {
    transform: scale(1.02);
}

.nst-lot-thumbs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* Thumbnail-Links aus nst-image-list */
.nst-lot-thumbs .nst-gallery-item,
.nst-lot-thumbs a {
    display: block;
    width: 68px;
    height: 68px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    overflow: hidden;
    flex-shrink: 0;
}

.nst-lot-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.15s ease;
}

.nst-lot-thumbs a:hover img {
    opacity: 0.85;
}

/* ── Sidebar ── */
.nst-lot-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 2rem;
}

/* Preis-Box */
.nst-lot-price-box {
    border: 1px solid var(--color-border);
    padding: 1.25rem 1.5rem;
    background: var(--color-surface);
}

.nst-lot-price-label {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.4rem;
}

.nst-lot-price-value {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-navy);
    line-height: 1.1;
    white-space: nowrap;
}

/* Info-Box */
.nst-lot-info-box {
    border: 1px solid var(--color-border);
    background: #fff;
}

.nst-lot-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--color-border);
}

.nst-lot-info-row:last-child {
    border-bottom: none;
}

.nst-lot-info-label {
    color: #999;
    font-size: 0.75rem;
}

.nst-lot-info-value {
    color: var(--color-navy);
    font-weight: 500;
    text-align: right;
    max-width: 60%;
}

/* Gebot-Bereich in Sidebar */
.nst-lot-bid-wrap {}

/* Toggle-Button — volle Breite in Sidebar */
.nst-lot-bid-wrap .nst-bid-toggle {
    width: 100%;
    justify-content: center;
    background: var(--color-navy);
    color: #fff;
    border: 2px solid var(--color-navy);
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.nst-lot-bid-wrap .nst-bid-toggle:hover {
    background: var(--color-wine);
    border-color: var(--color-wine);
}

.nst-lot-bid-wrap .nst-bid-toggle i {
    font-size: 1rem;
}

/* Formular-Panel */
.nst-lot-bid-wrap .nst-bid-toggle-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.nst-lot-bid-wrap .nst-bid-toggle-panel.active {
    max-height: 3000px;
    opacity: 1;
    margin-top: 1rem;
}

/* ── Beschreibung ── */
.nst-lot-desc-block {
    border-top: 1px solid var(--color-border);
    padding-top: 1.75rem;
    max-width: 720px;
}

.nst-lot-desc-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-navy);
    margin-bottom: 0.85rem;
    letter-spacing: 0.02em;
}

.nst-lot-desc-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #444;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .nst-lot-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nst-lot-sidebar {
        position: static;
    }

    .nst-lot-price-value {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .nst-lot-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}


/* ========================================
   22. Los-Detailseite — Formular außerhalb Sidebar
======================================== */

.nst-lot-bid-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}

.nst-lot-bid-panel.active {
    max-height: 3000px;
    opacity: 1;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.nst-lot-bid-panel .nst-form-wrap {
    max-width: 720px;
    border: 1px solid var(--color-border);
    padding: 1.5rem;
    background: var(--color-surface);
}

/* Button in Sidebar volle Breite */
.nst-lot-bid-wrap .nst-bid-toggle {
    width: 100%;
    justify-content: center;
    background: var(--color-navy);
    color: #fff;
    border: 2px solid var(--color-navy);
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.18s ease, border-color 0.18s ease;
    font-family: var(--font-sans);
}

.nst-lot-bid-wrap .nst-bid-toggle:hover,
.nst-lot-bid-wrap .nst-bid-toggle.active {
    background: var(--color-wine);
    border-color: var(--color-wine);
}


/* ========================================
   23. Katalog-Seite — Header
======================================== */

.nst-catalog-hero {
    background: var(--color-navy);
}

.nst-catalog-hero-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 6rem) 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: end;
}

.nst-catalog-hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.5rem;
}

.nst-catalog-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 0.6rem;
}

.nst-catalog-hero-sub {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.nst-catalog-hero-stats {
    display: flex;
    gap: 2rem;
    align-items: flex-end;
    padding-bottom: 0.25rem;
}

.nst-catalog-stat {
    text-align: right;
}

.nst-catalog-stat-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
    line-height: 1;
}

.nst-catalog-stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 0.2rem;
}

/* ── Schnellfilter-Tabs ── */
.nst-catalog-tabs-wrap {
    padding: 0 clamp(2rem, 6vw, 6rem);
    margin-top: 1.75rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.nst-catalog-tabs-wrap::-webkit-scrollbar {
    display: none;
}

.nst-catalog-tabs {
    display: flex;
    gap: 0;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nst-catalog-tab {
    display: inline-block;
    padding: 0.65rem 1.25rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.nst-catalog-tab:hover {
    color: rgba(255, 255, 255, 0.75);
}

.nst-catalog-tab--active {
    color: #fff;
    border-bottom-color: var(--color-gold);
}

/* Catalog-Bereich direkt unter dem Header */
.nst-catalog {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem clamp(2rem, 6vw, 6rem) 4rem;
}

@media (max-width: 768px) {
    .nst-catalog-hero-inner {
        grid-template-columns: 1fr;
        padding: 2rem 1.25rem 0;
    }

    .nst-catalog-hero-stats {
        display: none;
    }

    .nst-catalog-tabs-wrap {
        padding: 0 1.25rem;
    }

    .nst-catalog {
        padding: 1.5rem 1.25rem 3rem;
    }
}


/* ========================================
   24. Seitenübergreifender Hero-Header
   (Einliefern, Kontakt, Über uns etc.)
======================================== */

.nst-page-hero {
    background: var(--color-navy);
    width: 100%;
}

.nst-page-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 6rem) clamp(2.5rem, 5vw, 4rem);
}

.nst-page-hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.5rem;
}

.nst-page-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 0.75rem;
}

.nst-page-hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 600px;
    line-height: 1.65;
    margin: 0;
}


/* ========================================
   25. Jetzt einliefern — Seite
======================================== */

/* ── USP-Leiste ── */
.nst-usps {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    width: 100%;
}

.nst-usps-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem clamp(2rem, 6vw, 6rem);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.nst-usp {
    background: #fff;
    border: 1px solid var(--color-border);
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nst-usp-icon {
    font-size: 1.5rem;
    color: var(--color-wine);
    display: block;
}

.nst-usp-title {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-navy);
    line-height: 1.3;
}

.nst-usp-text {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.6;
}

/* ── Formular + Info — Variante B ── */
.nst-einliefern-section {
    background: #fff;
    border-top: 1px solid var(--color-border);
    width: 100%;
}

.nst-einliefern-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem clamp(2rem, 6vw, 6rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* Linke Spalte */
.nst-einliefern-heading {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.nst-einliefern-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.nst-einliefern-list {
    list-style: none;
    margin-bottom: 2rem;
}

.nst-einliefern-list li {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.7;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--color-border);
    padding-left: 1.25rem;
    position: relative;
}

.nst-einliefern-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-wine);
    border-radius: 50%;
}

/* ── Kontakt-Leiste (Navy, 3 Spalten) ── */
.nst-einliefern-contact {
    width: 100%;
}

.nst-einliefern-contact-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem clamp(2rem, 6vw, 6rem);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.nst-einliefern-contact .nst-contact-col-label {
    color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nst-einliefern-contact .nst-contact-col-val {
    color: rgba(255, 255, 255, 0.65);
}

.nst-einliefern-contact .nst-contact-col-val strong {
    color: #fff;
}

.nst-einliefern-contact .nst-contact-col-val a {
    color: var(--color-gold);
}

.nst-einliefern-contact .nst-contact-col-val em {
    color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
    .nst-einliefern-contact-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Kontakt-Box in linker Spalte */
.nst-einliefern-contact-box {
    background: var(--color-navy);
    padding: 1.5rem;
}

.nst-einliefern-contact-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nst-einliefern-contact-val {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.9;
    margin-bottom: 0.75rem;
}

.nst-einliefern-contact-val strong {
    color: #fff;
    font-weight: 500;
    display: block;
}

.nst-einliefern-contact-val a {
    color: var(--color-gold);
    text-decoration: none;
}

.nst-einliefern-contact-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    font-style: italic;
    border-left: 2px solid var(--color-gold);
    padding-left: 0.75rem;
}

/* Rechte Spalte — Formular */
.nst-einliefern-right {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-wine);
    padding: 2rem;
}

@media (max-width: 900px) {
    .nst-einliefern-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.nst-section-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-navy);
    margin: 0 0 0.75rem;
}

.nst-section-lead {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Info-Boxen rechte Spalte */

.nst-info-box {
    border: 1px solid var(--color-border);
    padding: 1.25rem 1.5rem;
    background: var(--color-surface);
}

.nst-info-box-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.nst-info-box-title i {
    font-size: 1rem;
    color: var(--color-wine);
}

.nst-info-contact {
    font-size: 0.85rem;
    line-height: 1.9;
    color: #555;
}

.nst-info-contact strong {
    color: var(--color-navy);
    font-weight: 500;
}

.nst-info-contact a {
    color: var(--color-wine);
    text-decoration: none;
}

.nst-info-contact a:hover {
    text-decoration: underline;
}

.nst-info-box--note {
    background: #fff;
    border-left: 3px solid var(--color-gold);
    font-size: 0.82rem;
    color: #666;
    line-height: 1.65;
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
}

.nst-info-box--note i {
    font-size: 1rem;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Konditionen ── */
.nst-konditionen {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    width: 100%;
}

.nst-konditionen-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem clamp(2rem, 6vw, 6rem) 4rem;
}

.nst-konditionen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.nst-kondition-card {
    background: #fff;
    border: 1px solid var(--color-border);
    padding: 1.75rem;
}

.nst-kondition-card--highlight {
    border-color: var(--color-navy);
    background: var(--color-navy);
}

.nst-kondition-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-wine);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.nst-kondition-card--highlight .nst-kondition-num {
    color: var(--color-gold);
}

.nst-kondition-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.nst-kondition-card--highlight .nst-kondition-label {
    color: rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.1);
}

.nst-kondition-text {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.7;
}

.nst-kondition-card--highlight .nst-kondition-text {
    color: rgba(255,255,255,0.65);
}

.nst-konditionen-note {
    font-size: 0.82rem;
    color: #999;
    margin-top: 1rem;
}

.nst-konditionen-note a {
    color: var(--color-wine);
    text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .nst-usps-inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nst-einliefern-info {
        position: static;
    }

    .nst-konditionen-grid {
        grid-template-columns: 1fr;
    }

    .nst-usps-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ========================================
   26. Kaufen & Bieten — Seite
======================================== */

.nst-page-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.4rem;
}

/* ── Drei Wege ── */
.nst-kaufen-ways {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    width: 100%;
}

.nst-kaufen-ways-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem clamp(2rem, 6vw, 6rem) 4rem;
}

.nst-kaufen-ways-header {
    margin-bottom: 2.5rem;
}

.nst-kaufen-ways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.nst-way-card {
    background: #fff;
    border: 1px solid var(--color-border);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nst-way-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: rgba(26, 29, 46, 0.08);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.nst-way-icon {
    font-size: 1.5rem;
    color: var(--color-wine);
    display: block;
    margin-bottom: 0.5rem;
}

.nst-way-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
}

.nst-way-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.75;
    flex: 1;
}

.nst-way-text strong {
    color: var(--color-navy);
    font-weight: 500;
}

.nst-way-link {
    display: inline-block;
    font-size: 0.78rem;
    color: var(--color-wine);
    text-decoration: none;
    letter-spacing: 0.04em;
    margin-top: 0.5rem;
}

.nst-way-link:hover {
    text-decoration: underline;
}

/* ── Ablauf + Aufgeld ── */
.nst-kaufen-info {
    background: #fff;
    border-top: 1px solid var(--color-border);
    width: 100%;
}

.nst-kaufen-info-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem clamp(2rem, 6vw, 6rem);
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 5rem;
    align-items: start;
}

/* Ablauf-Steps */
.nst-ablauf-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1.5rem;
}

.nst-ablauf-step {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    align-items: start;
}

.nst-ablauf-step:last-child {
    border-bottom: none;
}

.nst-ablauf-step-num {
    width: 2rem;
    height: 2rem;
    background: var(--color-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 500;
    flex-shrink: 0;
}

.nst-ablauf-step-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-navy);
    margin-bottom: 0.2rem;
}

.nst-ablauf-step-text {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.6;
}

/* Rechte Spalte */
.nst-kaufen-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nst-kaufen-aufgeld {
    background: var(--color-navy);
    padding: 2rem;
    color: rgba(255,255,255,0.65);
}

.nst-kaufen-aufgeld-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nst-kaufen-aufgeld-header i {
    font-size: 1rem;
    color: var(--color-gold);
}

.nst-kaufen-aufgeld-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.nst-kaufen-aufgeld-num {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.1rem;
}

.nst-kaufen-aufgeld-label {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1rem;
}

.nst-kaufen-aufgeld-text {
    font-size: 0.82rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.nst-kaufen-aufgeld-example {
    background: rgba(255,255,255,0.06);
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    border-left: 2px solid var(--color-gold);
}

.nst-kaufen-aufgeld-example strong {
    color: #fff;
}

.nst-kaufen-aufgeld-example-label {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.25rem;
}

.nst-kaufen-nachverkauf {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 1.25rem 1.5rem;
}

.nst-kaufen-nachverkauf-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.6rem;
}

.nst-kaufen-nachverkauf-label i {
    font-size: 0.9rem;
    color: var(--color-wine);
}

.nst-kaufen-nachverkauf-text {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.7;
}

.nst-kaufen-nachverkauf-text a {
    color: var(--color-wine);
    text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .nst-kaufen-ways-grid {
        grid-template-columns: 1fr;
    }

    .nst-kaufen-info-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* ========================================
   27. Highlights & Archiv — Seite
======================================== */

/* ── Archiv-Liste ── */
.nst-archive {
    width: 100%;
}

.nst-archive-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem clamp(2rem, 6vw, 6rem) 4rem;
}

.nst-archive-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    text-decoration: none;
    transition: background 0.15s ease;
}

.nst-archive-item:first-child {
    border-top: 1px solid var(--color-border);
}

.nst-archive-item:hover {
    background: var(--color-surface);
}

.nst-archive-item-left {
    flex: 1;
}

.nst-archive-item-label {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-navy);
    font-weight: 400;
}

.nst-archive-item-date {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.15rem;
}

.nst-archive-item-count {
    font-size: 0.8rem;
    color: #aaa;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.nst-archive-item-arrow {
    color: var(--color-wine);
    font-size: 1rem;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.nst-archive-item:hover .nst-archive-item-arrow {
    opacity: 1;
}


/* ========================================
   28. Über uns — Seite
======================================== */

/* ── Text + Foto ── */
.nst-about-text {
    padding: 4rem clamp(2rem, 6vw, 6rem) 4rem clamp(2rem, 6vw, 6rem);
}

.nst-about-title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--color-navy);
    margin: 0.4rem 0 1.25rem;
    line-height: 1.25;
}

.nst-about-lead {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.nst-about-body {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.nst-about-image-wrap {
    padding: 4rem clamp(2rem, 6vw, 6rem) 4rem 0;
}

.nst-about-image-placeholder {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #bbb;
}

.nst-about-image-placeholder i {
    font-size: 2.5rem;
}

.nst-about-image-placeholder span {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nst-about-image-caption {
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 0.6rem;
    text-align: center;
    letter-spacing: 0.04em;
}

/* ── Stats ── */
.nst-page-stats {
    width: 100%;
}

.nst-page-stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem clamp(2rem, 6vw, 6rem);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.nst-page-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    background: transparent;
}

.nst-page-stat:last-child {
    border-right: none;
}

.nst-page-stat-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.nst-page-stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

/* ── Leistungen ── */
.nst-about-leistungen {
    background: var(--color-surface);
    width: 100%;
}

.nst-about-leistungen-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem clamp(2rem, 6vw, 6rem);
}

.nst-about-leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.nst-about-leistung {
    background: #fff;
    border: 1px solid var(--color-border);
    padding: 1.75rem;
}

.nst-about-leistung i {
    font-size: 1.5rem;
    color: var(--color-wine);
    display: block;
    margin-bottom: 0.75rem;
}

.nst-about-leistung-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.nst-about-leistung-text {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.7;
}

/* ── Standort ── */
.nst-about-standort {
    background: #fff;
    border-top: 1px solid var(--color-border);
    width: 100%;
}

.nst-about-standort-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem clamp(2rem, 6vw, 6rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.nst-about-adresse {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.nst-about-adresse-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #555;
}

.nst-about-adresse-row i {
    font-size: 1rem;
    color: var(--color-wine);
    flex-shrink: 0;
}

.nst-about-adresse-row a {
    color: var(--color-wine);
    text-decoration: none;
}

.nst-about-standort-image {
    /* Foto kommt später */
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .nst-page-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .nst-about-leistungen-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nst-about-standort-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .nst-about-leistungen-grid {
        grid-template-columns: 1fr;
    }

    .nst-page-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ========================================
   29. Kontakt — Seite
======================================== */

.nst-kontakt-quicklinks {
    margin-top: 1.5rem;
    border: 1px solid var(--color-border);
    padding: 1.25rem 1.5rem;
    background: var(--color-surface);
}

.nst-kontakt-quicklinks-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.nst-kontakt-quicklink {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-navy);
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
    transition: color 0.15s ease;
}

.nst-kontakt-quicklink:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nst-kontakt-quicklink:hover {
    color: var(--color-wine);
}

.nst-kontakt-quicklink i {
    font-size: 0.85rem;
    color: var(--color-wine);
    flex-shrink: 0;
}

/* Maps */
.nst-kontakt-map {
    line-height: 0;
    border-top: 1px solid var(--color-border);
}

.nst-kontakt-map iframe {
    display: block;
    width: 100%;
}


/* ========================================
   30. FAQ — Seite
======================================== */

.nst-faq-wrap {
    width: 100%;
}

.nst-faq-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem clamp(1.5rem, 4vw, 3rem) 5rem;
}

/* ── Navigation ── */
.nst-faq-nav {
    display: flex;
    gap: 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.nst-faq-nav-item {
    padding: 0.75rem 1.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.nst-faq-nav-item:hover,
.nst-faq-nav-item.active {
    color: var(--color-navy);
    border-bottom-color: var(--color-wine);
}

/* ── Sektion ── */
.nst-faq-section {
    margin-bottom: 3rem;
}

.nst-faq-section-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-navy);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-wine);
    display: inline-block;
}

/* ── FAQ Item ── */
.nst-faq-item {
    border-bottom: 1px solid var(--color-border);
}

.nst-faq-item:first-of-type {
    border-top: 1px solid var(--color-border);
}

.nst-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-navy);
    text-align: left;
    transition: color 0.15s ease;
}

.nst-faq-question:hover {
    color: var(--color-wine);
}

.nst-faq-question i {
    font-size: 1rem;
    color: var(--color-wine);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.nst-faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.nst-faq-question[aria-expanded="true"] {
    color: var(--color-wine);
}

/* ── Antwort ── */
.nst-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0;
}

.nst-faq-answer.open {
    max-height: 1000px;
    padding-bottom: 1.25rem;
}

.nst-faq-answer p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.nst-faq-answer p:last-child {
    margin-bottom: 0;
}

.nst-faq-answer ul {
    margin: 0.5rem 0 0.75rem 1.25rem;
}

.nst-faq-answer li {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.25rem;
}

.nst-faq-answer a {
    color: var(--color-wine);
    text-decoration: none;
}

.nst-faq-answer a:hover {
    text-decoration: underline;
}

.nst-faq-answer strong {
    color: var(--color-navy);
    font-weight: 500;
}


/* ========================================
   31. Rechtliche Seiten — gemeinsame Styles
======================================== */

.nst-legal-wrap {
    width: 100%;
}

.nst-legal-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem clamp(1.5rem, 4vw, 3rem) 5rem;
}

.nst-legal-inner h2 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-navy);
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.nst-legal-inner h3 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-navy);
    margin: 1.5rem 0 0.5rem;
}

.nst-legal-inner p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.nst-legal-inner ol,
.nst-legal-inner ul {
    margin: 0.5rem 0 1rem 1.5rem;
}

.nst-legal-inner li {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.nst-legal-inner a {
    color: var(--color-wine);
    text-decoration: none;
}

.nst-legal-inner a:hover {
    text-decoration: underline;
}

.nst-legal-placeholder {
    background: var(--color-surface);
    border: 1px dashed var(--color-border);
    border-left: 3px solid var(--color-gold);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

.nst-legal-updated {
    font-size: 0.78rem;
    color: #bbb;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}