/* ============================================================
   Hectoros Shop — Stylesheet
   Helles Design, Rot #E24B4A als Akzentfarbe, Mobile-first
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #E24B4A;
  --red-dark: #c03d3c;
  --red-light: #fdf0f0;
  --text: #1a1a1a;
  --text-muted: #666;
  --text-light: #999;
  --bg: #f5f5f5;
  --bg-white: #ffffff;
  --border: #e8e8e8;
  --border-focus: #E24B4A;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 2px 8px rgba(0,0,0,0.10);
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg); color: var(--text); line-height: 1.5; min-height: 100vh; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; font-size: inherit; }
img { max-width: 100%; display: block; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---- Utility ---- */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.hidden { display: none !important; }

/* ============================================================
   HEADER
   ============================================================ */
.sh-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.sh-header-inner {
  max-width: 1800px; margin: 0 auto;
  padding: 0 24px; height: 96px;
  display: flex; align-items: center; gap: 16px;
}
.sh-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.sh-logo img { height: 52px; width: auto; }
.sh-logo-text { display: flex; flex-direction: column; }
.sh-logo-name { font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: 1.5px; line-height: 1.1; }
.sh-logo-tag { font-size: 10px; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; text-align: justify; text-align-last: justify; }

.sh-nav { display: flex; gap: 4px; flex: 1; }
.sh-nav a {
  font-size: 15px; color: var(--text-muted); padding: 6px 10px;
  border-radius: var(--radius-sm); transition: background 0.15s, color 0.15s;
}
.sh-nav a:hover { background: var(--bg); color: var(--text); }
.sh-nav a.active { color: var(--red); font-weight: 600; }

.sh-header-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.sh-cart-btn {
  display: flex; align-items: center; gap: 7px;
  background: var(--red); color: #fff;
  border: none; border-radius: var(--radius-sm);
  padding: 7px 14px; font-size: 15px; font-weight: 500;
  transition: background 0.15s;
}
.sh-cart-btn:hover { background: var(--red-dark); }
.sh-cart-count {
  background: #fff; color: var(--red);
  border-radius: 50%; width: 18px; height: 18px;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   SUCHE (Header-Suchleiste + Ergebnisseite)
   ============================================================ */
.sh-search-form {
  display: flex; align-items: center;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
}
.sh-search-input {
  border: none; background: transparent;
  padding: 6px 10px; font-size: 14px; color: var(--text);
  width: 180px; outline: none;
}
.sh-search-input::placeholder { color: var(--text-muted); }
.sh-search-btn {
  border: none; background: transparent;
  padding: 6px 8px; cursor: pointer; color: var(--text-muted);
  display: flex; align-items: center; transition: color 0.15s;
}
.sh-search-btn:hover { color: var(--red); }

.sh-search-results-header { margin-bottom: 24px; }
.sh-search-results-header h1 { font-size: 22px; font-weight: 700; color: var(--text); }
.sh-search-results-header p { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.sh-search-empty { text-align: center; padding: 80px 0; color: var(--text-muted); }
.sh-search-empty .empty-icon { font-size: 48px; margin-bottom: 16px; }
.sh-search-empty h2 { font-size: 20px; font-weight: 600; margin-bottom: 8px; color: var(--text); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.sh-trust {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  overflow-x: auto; scrollbar-width: none;
}
.sh-trust::-webkit-scrollbar { display: none; }
.sh-trust-inner {
  display: flex; min-width: max-content;
  max-width: 1800px; margin: 0 auto;
}
.sh-trust-item {
  display: flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-right: 1px solid var(--border);
  white-space: nowrap;
}
.sh-trust-item:last-child { border-right: none; }
.sh-trust-icon { font-size: 20px; color: var(--red); flex-shrink: 0; }
.sh-trust-title { font-size: 15px; font-weight: 600; color: var(--text); display: block; }
.sh-trust-sub { font-size: 13px; color: var(--text-light); display: block; }

/* ============================================================
   HERO BANNER
   ============================================================ */
.sh-hero {
  background: #fff8f8;
  border-bottom: 1px solid #f0dada;
  padding: 32px 16px;
}
.sh-hero-inner {
  max-width: 1800px; margin: 0 auto;
  display: flex; align-items: center; justify-content: flex-start; gap: 24px;
  background: #fff;
  border: 1px solid #f0dada;
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sh-hero-left { flex: 1; max-width: 640px; }
.sh-hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: #FCEBEB; color: #a32d2d;
  font-size: 11px; font-weight: 600; padding: 4px 12px;
  border-radius: 99px; margin-bottom: 12px; letter-spacing: 0.3px;
}
.sh-hero h1 { font-size: 32px; font-weight: 700; color: var(--text); line-height: 1.25; margin-bottom: 8px; }
.sh-hero p { font-size: 16px; color: var(--text-muted); margin-bottom: 4px; line-height: 1.6; }
.sh-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  border: none; border-radius: var(--radius-sm);
  padding: 11px 22px; font-size: 16px; font-weight: 600;
  transition: background 0.15s;
}
.sh-btn-primary:hover { background: var(--red-dark); }
.sh-hero-visual {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex-shrink: 0; min-width: 160px; text-align: center;
  transition: all 0.2s;
}
.sh-hero-visual .hero-icon { font-size: 44px; color: var(--red); }
.sh-hero-visual span { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* Personalisierbare Produkte im Hero, wischbar/scrollbar (Session 113, 05.08.2026 --
   vorher fest 2 Bilder, jetzt per JS befuellt mit allen personalisierbaren Artikeln). */
.sh-hero-duo-wrap { position: relative; flex-shrink: 1; min-width: 0; max-width: 930px; width: 100%; }
.sh-hero-duo {
  display: flex; gap: 12px;
  background: none; border: none; padding: 2px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.sh-hero-duo::-webkit-scrollbar { display: none; }
.sh-hero-duo-item {
  width: 175px; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
  display: block; flex-shrink: 0;
  background: #f5f5f5;
  scroll-snap-align: center;
}
.sh-hero-duo-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.13);
  transform: translateY(-3px);
}
.sh-hero-duo-item img {
  width: 100%; height: 230px;
  object-fit: contain; background: #f5f5f5;
  display: block;
}

/* Wenn Produktbild geladen */
.sh-hero-visual.has-image {
  padding: 0; min-width: 260px; width: 280px;
  height: 300px; overflow: hidden;
}
.sh-hero-visual.has-image img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-lg);
}
.sh-hero-prod-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: 99px; margin-bottom: 10px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.sh-section { padding: 24px 0; }
.sh-section-inner { max-width: 1800px; margin: 0 auto; padding: 0 16px; }
.sh-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.sh-section-title { font-size: 20px; font-weight: 700; color: var(--text); }
.sh-section-link { font-size: 15px; color: var(--red); font-weight: 500; }
.sh-section-link:hover { text-decoration: underline; }
.sh-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ============================================================
   KATEGORIE-KARTEN (Horizontal Scroll)
   ============================================================ */
.sh-scroll-row {
  display: flex; gap: 12px;
  overflow-x: auto; padding: 4px 16px 8px 16px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  margin: 0 -16px;
}
.sh-scroll-row::-webkit-scrollbar { display: none; }
.sh-scroll-row::after {
  content: ''; display: block;
  min-width: 16px; flex-shrink: 0;
}

.sh-cat-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 14px;
  text-align: center;
  flex-shrink: 0; min-width: 110px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.sh-cat-card:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }
.sh-cat-icon { width: 40px; height: 40px; color: var(--red); margin: 0 auto 8px; display: flex; align-items: center; justify-content: center; }
.sh-cat-icon svg { width: 40px; height: 40px; }
.sh-cat-name { font-size: 15px; font-weight: 600; color: var(--text); }
.sh-cat-count { font-size: 13px; color: var(--text-light); margin-top: 2px; }

/* ============================================================
   PRODUKT-KARTEN (Horizontal Scroll + Grid)
   ============================================================ */
.sh-prod-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  flex-shrink: 0; width: 280px;
}
.sh-prod-card:hover { border-color: #ccc; box-shadow: var(--shadow); }

.sh-prod-img {
  background: #f5f5f5;
  height: 340px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.sh-prod-img img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.sh-prod-img .no-img { font-size: 62px; color: #ccc; }
.sh-prod-img[data-gallery] { touch-action: pan-y; }
/* In den wischbaren Startseiten-Reihen macht das JS das Fotos-Durchblaettern nicht mehr (siehe
   shop.js, setupProdImgSwipe) -- die obige Zeile blockierte hier aber weiterhin natives waagrechtes
   Scrollen, wodurch Wischen genau auf dem Bild gar nichts mehr tat (Hectors Fund, 05.08.2026).
   Hier wieder normales Scrollen in beide Richtungen erlauben. */
#prodRow .sh-prod-img[data-gallery], #artenRow .sh-prod-img[data-gallery] { touch-action: pan-x pan-y; }
.sh-prod-imgcount { display: none; }
.sh-prod-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 600; padding: 3px 8px;
  border-radius: var(--radius-sm);
}
.sh-prod-body { padding: 12px; }
.sh-prod-name { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 5px; line-height: 1.35; }
.sh-prod-colors { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 8px; min-height: 16px; }
.sh-color-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  flex-shrink: 0;
}
.sh-color-dot.is-white { border-color: #bbb; }
.sh-prod-sizes { font-size: 13px; color: var(--text-light); margin-bottom: 8px; }
.sh-prod-footer { display: flex; align-items: center; justify-content: space-between; }
.sh-prod-price { font-size: 19px; font-weight: 700; color: var(--text); }
.sh-prod-add {
  background: var(--red); color: #fff;
  border: none; border-radius: var(--radius-sm);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 400;
  transition: background 0.15s;
  flex-shrink: 0;
}
.sh-prod-add:hover { background: var(--red-dark); }

/* Session 92 Folgesession: 'Alle Produkte' zeigt auf breiten Screens immer nur 6 Karten auf
   einen Blick, weiterrutschen per Pfeil/Wischen bleibt moeglich -- vorher passten je nach
   Bildschirmbreite mal 5, mal 6, mal 7 Karten rein, was inkonsistent wirkte. */
#produkte .sh-slider-container { max-width: calc(6 * 280px + 5 * 12px); }

.sh-arten-item { flex-shrink: 0; scroll-snap-align: center; }
.sh-arten-item .sh-prod-card { scroll-snap-align: unset; }
.sh-arten-label {
  font-size: 12px; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: 0.4px;
  margin-bottom: 6px;
}

/* Grid-Layout für Kategorie-Seite */
.sh-prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.sh-prod-grid .sh-prod-card { width: auto; }

/* ---- Slider-Wrapper mit Pfeil-Navigation ----
   Session 92 Folgesession: Pfeile liegen jetzt als schwebende Overlay-Buttons UEBER der Reihe
   (position:absolute) statt als Flex-Geschwister davor/danach -- vorher fraßen die 38px+8px
   Abstand auf jeder Seite echte Breite weg, wodurch die Reihe nicht mehr buendig mit Hero/
   Kategorien abschloss und ein 6. Slot immer angeschnitten war. */
.sh-slider-container { position: relative; }
.sh-slider-container .sh-scroll-row {
  min-width: 0;
  margin: 0;             /* überschreibt den negativen Rand */
  padding: 4px 0 8px 0;
  scroll-snap-type: x mandatory;
}
.sh-slider-container .sh-scroll-row .sh-prod-card {
  scroll-snap-align: center;
}
.sh-slider-spacer-start, .sh-slider-spacer-end {
  flex-shrink: 0;
  scroll-snap-align: none;
}
.sh-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2;
  width: 38px; height: 38px;
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, color 0.15s;
  user-select: none;
}
.sh-slider-btn:first-child { left: -6px; }
.sh-slider-btn:last-child { right: -6px; }
.sh-slider-btn:hover:not(:disabled) { border-color: var(--red); color: var(--red); }
.sh-slider-btn:disabled { opacity: 0; pointer-events: none; }

/* ============================================================
   WARENKORB SCHIEBEMENÜ
   ============================================================ */
.sh-cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200; opacity: 0;
  pointer-events: none; transition: opacity 0.25s;
}
.sh-cart-overlay.open { opacity: 1; pointer-events: all; }

.sh-cart-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 380px; max-width: 100vw;
  background: var(--bg-white);
  z-index: 201; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.28s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
.sh-cart-panel.open { transform: translateX(0); }

.sh-cart-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.sh-cart-panel-title { font-size: 16px; font-weight: 700; color: var(--text); }
.sh-cart-close {
  background: none; border: none; font-size: 22px;
  color: var(--text-muted); padding: 4px; line-height: 1;
}

.sh-cart-items { flex: 1; overflow-y: auto; padding: 16px 20px; }
.sh-cart-empty { text-align: center; padding: 48px 0; color: var(--text-muted); font-size: 14px; }
.sh-cart-empty .empty-icon { font-size: 48px; margin-bottom: 12px; color: var(--border); }

.sh-cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.sh-cart-item-img {
  width: 64px; height: 64px; flex-shrink: 0;
  background: #f5f5f5; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.sh-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.sh-cart-item-img .no-img { font-size: 24px; color: #ccc; }
.sh-cart-item-info { flex: 1; }
.sh-cart-item-name { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.sh-cart-item-variant { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.sh-cart-item-custom { font-size: 13px; color: var(--red); font-style: italic; margin-bottom: 4px; }
.sh-cart-item-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.sh-cart-item-price { font-size: 14px; font-weight: 700; color: var(--text); }
.sh-cart-item-qty { display: flex; align-items: center; gap: 8px; }
.sh-qty-btn {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 26px; height: 26px; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.sh-qty-num { font-size: 13px; font-weight: 600; min-width: 20px; text-align: center; }
.sh-cart-item-remove { background: none; border: none; color: var(--text-light); font-size: 18px; padding: 2px; }

.sh-cart-panel-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.sh-cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.sh-cart-total-label { font-size: 14px; color: var(--text-muted); }
.sh-cart-total-value { font-size: 18px; font-weight: 700; color: var(--text); }
.sh-btn-checkout {
  width: 100%; background: var(--red); color: #fff;
  border: none; border-radius: var(--radius-sm);
  padding: 13px; font-size: 15px; font-weight: 700;
  transition: background 0.15s; margin-bottom: 8px;
}
.sh-btn-checkout:hover { background: var(--red-dark); }
.sh-btn-cart-page {
  width: 100%; background: none; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px; font-size: 13px;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.sh-lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}
.sh-lightbox.hidden { display: none; }
.sh-lightbox img {
  width: auto; height: 85vh;
  max-width: 92vw;
  object-fit: contain;
  border-radius: var(--radius);
  pointer-events: none;
}
.sh-lightbox-close {
  position: fixed; top: 16px; right: 20px;
  background: rgba(255,255,255,0.15); border: none;
  color: #fff; font-size: 32px; cursor: pointer;
  line-height: 1; width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.sh-lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ============================================================
   PRODUKTDETAILSEITE
   ============================================================ */
.sh-detail { max-width: 1800px; margin: 0 auto; padding: 24px 16px; }
.sh-breadcrumb { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.sh-breadcrumb a { color: var(--text-muted); }
.sh-breadcrumb a:hover { color: var(--red); }
.sh-breadcrumb span { color: var(--text); font-weight: 500; }

.sh-detail-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; }

.sh-detail-images { }
.sh-detail-main-img {
  background: #f5f5f5; border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 10px;
  cursor: zoom-in;
  position: relative; touch-action: pan-y;
}
.sh-detail-main-img img { width: 100%; height: 100%; object-fit: contain; background: #f5f5f5; }
.sh-detail-main-img .no-img { font-size: 80px; color: #ccc; }
.sh-detail-imgcount { display: none; }
.sh-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.sh-thumb {
  width: 60px; height: 60px; border-radius: var(--radius-sm);
  background: #f5f5f5; overflow: hidden; cursor: pointer;
  border: 2px solid transparent;
  display: flex; align-items: center; justify-content: center;
}
.sh-thumb.active { border-color: var(--red); }
.sh-thumb img { width: 100%; height: 100%; object-fit: contain; background: #f5f5f5; }

.sh-detail-info { }
.sh-detail-cat { font-size: 13px; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.sh-detail-title { font-size: 26px; font-weight: 700; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.sh-detail-artnr { font-size: 13px; color: var(--text-light); margin-bottom: 10px; letter-spacing: 0.2px; }
.sh-detail-price { font-size: 30px; font-weight: 700; color: var(--text); margin-bottom: 20px; }
.sh-detail-price-note { font-size: 13px; color: var(--text-light); font-weight: 400; }

.sh-detail-label { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.3px; }

/* Farbauswahl */
.sh-color-swatches { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.sh-color-swatch {
  width: 30px; height: 30px; border-radius: 50%;
  border: 3px solid transparent; cursor: pointer;
  outline: 2px solid transparent; outline-offset: 2px;
  transition: outline-color 0.15s;
}
.sh-color-swatch.active { outline-color: var(--red); }
.sh-color-swatch.swatch-img {
  width: 56px; height: 56px; border-radius: 8px;
  background-size: cover; background-position: center;
  border: 3px solid transparent;
}
.sh-color-swatch[data-color="Weiß"], .sh-color-swatch[data-color="White"] { border: 2px solid #ddd; }
.sh-color-name-display { font-size: 12px; color: var(--text-muted); margin-top: -14px; margin-bottom: 20px; }

/* Größenauswahl */
.sh-sizes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.sh-size-btn {
  padding: 7px 12px; font-size: 15px; font-weight: 500;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-white); color: var(--text);
  transition: border-color 0.15s, background 0.15s;
}
.sh-size-btn:hover { border-color: var(--red); }
.sh-size-btn.active { border-color: var(--red); background: var(--red); color: #fff; }
.sh-size-btn.unavailable { opacity: 0.35; pointer-events: none; text-decoration: line-through; }
.sh-size-guide-link { font-size: 14px; color: var(--red); margin-bottom: 20px; cursor: pointer; display: inline-block; }
.sh-size-guide-link:hover { text-decoration: underline; }

/* Personalisierungsfelder */
.sh-custom-fields { margin-bottom: 20px; }
.sh-custom-field { margin-bottom: 14px; }
.sh-custom-field label { font-size: 14px; font-weight: 700; color: var(--text); display: block; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.3px; }
.sh-custom-field input[type="text"],
.sh-custom-field textarea {
  width: 100%; padding: 9px 12px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-white); color: var(--text);
  font-size: 14px; transition: border-color 0.15s;
}
.sh-custom-field input[type="text"]:focus,
.sh-custom-field textarea:focus { outline: none; border-color: var(--red); }
.sh-custom-field textarea { resize: vertical; min-height: 80px; }
.sh-custom-field .field-hint { font-size: 13px; color: var(--text-light); margin-top: 4px; }

/* Foto-Upload */
.sh-upload-area {
  border: 2px dashed var(--border); border-radius: var(--radius);
  padding: 24px; text-align: center; cursor: pointer;
  transition: border-color 0.15s;
}
.sh-upload-area:hover, .sh-upload-area.drag-over { border-color: var(--red); background: var(--red-light); }
.sh-upload-area input[type="file"] { display: none; }
.sh-upload-icon { font-size: 32px; color: var(--text-light); margin-bottom: 8px; }
.sh-upload-text { font-size: 13px; color: var(--text-muted); }
.sh-upload-hint { font-size: 13px; color: var(--text-light); margin-top: 4px; }
.sh-upload-preview { margin-top: 12px; position: relative; display: inline-block; }
.sh-upload-preview img { max-height: 100px; border-radius: var(--radius-sm); }
.sh-upload-remove { position: absolute; top: -6px; right: -6px; background: var(--red); color: #fff; border: none; border-radius: 50%; width: 20px; height: 20px; font-size: 12px; line-height: 1; }

/* Menge + In den Warenkorb */
.sh-add-to-cart-row { display: flex; gap: 12px; align-items: center; margin-top: 8px; }
.sh-qty-control { display: flex; align-items: center; gap: 10px; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 6px 10px; }
.sh-qty-control button { background: none; border: none; font-size: 18px; color: var(--text-muted); width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.sh-qty-control span { font-size: 15px; font-weight: 700; min-width: 24px; text-align: center; }
.sh-btn-add-cart {
  flex: 0 0 auto; background: var(--red); color: #fff;
  border: none; border-radius: var(--radius-sm);
  padding: 10px 22px; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.15s; cursor: pointer;
}
.sh-btn-add-cart:hover { background: var(--red-dark); }

/* Größentabelle Modal */
.sh-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300; display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.sh-modal-overlay.hidden { display: none; }
.sh-modal {
  background: var(--bg-white); border-radius: var(--radius-lg);
  max-width: 560px; width: 100%;
  max-height: 80vh; overflow-y: auto;
  padding: 24px;
}
.sh-modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.sh-modal-title { font-size: 16px; font-weight: 700; color: var(--text); }
.sh-modal-close { background: none; border: none; font-size: 22px; color: var(--text-muted); }
.sh-size-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.sh-size-table th { background: #f5f5f5; padding: 8px 12px; text-align: left; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); }
.sh-size-table td { padding: 8px 12px; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.sh-size-table tr:last-child td { border-bottom: none; }

/* Produktbeschreibung */
.sh-detail-desc { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--border); }
.sh-detail-desc h3 { font-size: 15px; font-weight: 700; color: var(--text); margin: 20px 0 10px; }
.sh-detail-desc h3:first-child { margin-top: 0; }
.sh-detail-desc p, .sh-detail-desc ul { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 8px; }
.sh-detail-desc ul { padding-left: 20px; margin-bottom: 16px; }
.sh-detail-desc ul li { margin-bottom: 5px; }
.sh-bullets { list-style: none; padding-left: 0; margin: 0 0 20px 0; }
.sh-bullets li { padding: 5px 0 5px 24px; position: relative; font-size: 15px; color: var(--text); border-bottom: 1px solid var(--border); }
.sh-bullets li:first-child { border-top: 1px solid var(--border); }
.sh-bullets li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.sh-footer {
  background: #1a1a1a; color: #ccc;
  padding: 22px 16px 16px;
  margin-top: 8px;
}
.sh-footer-inner { max-width: 1800px; margin: 0 auto; }
.sh-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; margin-bottom: 16px; }
.sh-footer-col h4 { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.sh-footer-col a { display: block; font-size: 14px; color: #999; margin-bottom: 4px; }
.sh-footer-col a:hover { color: #fff; }
.sh-footer-col p { font-size: 14px; color: #999; line-height: 1.5; }
.sh-footer-bottom { border-top: 1px solid #333; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.sh-footer-bottom p { font-size: 13px; color: #666; }
.sh-footer-payment { display: flex; gap: 8px; }
.sh-payment-badge { background: #2a2a2a; border: 1px solid #333; border-radius: var(--radius-sm); padding: 4px 10px; font-size: 11px; color: #999; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .sh-nav { display: none; }
  .sh-search-form { flex: 1; min-width: 0; }
  .sh-search-input { width: auto; min-width: 0; flex: 1; }
  .sh-detail-layout { grid-template-columns: 1fr; }
  .sh-hero h1 { font-size: 22px; }
  .sh-hero-visual { display: none; }
  .sh-hero-inner { flex-direction: column; align-items: flex-start; }
  .sh-hero-left { max-width: 100%; }
  .sh-hero-duo-wrap { max-width: 100%; width: 100%; margin-top: 2px; }
  .sh-hero-duo { justify-content: flex-start; }
  .sh-hero-duo-item { width: 165px; }
  .sh-hero-duo-item img { height: 215px; }
  .sh-cart-panel { width: 100vw; }
  .sh-checkout-layout { grid-template-columns: 1fr; }
  .sh-payment-options { grid-template-columns: 1fr; }
  .sh-form-row { grid-template-columns: 1fr; }

  .sh-prod-imgcount {
    display: block; position: absolute; bottom: 8px; right: 8px;
    background: rgba(0,0,0,.6); color: #fff; font-size: 11px; line-height: 1;
    padding: 3px 7px; border-radius: 10px; pointer-events: none;
  }

  .sh-detail-imgcount {
    display: block; position: absolute; bottom: 10px; right: 10px;
    background: rgba(0,0,0,.6); color: #fff; font-size: 12px; line-height: 1;
    padding: 4px 8px; border-radius: 10px; pointer-events: none;
  }
}

@media (max-width: 480px) {
  .sh-header-inner { padding: 0 12px; gap: 8px; }
  .sh-logo-tag { display: none; }
  .sh-logo img { height: 36px; }
  .sh-logo-name { font-size: 16px; letter-spacing: 0.5px; }
  .sh-cart-label { display: none; }
  .sh-cart-btn { padding: 7px 10px; gap: 5px; }
  .sh-add-to-cart-row { flex-wrap: wrap; }
  .sh-btn-add-cart { flex: 1 1 auto; }
}

/* ============================================================
   CHECKOUT
   ============================================================ */
.sh-checkout { max-width: 1100px; margin: 0 auto; padding: 24px 16px 48px; }

.sh-checkout-breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.sh-checkout-breadcrumb a { color: var(--text-muted); }
.sh-checkout-breadcrumb a:hover { color: var(--red); }
.sh-checkout-breadcrumb span { color: var(--text); font-weight: 500; }

.sh-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.sh-checkout-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 16px;
}
.sh-checkout-card:last-child { margin-bottom: 0; }
.sh-checkout-card-title {
  font-size: 16px; font-weight: 700; color: var(--text);
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

/* Form */
.sh-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sh-form-group { margin-bottom: 14px; }
.sh-form-group:last-child { margin-bottom: 0; }
.sh-form-group label, .sh-form-label {
  font-size: 14px; font-weight: 600; color: var(--text);
  display: block; margin-bottom: 5px;
  letter-spacing: 0.2px;
}
.sh-form-group label .req { color: var(--red); margin-left: 2px; }
.sh-form-input, .sh-form-select {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-white); color: var(--text);
  font-size: 15px; transition: border-color 0.15s;
  appearance: none;
}
.sh-form-input:focus, .sh-form-select:focus { outline: none; border-color: var(--red); }
.sh-form-input::placeholder { color: var(--text-light); }
.sh-form-textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-white); color: var(--text);
  font-size: 15px; transition: border-color 0.15s;
  resize: vertical; min-height: 80px;
}
.sh-form-textarea:focus { outline: none; border-color: var(--red); }

/* Payment Options */
.sh-payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 0; }
.sh-payment-option {
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 14px 16px; cursor: pointer;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color 0.15s, background 0.15s;
}
.sh-payment-option:hover { border-color: #bbb; }
.sh-payment-option.selected { border-color: var(--red); background: var(--red-light); }
.sh-payment-option-top { display: flex; align-items: center; gap: 10px; }
.sh-payment-icon { font-size: 20px; }
.sh-payment-label { font-size: 15px; font-weight: 600; color: var(--text); }
.sh-payment-sub { font-size: 14px; color: var(--text-muted); padding-left: 30px; }
.sh-payment-option-disabled { opacity: 0.55; cursor: default; }
.sh-payment-option-disabled:hover { border-color: var(--border); }
.sh-payment-option-disabled .sh-payment-sub { color: var(--red); font-weight: 600; }

.sh-payment-detail {
  margin-top: 16px; padding: 14px;
  background: #f9f9f9; border-radius: var(--radius-sm);
  font-size: 14px; color: var(--text-muted); line-height: 1.6;
}
.sh-payment-detail b { color: var(--text); }

/* Coupon */
.sh-coupon-row { display: flex; gap: 8px; }
.sh-coupon-row .sh-form-input { flex: 1; }
.sh-coupon-btn {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 16px;
  font-size: 14px; font-weight: 600; color: var(--text);
  white-space: nowrap; transition: background 0.15s;
}
.sh-coupon-btn:hover { background: #e0e0e0; }

/* AGB */
.sh-agb-row { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; }
.sh-agb-row input[type="checkbox"] { margin-top: 2px; width: 16px; height: 16px; accent-color: var(--red); flex-shrink: 0; }
.sh-agb-row label { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.sh-agb-row a { color: var(--red); }

.sh-form-error {
  background: #fff0f0; border: 1px solid #f5c0c0; border-radius: var(--radius-sm);
  padding: 10px 14px; color: #a02020; font-size: 14px; margin-bottom: 14px;
}

.sh-btn-order {
  width: 100%; background: var(--red); color: #fff;
  border: none; border-radius: var(--radius-sm);
  padding: 14px; font-size: 17px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.15s;
}
.sh-btn-order:hover:not(:disabled) { background: var(--red-dark); }
.sh-btn-order:disabled { opacity: 0.6; cursor: not-allowed; }

.sh-order-note { font-size: 14px; color: var(--text-light); text-align: center; margin-top: 8px; line-height: 1.5; }

/* Order Summary (sidebar) */
.sh-summary-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.sh-summary-items { margin-bottom: 16px; }
.sh-summary-item {
  display: flex; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.sh-summary-item:last-child { border-bottom: none; }
.sh-summary-img {
  width: 52px; height: 52px; flex-shrink: 0;
  background: #f5f5f5; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.sh-summary-img img { width: 100%; height: 100%; object-fit: cover; }
.sh-summary-img .no-img { font-size: 20px; color: #ccc; }
.sh-summary-info { flex: 1; }
.sh-summary-name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; line-height: 1.3; }
.sh-summary-variant { font-size: 14px; color: var(--text-muted); }
.sh-summary-custom { font-size: 14px; color: var(--red); font-style: italic; }
.sh-summary-right { text-align: right; flex-shrink: 0; }
.sh-summary-price { font-size: 14px; font-weight: 700; color: var(--text); }
.sh-summary-qty { font-size: 14px; color: var(--text-muted); }

.sh-summary-divider { border: none; border-top: 1px solid var(--border); margin: 12px 0; }
.sh-summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-muted); margin-bottom: 6px; }
.sh-summary-total-row { display: flex; justify-content: space-between; font-size: 17px; font-weight: 700; color: var(--text); margin-top: 8px; }
.sh-summary-mwst { font-size: 14px; color: var(--text-light); margin-top: 4px; }

/* ---- SUCCESS SCREEN ---- */
.sh-checkout-success {
  max-width: 560px; margin: 40px auto; padding: 0 16px;
}
.sh-success-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  text-align: center;
}
.sh-success-icon { font-size: 52px; margin-bottom: 16px; }
.sh-success-title { font-size: 23px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.sh-success-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.sh-success-order-no {
  background: var(--red-light); border: 1px solid #f5c0c0;
  border-radius: var(--radius); padding: 14px 20px;
  font-size: 15px; color: var(--text-muted); margin-bottom: 20px;
}
.sh-success-order-no strong { display: block; font-size: 21px; color: var(--red); margin-bottom: 2px; }
.sh-success-bank {
  background: #f5f5f5; border-radius: var(--radius);
  padding: 16px 20px; text-align: left; margin-bottom: 20px;
  font-size: 14px; line-height: 1.8;
}
.sh-success-bank h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.sh-success-bank .bank-row { display: flex; gap: 8px; }
.sh-success-bank .bank-label { color: var(--text-muted); min-width: 120px; }
.sh-success-bank .bank-val { color: var(--text); font-weight: 600; }
.sh-success-bank .bank-ref { color: var(--red); font-weight: 700; font-size: 15px; }
.sh-success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.sh-success-btn {
  background: var(--red); color: #fff; border: none;
  border-radius: var(--radius-sm); padding: 11px 22px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: background 0.15s;
}
.sh-success-btn:hover { background: var(--red-dark); }
.sh-success-btn-outline {
  background: none; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 11px 22px; font-size: 15px; cursor: pointer;
  transition: border-color 0.15s;
}
.sh-success-btn-outline:hover { border-color: #999; }

/* ============================================================
   KATEGORIEN-SEITE
   ============================================================ */
.sh-kat-page { max-width: 1800px; margin: 0 auto; padding: 20px 16px 48px; }

.sh-kat-breadcrumb { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.sh-kat-breadcrumb a { color: var(--text-muted); }
.sh-kat-breadcrumb a:hover { color: var(--red); }
.sh-kat-breadcrumb span { color: var(--text); font-weight: 500; }

.sh-kat-layout { display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: start; }

.sh-kat-sidebar {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px;
  position: sticky; top: 72px;
}
.sh-kat-sidebar-title {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  font-size: 12px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 8px;
  background: none; border: none; padding: 0; cursor: pointer; text-align: left;
}
.sh-kat-sidebar-chevron { display: inline-block; transition: transform 0.15s; flex-shrink: 0; margin-left: 8px; }
.sh-kat-sidebar-collapsed .sh-kat-sidebar-links { display: none; }
.sh-kat-sidebar-collapsed { padding-bottom: 16px; }
@media (max-width: 768px) {
  .sh-kat-sidebar-title { cursor: pointer; }
}
.sh-kat-sidebar-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 10px; border-radius: var(--radius-sm);
  font-size: 15px; color: var(--text-muted); cursor: pointer;
  transition: background 0.15s, color 0.15s; text-decoration: none;
}
.sh-kat-sidebar-link:hover { background: var(--bg); color: var(--text); }
.sh-kat-sidebar-link.active { background: var(--red-light); color: var(--red); font-weight: 600; }
.sh-kat-sidebar-count { font-size: 12px; color: var(--text-light); flex-shrink: 0; margin-left: 6px; }

.sh-kat-toolbar {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.sh-kat-toolbar-search {
  display: flex; align-items: center; flex: 1; max-width: 300px;
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
}
.sh-kat-toolbar-search input {
  flex: 1; border: none; background: transparent;
  padding: 6px 10px; font-size: 14px; color: var(--text); outline: none;
}
.sh-kat-toolbar-search input::placeholder { color: var(--text-muted); }
.sh-kat-toolbar-search svg { margin-right: 8px; color: var(--text-muted); flex-shrink: 0; }
.sh-kat-count { font-size: 14px; color: var(--text-muted); white-space: nowrap; flex-shrink: 0; }
.sh-kat-sort {
  font-size: 14px; padding: 6px 10px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-white); color: var(--text); cursor: pointer;
}
.sh-kat-sort:focus { outline: none; border-color: var(--red); }

.sh-kat-empty { text-align: center; padding: 48px 0; color: var(--text-muted); font-size: 14px; }

.sh-pagination { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 28px; }
.sh-page-btn {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px 18px;
  font-size: 13px; color: var(--text); cursor: pointer;
  transition: border-color 0.15s;
}
.sh-page-btn:hover:not(:disabled) { border-color: var(--red); color: var(--red); }
.sh-page-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.sh-page-info { font-size: 13px; color: var(--text-muted); min-width: 80px; text-align: center; }

@media (max-width: 768px) {
  .sh-kat-layout { grid-template-columns: minmax(0, 1fr); }
  .sh-kat-sidebar { position: static; min-width: 0; }
}

/* ── Ähnliche Artikel ── */
.sh-similar { background: var(--bg-gray); padding: 32px 0 40px; margin-top: 32px; }
.sh-similar-inner { max-width: 1800px; margin: 0 auto; padding: 0 32px; }
.sh-similar-title { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 20px; }
.sh-similar-row { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; }
.sh-similar-row::-webkit-scrollbar { height: 4px; }
.sh-similar-row::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.sh-similar-card {
  flex: 0 0 190px; background: var(--bg-white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden; cursor: pointer;
  text-decoration: none; color: inherit; transition: box-shadow 0.15s, border-color 0.15s;
}
.sh-similar-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.1); border-color: var(--red); }
.sh-similar-card-img { width: 100%; height: 190px; object-fit: cover; display: block; background: var(--bg-gray); }
.sh-similar-card-placeholder { width: 100%; height: 190px; display: flex; align-items: center; justify-content: center; font-size: 36px; background: var(--bg-gray); }
.sh-similar-card-info { padding: 10px 12px; }
.sh-similar-card-name { font-size: 13px; font-weight: 600; line-height: 1.35; margin-bottom: 5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sh-similar-card-price { font-size: 14px; color: var(--red); font-weight: 700; }
@media (max-width: 768px) { .sh-similar-inner { padding: 0 16px; } }

/* ── Legal-Seiten (AGB, Datenschutz, Impressum, Widerrufsbelehrung) ── */
.sh-legal-main {
  max-width: 1800px; margin: 0 auto; padding: 40px 32px 64px;
}
.sh-legal-breadcrumb {
  font-size: 13px; color: var(--text-muted); margin-bottom: 24px;
}
.sh-legal-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.sh-legal-breadcrumb a:hover { color: var(--red); }
.sh-legal-main h1 {
  font-size: 26px; font-weight: 700; color: var(--text); margin-bottom: 32px;
  padding-bottom: 12px; border-bottom: 2px solid var(--border);
}
.itrk-legaltext { font-size: 14px; line-height: 1.7; color: var(--text); }
@media (max-width: 768px) {
  .sh-legal-main { padding: 24px 16px 48px; }
}

/* Druckansicht: Header, Footer und Aktions-Buttons ausblenden, damit z.B. die
   Bestellbestaetigung ohne leere zweite Seite auf ein Blatt passt (Session 69). */
@media print {
  .sh-header, .sh-footer, .sh-success-actions, .sh-cart-dropdown, .sh-mobile-nav, #checkoutMain {
    display: none !important;
  }
  html, body { background: #fff !important; min-height: 0 !important; height: auto !important; }
  .sh-checkout-success { margin: 0 !important; }
  .sh-success-card { border: none !important; padding: 12px !important; }
}
