/* ================================================================
   OUTDOOR SHOP – DESIGN SYSTEM
   Fonts: system stack + Playfair Display for headings
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --c-bg:          #ffffff;
  --c-bg-img:      #f2f2f0;      /* Produktbild-Hintergrund */
  --c-bg-light:    #f8f7f5;
  --c-border:      #e8e6e1;
  --c-text:        #1a1a1a;
  --c-text-muted:  #888;
  --c-text-light:  #b0aba0;
  --c-primary:     #2c3e1f;      /* Dunkelgrün */
  --c-accent:      #e67e22;      /* Orange – ATC Button */
  --c-red:         #d0021b;
  --c-green:       #2d7d2d;
  --c-star-empty:  #d4d0c8;
  --c-star-filled: #1a1a1a;      /* Sterne dunkel wie im Screenshot */
  --c-badge-new:   #3d3d3d;      /* Dunkelgrau/braun Kreis */
  --radius-card:   0px;           /* Keine Abrundung – clean */
  --radius-btn:    4px;
  --radius-size:   100px;         /* Vollrund für Größen-Buttons */
  --font-body:     'Inter', -apple-system, sans-serif;
  --font-head:     'Playfair Display', Georgia, serif;
  --transition:    .18s ease;
  --max-w:         1320px;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.os-shop, .os-single-page, .os-cart-page,
.os-checkout-page, .os-order-received, .os-account, .os-legal {
  font-family: var(--font-body);
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 0 6rem;
}

a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 600; }
img { display: block; max-width: 100%; }

/* ================================================================
   BUTTONS (General)
   ================================================================ */
.os-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-size: .85rem; font-weight: 600;
  letter-spacing: .02em; border-radius: var(--radius-btn);
  padding: .65rem 1.4rem; cursor: pointer; border: 1.5px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none; line-height: 1.2;
}
.os-btn:active { transform: scale(.98); }
.os-btn-primary  { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.os-btn-primary:hover { background: #3a5228; border-color: #3a5228; color: #fff; }
.os-btn-outline  { background: transparent; color: var(--c-primary); border-color: var(--c-primary); }
.os-btn-outline:hover { background: var(--c-primary); color: #fff; }
.os-btn-large    { padding: .85rem 2rem; font-size: .95rem; }
.os-btn-block    { width: 100%; }

/* ================================================================
   SHOP-SEITE – KATEGORIE-NAVIGATION
   ================================================================ */
.os-cat-nav {
  border-bottom: 1px solid var(--c-border);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; margin-bottom: .75rem;
}
.os-cat-nav::-webkit-scrollbar { display: none; }

.os-cat-nav ul {
  list-style: none; display: flex; white-space: nowrap;
  padding: 0 0 0 2px;
}
.os-cat-nav ul li a {
  display: block; padding: .9rem 1.1rem;
  font-size: .9rem; font-weight: 500; color: var(--c-text);
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap; text-decoration: none;
}
.os-cat-nav ul li a:hover { color: var(--c-text); border-bottom-color: var(--c-text); }
.os-cat-nav ul li.os-active a {
  font-weight: 700; border-bottom-color: var(--c-text);
  text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px;
}

/* Produktanzahl */
.os-result-count {
  font-size: .85rem; color: var(--c-text-muted);
  padding: .6rem 0 1rem; display: block;
}


/* ================================================================
   PAGINATION
   ================================================================ */
.os-pagination,
.os-load-more-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .6rem;
  margin: 2rem 0 0;
}
.os-page-link {
  min-width: 44px;
  height: 44px;
  padding: 0 .95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  background: #fff;
  color: var(--c-text);
  font-size: .9rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.os-page-link:hover,
.os-page-link.is-active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}
.os-load-more-btn {
  min-width: 180px;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

/* ================================================================
   PRODUKT-GRID
   ================================================================ */
.os-product-grid {
  list-style: none; display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;                        /* 1px Trennlinie zwischen Karten */
  background: var(--c-border);     /* Trennlinie-Farbe */
  border: 1px solid var(--c-border);
}
@media (max-width: 1100px) { .os-product-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 720px)  { .os-product-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 440px)  { .os-product-grid { grid-template-columns: 1fr; } }

/* Listenansicht */
.os-product-grid.os-list-view { grid-template-columns: 1fr; gap: 1px; }
.os-product-grid.os-list-view .os-product-card { display: flex; }
.os-product-grid.os-list-view .os-card-image { width: 200px; flex-shrink: 0; aspect-ratio: auto; height: 200px; }
.os-product-grid.os-list-view .os-card-info { flex: 1; }

/* ================================================================
   PRODUKTKARTE
   ================================================================ */
.os-product-card {
  background: var(--c-bg); display: flex; flex-direction: column;
  transition: background var(--transition);
  position: relative; overflow: hidden;
}
.os-product-card:hover { background: #fafaf8; }

.os-card-link { display: flex; flex-direction: column; flex: 1; cursor: pointer; }

/* Bild-Container */
.os-card-image {
  position: relative; background: var(--c-bg-img);
  aspect-ratio: 3/4; overflow: hidden; flex-shrink: 0;
}
.os-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.os-product-card:hover .os-card-image img { transform: scale(1.04); }
.os-card-image-placeholder {
  width: 100%; height: 100%; display: flex;
  align-items: center; justify-content: center; background: var(--c-bg-img);
}

/* Badge "Neu" – dunkler Kreis oben links wie im Screenshot */
.os-badge-new {
  position: absolute; top: .7rem; left: .7rem; z-index: 2;
  background: var(--c-badge-new); color: #fff;
  font-size: .62rem; font-weight: 600; letter-spacing: .03em;
  padding: .3rem .55rem; border-radius: 20px;
  font-family: var(--font-body); text-transform: none;
}
.os-badge-sale {
  position: absolute; top: .7rem; right: .7rem; z-index: 2;
  background: var(--c-red); color: #fff;
  font-size: .62rem; font-weight: 600; padding: .3rem .55rem; border-radius: 20px;
}

/* Wishlist */
.os-wishlist-btn {
  position: absolute; top: .6rem; right: .6rem; z-index: 3;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.88); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition), background var(--transition);
  color: var(--c-text-muted);
}
.os-product-card:hover .os-wishlist-btn { opacity: 1; }
.os-wishlist-btn:hover,
.os-wishlist-btn.is-wishlisted { background: #fff; color: var(--c-red); }
.os-wishlist-btn.is-wishlisted svg { fill: var(--c-red); stroke: var(--c-red); }

/* Sale-Badge + Wishlist nebeneinander */
.os-badge-sale ~ .os-wishlist-btn { top: .6rem; }

/* Info-Block */
.os-card-info {
  padding: .75rem .875rem .875rem;
  display: flex; flex-direction: column; gap: .2rem;
  flex: 1;
}

/* Sterne in Karte */
.os-card-rating {
  display: flex; align-items: center; gap: .35rem; margin-bottom: .15rem;
}
.os-card-rating .os-star svg,
.os-card-rating .os-star { display: inline-block; }
.os-card-rating .os-star { color: var(--c-star-empty); }
.os-card-rating .os-star.filled { color: var(--c-star-filled); }
.os-card-rating .os-star.half  { color: var(--c-star-filled); opacity: .5; }
.os-card-rating-count { font-size: .72rem; color: var(--c-text-muted); }

/* Produkttitel */
.os-card-title {
  font-family: var(--font-body); font-size: .875rem; font-weight: 500;
  line-height: 1.3; color: var(--c-text);
}
.os-card-title a { color: inherit; text-decoration: none; }
.os-card-title a:hover { text-decoration: underline; }

.os-card-sku { font-size: .78rem; color: var(--c-text-muted); }

.os-card-price {
  font-size: .925rem; font-weight: 600; color: var(--c-text);
  margin-top: .3rem;
}
.os-card-price del { color: var(--c-text-muted); font-weight: 400; margin-right: .3rem; font-size: .85rem; }
.os-card-price ins { text-decoration: none; color: var(--c-red); }
.os-out-of-stock { font-size: .75rem; color: var(--c-red); font-weight: 500; margin-top: .2rem; }

/* ================================================================
   FLOATING SORT/FILTER BAR (unten, wie Screenshot)
   ================================================================ */
.os-float-bar {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(26,26,26,.08);
  border-radius: 999px;
  padding: .35rem;
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.os-float-filter-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: linear-gradient(180deg, #f6f8f2 0%, #eef3e6 100%);
  border: 0 !important;
  outline: 0;
  box-shadow: inset 0 0 0 1px rgba(44,62,31,.14);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--c-primary);
  padding: .82rem 2.45rem .82rem 1.55rem;
  min-height: 48px;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.os-float-filter-btn-label {
  display: inline-block;
  padding: 0 .55rem 0 .1rem;
}
.os-float-filter-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.os-float-filter-btn:hover,
.os-float-filter-btn:focus-visible {
  background: linear-gradient(180deg, #f0f4e7 0%, #e6eddc 100%);
  box-shadow: inset 0 0 0 1px rgba(44,62,31,.22), 0 8px 18px rgba(0,0,0,.08);
}
.os-float-filter-btn:active {
  transform: translateY(1px);
}
.os-float-view-toggle { display: none !important; }
.os-float-view-toggle .os-view-btn { display: none !important; }
.os-float-view-toggle .os-view-btn.active { display: none !important; }
.os-float-filter-btn::before,
.os-float-filter-btn::after { display: none !important; }

/* Sortier-Overlay */
.os-sort-overlay {
  position: fixed; inset: 0; z-index: 1000;
}
.os-sort-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,.4);
}
.os-sort-panel {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: #fff; border-radius: 16px 16px 0 0;
  padding: 1.5rem; z-index: 1;
}
.os-sort-panel-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--c-border);
}
.os-sort-panel-header h3 { font-size: 1rem; font-weight: 700; }
.os-sort-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--c-text-muted); line-height: 1; }
.os-sort-option {
  display: flex; justify-content: space-between; align-items: center;
  padding: .875rem 0; font-size: .925rem; color: var(--c-text);
  border-bottom: 1px solid var(--c-border); text-decoration: none;
  transition: color var(--transition);
}
.os-sort-option:last-child { border-bottom: none; }
.os-sort-option.active { font-weight: 700; }
.os-sort-option:hover { color: var(--c-primary); }

/* ================================================================
   EINZELPRODUKT – LAYOUT
   ================================================================ */
.os-single-page {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 0 4rem;
}

.os-single-layout {
  display: grid;
  grid-template-columns: 60fr 40fr;
  min-height: 80vh;
  align-items: start;
}
@media (max-width: 900px) {
  .os-single-layout { grid-template-columns: 1fr; }
}

/* ================================================================
   EINZELPRODUKT – BILD-SPALTE (links)
   ================================================================ */
.os-single-image-col {
  position: relative;
  background: var(--c-bg-img);
  min-height: 70vh;
  display: flex; flex-direction: column;
}

.os-single-badge-new {
  position: absolute; top: 1.25rem; left: 1.25rem; z-index: 3;
  background: var(--c-badge-new); color: #fff;
  font-size: .7rem; font-weight: 600; letter-spacing: .03em;
  padding: .35rem .7rem; border-radius: 20px;
  font-family: var(--font-body);
}

.os-single-main-image-wrap {
  position: relative;
  flex: 1;
  display: flex;
  min-height: 500px;
}
.os-single-main-image {
  flex: 1; display: flex; align-items: center; justify-content: center;
  width: 100%;
  padding: 2rem 4.5rem; min-height: 500px;
  overflow: hidden; cursor: zoom-in;
}
.os-single-main-image img {
  max-height: 70vh; max-width: 100%; width: auto;
  object-fit: contain;
  transition: transform .35s ease;
}
.os-single-main-image:hover img { transform: scale(1.06); }
.os-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.os-gallery-prev { left: 1rem; }
.os-gallery-next { right: 1rem; }
.os-gallery-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}
.os-gallery-nav:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 2px;
}
@media (max-width: 900px) {
  .os-single-main-image { padding: 1.5rem 3.5rem; }
  .os-gallery-nav {
    width: 44px;
    height: 44px;
    font-size: 1.9rem;
  }
  .os-gallery-prev { left: .75rem; }
  .os-gallery-next { right: .75rem; }
}

/* Thumbnails unter dem Bild */
.os-single-thumbs {
  display: flex; gap: .5rem; padding: 1rem 1.5rem;
  background: var(--c-bg-img); overflow-x: auto;
  scrollbar-width: none;
}
.os-single-thumbs::-webkit-scrollbar { display: none; }
.os-thumb-btn {
  width: 72px; height: 72px; flex-shrink: 0;
  background: #fff; border: 2px solid transparent;
  cursor: pointer; overflow: hidden; padding: 0;
  transition: border-color var(--transition);
}
.os-thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
.os-thumb-btn.active { border-color: var(--c-text); }
.os-thumb-btn:hover { border-color: var(--c-text-muted); }

/* ================================================================
   EINZELPRODUKT – DETAIL-SPALTE (rechts)
   ================================================================ */
.os-single-detail-col {
  padding: 2.5rem 2.5rem 2.5rem;
  border-left: 1px solid var(--c-border);
  position: sticky; top: 0;
  max-height: 100vh; overflow-y: auto;
  scrollbar-width: thin;
}
@media (max-width: 900px) {
  .os-single-detail-col { border-left: none; padding: 1.5rem; position: static; max-height: none; }
}

.os-single-brand-row { margin-bottom: .75rem; }
.os-single-brand {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--c-text-muted);
}

.os-single-title {
  font-family: var(--font-body); font-size: 1.35rem; font-weight: 600;
  line-height: 1.25; color: var(--c-text); margin-bottom: .75rem;
}

/* Preis */
.os-single-price-row {
  display: flex; align-items: baseline; gap: .6rem; margin-bottom: .875rem;
}
.os-price-main {
  font-size: 1.5rem; font-weight: 700; color: var(--c-text);
  font-family: var(--font-body);
}
.os-price-main.os-price-sale { color: var(--c-red); }
.os-price-old {
  font-size: 1rem; color: var(--c-text-muted); font-weight: 400;
  text-decoration: line-through;
}

/* Bewertungen */
.os-single-rating {
  display: flex; align-items: center; gap: .5rem; margin-bottom: .875rem;
}
.os-stars-row { display: flex; gap: 2px; }
.os-star-svg { color: var(--c-star-empty); }
.os-star-svg.filled { color: var(--c-star-filled); }
.os-star-svg.half   { color: var(--c-star-filled); opacity: .45; }
.os-single-rating-count { font-size: .8rem; color: var(--c-text-muted); }

/* Kurzbeschreibung */
.os-single-excerpt {
  font-size: .875rem; line-height: 1.65; color: #444;
  margin-bottom: .875rem;
}

/* Meta-Zeile: SKU + Kategorie-Tags */
.os-single-meta-row {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  margin-bottom: .5rem;
}
.os-single-sku { font-size: .8rem; color: var(--c-text-muted); }
.os-cat-tag {
  display: inline-block; padding: .25rem .7rem;
  background: var(--c-bg-light); border: 1px solid var(--c-border);
  border-radius: 4px; font-size: .75rem; font-weight: 500;
  color: var(--c-text); text-decoration: none;
  transition: background var(--transition);
}
.os-cat-tag:hover { background: var(--c-border); }
.os-read-more-btn {
  background: none; border: none; cursor: pointer;
  font-size: .8rem; color: var(--c-text-muted); display: flex; align-items: center; gap: .2rem;
  text-decoration: underline; font-family: var(--font-body);
}

.os-single-divider { border: none; border-top: 1px solid var(--c-border); margin: 1rem 0; }

/* ================================================================
   VARIANTEN-BLOCK
   ================================================================ */
.os-variant-block { margin-bottom: 1.25rem; }

.os-variant-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .6rem;
}
.os-variant-label {
  font-size: .82rem; font-weight: 500; color: var(--c-text-muted);
}
.os-variant-label strong { color: var(--c-text); font-weight: 600; }
.os-size-guide-btn {
  display: flex; align-items: center; gap: .3rem;
  background: none; border: none; cursor: pointer;
  font-size: .75rem; color: var(--c-text-muted); font-family: var(--font-body);
  text-decoration: underline;
}

/* Größen-Buttons: runde Buttons wie im Screenshot */
.os-size-options { display: flex; gap: .45rem; flex-wrap: wrap; }
.os-size-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--c-border);
  background: var(--c-bg); font-size: .82rem; font-weight: 500;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); color: var(--c-text);
  font-family: var(--font-body);
}
.os-size-btn:hover { border-color: var(--c-text); }
.os-size-btn.active {
  background: var(--c-text); color: #fff;
  border-color: var(--c-text);
}

/* Farb-Buttons */
.os-color-options { display: flex; gap: .45rem; flex-wrap: wrap; }
.os-color-btn {
  padding: .35rem .85rem; border-radius: 100px;
  border: 1.5px solid var(--c-border);
  background: var(--c-bg); font-size: .8rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
  font-family: var(--font-body); color: var(--c-text);
}
.os-color-btn:hover { border-color: var(--c-text); }
.os-color-btn.active {
  border-color: var(--c-text);
  background: var(--c-text); color: #fff;
}

/* ================================================================
   LAGER-ANZEIGE
   ================================================================ */
.os-single-stock {
  display: flex; align-items: center; gap: .45rem;
  margin-bottom: 1.25rem; font-size: .83rem; font-weight: 500;
}
.os-stock-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.os-stock-dot-green { background: var(--c-green); }
.os-stock-dot-red   { background: var(--c-red); }
.os-stock-label     { color: var(--c-text); }
.os-stock-out       { color: var(--c-red); }

/* ================================================================
   ADD TO CART (Einzelprodukt)
   ================================================================ */
.os-single-atc-row {
  display: flex; gap: .625rem; align-items: stretch;
  margin-bottom: .875rem;
}

/* Menge */
.os-qty-control {
  display: flex; align-items: center;
  border: 1.5px solid var(--c-border); border-radius: var(--radius-btn);
  overflow: hidden; flex-shrink: 0;
}
.os-qty-btn {
  width: 38px; height: 48px;
  background: var(--c-bg-light); border: none;
  font-size: 1.1rem; cursor: pointer; color: var(--c-text);
  transition: background var(--transition); display: flex; align-items: center; justify-content: center;
}
.os-qty-btn:hover { background: var(--c-border); }
.os-qty-input {
  width: 48px; border: none; text-align: center;
  font-size: .9rem; font-weight: 600; background: #fff;
  font-family: var(--font-body); color: var(--c-text);
  -moz-appearance: textfield; padding: 0;
  height: 48px;
}
.os-qty-input::-webkit-inner-spin-button,
.os-qty-input::-webkit-outer-spin-button { display: none; }

/* Großer orangener ATC-Button wie im Screenshot */
.os-atc-btn {
  flex: 1; height: 48px;
  background: var(--c-accent); color: #fff;
  border: none; border-radius: var(--radius-btn);
  font-family: var(--font-body); font-size: .95rem; font-weight: 700;
  cursor: pointer; letter-spacing: .02em;
  transition: background var(--transition), transform var(--transition);
}
.os-atc-btn:hover { background: #d4711e; }
.os-atc-btn:active { transform: scale(.99); }
.os-atc-btn-disabled { background: var(--c-border); color: var(--c-text-muted); cursor: not-allowed; }

/* Wishlist-Button rechts neben ATC */
.os-single-wishlist-btn {
  width: 48px; height: 48px; flex-shrink: 0;
  border: 1.5px solid var(--c-border); border-radius: var(--radius-btn);
  background: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text-muted); transition: all var(--transition);
}
.os-single-wishlist-btn:hover { border-color: var(--c-red); color: var(--c-red); }
.os-single-wishlist-btn.is-wishlisted svg { fill: var(--c-red); stroke: var(--c-red); }

/* Versandhinweis */
.os-shipping-note {
  font-size: .78rem; color: var(--c-text-muted);
  text-align: center; margin-bottom: 1.25rem;
}

/* Vertrauens-Row */
.os-trust-row {
  display: flex; gap: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--c-border); flex-wrap: wrap;
}
.os-trust-item {
  display: flex; align-items: center; gap: .4rem;
  font-size: .75rem; color: var(--c-text-muted);
}

/* ================================================================
   TABS (Einzelprodukt)
   ================================================================ */
.os-single-tabs-section {
  padding: 0 0 3rem;
  border-top: 1px solid var(--c-border);
}
.os-tab-nav {
  display: flex; gap: 0; border-bottom: 1px solid var(--c-border);
  overflow-x: auto; scrollbar-width: none;
}
.os-tab-nav::-webkit-scrollbar { display: none; }
.os-tab-btn {
  background: none; border: none; border-bottom: 2px solid transparent;
  padding: 1rem 1.5rem; font-size: .875rem; font-weight: 500;
  cursor: pointer; color: var(--c-text-muted); white-space: nowrap;
  transition: all var(--transition); font-family: var(--font-body);
  margin-bottom: -1px;
}
.os-tab-btn:hover { color: var(--c-text); }
.os-tab-btn.active { color: var(--c-text); border-bottom-color: var(--c-text); font-weight: 600; }
.os-tab-content { padding: 2rem 0; line-height: 1.75; font-size: .9rem; }
.os-tab-content[hidden] { display: none; }
.os-single-description h2,
.os-single-description h3 { font-family: var(--font-head); margin: 1.5rem 0 .75rem; }
.os-single-description ul { padding-left: 1.25rem; margin: .75rem 0; }
.os-single-description li { margin-bottom: .35rem; }

.os-versand-info h4 { font-size: 1rem; margin-bottom: .5rem; margin-top: 1rem; }
.os-versand-info h4:first-child { margin-top: 0; }
.os-versand-info p { margin-bottom: .5rem; font-size: .9rem; }

/* ================================================================
   GRÖSSENTABELLE MODAL
   ================================================================ */
.os-modal { position: fixed; inset: 0; z-index: 9000; }
.os-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.os-modal-box {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: #fff; width: min(560px, 95vw); max-height: 80vh;
  overflow-y: auto; z-index: 1; border-radius: 8px;
}
.os-modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--c-border);
}
.os-modal-header h3 { font-size: 1rem; font-weight: 700; }
.os-modal-close-btn { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--c-text-muted); }
.os-modal-body { padding: 1.5rem; }
.os-size-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.os-size-table th,
.os-size-table td { padding: .65rem .75rem; border-bottom: 1px solid var(--c-border); text-align: center; }
.os-size-table th { background: var(--c-bg-light); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; }

/* ================================================================
   WARENKORB
   ================================================================ */
.os-cart-page { padding: 2rem 1.5rem 6rem; }
.os-cart-page h1 { font-family: var(--font-head); margin-bottom: 2rem; font-size: 1.75rem; }

.os-cart-layout {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 3rem; align-items: start;
}
@media (max-width: 900px) { .os-cart-layout { grid-template-columns: 1fr; } }

.os-cart-table { width: 100%; border-collapse: collapse; }
.os-cart-table th,
.os-cart-table td {
  padding: 1rem .5rem; border-bottom: 1px solid var(--c-border);
  vertical-align: middle; font-size: .875rem;
}
.os-cart-table thead th {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--c-text-muted); padding-bottom: .75rem;
}
.os-cart-image img { border-radius: 4px; }
.os-cart-name a { font-weight: 500; color: var(--c-text); }
.os-cart-name a:hover { text-decoration: underline; }
.os-cart-sku { font-size: .75rem; color: var(--c-text-muted); margin-top: .2rem; }
.os-cart-meta { list-style: none; font-size: .75rem; color: var(--c-text-muted); margin-top: .2rem; }
.os-cart-remove {
  background: none; border: none; font-size: 1.25rem;
  cursor: pointer; color: var(--c-text-muted); padding: .2rem .4rem;
  border-radius: 4px; transition: all var(--transition); line-height: 1;
}
.os-cart-remove:hover { background: var(--c-red); color: #fff; }
.os-cart-actions { margin-top: 1rem; }

/* Cart Summary */
.os-cart-summary {
  background: var(--c-bg-light); padding: 1.5rem;
  border: 1px solid var(--c-border); position: sticky; top: 1rem;
}
.os-cart-summary h2 { font-size: 1.1rem; margin-bottom: 1.25rem; font-family: var(--font-body); font-weight: 700; }
.os-summary-row { display: flex; justify-content: space-between; padding: .5rem 0; font-size: .9rem; }
.os-summary-divider { border: none; border-top: 1px solid var(--c-border); margin: .75rem 0; }
.os-summary-total { font-weight: 700; font-size: 1.05rem; }
.os-tax-note { font-size: .75rem; color: var(--c-text-muted); margin: .25rem 0 1.25rem; }
.os-free-shipping-hint {
  background: #e8f5e8; border-left: 3px solid var(--c-green);
  padding: .55rem .75rem; font-size: .8rem; margin: .5rem 0; border-radius: 0 4px 4px 0;
}
.os-payment-icons { display: flex; gap: .75rem; margin-top: 1rem; font-size: .78rem; color: var(--c-text-muted); justify-content: center; }
.os-qty-control.os-qty-small .os-qty-btn { width: 30px; height: 36px; font-size: 1rem; }
.os-qty-control.os-qty-small .os-qty-input { width: 40px; height: 36px; }

/* ================================================================
   KASSE
   ================================================================ */
.os-checkout-page { padding: 2rem 1.5rem 4rem; }
.os-checkout-page h1 { font-family: var(--font-head); margin-bottom: 2rem; font-size: 1.75rem; }

.os-checkout-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 440px;
  gap: 2rem; align-items: start;
}
@media (max-width: 900px) { .os-checkout-layout { grid-template-columns: 1fr; } }

.os-fieldset { border: 1px solid var(--c-border); padding: 1.5rem; margin-bottom: 1.5rem; }
.os-fieldset legend { font-weight: 700; font-size: .9rem; padding: 0 .5rem; color: var(--c-primary); }
.os-form-group { margin-bottom: 1rem; }
.os-form-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.os-form-group label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: .35rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .04em; }
.os-form-group input,
.os-form-group select,
.os-form-group textarea {
  width: 100%; border: 1.5px solid var(--c-border); border-radius: 4px;
  padding: .65rem .85rem; font-size: .9rem; font-family: var(--font-body);
  color: var(--c-text); background: #fff; box-sizing: border-box;
  transition: border-color var(--transition);
}
.os-form-group input:focus,
.os-form-group select:focus,
.os-form-group textarea:focus {
  outline: none; border-color: var(--c-text);
}
.os-form-group input.os-error,
.os-form-group select.os-error { border-color: var(--c-red); }
.os-field-error { font-size: .76rem; color: var(--c-red); margin-top: .3rem; }

.os-payment-option {
  display: grid; grid-template-columns: 18px minmax(0, 1fr); column-gap: .85rem; row-gap: .2rem;
  align-items: start; padding: .85rem; border: 1.5px solid var(--c-border);
  margin-bottom: .5rem; cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.os-payment-option:has(input:checked) { border-color: var(--c-text); box-shadow: 0 0 0 1px rgba(0,0,0,.04); }
.os-payment-option input[type="radio"] {
  grid-column: 1; grid-row: 1 / span 2; width: 18px; height: 18px;
  margin: .15rem 0 0; accent-color: var(--c-primary); display: block;
}
.os-payment-title { grid-column: 2; font-weight: 600; font-size: .875rem; }
.os-payment-desc  { grid-column: 2; font-size: .78rem; color: var(--c-text-muted); padding-left: 0; margin-top: .05rem; }

.os-checkbox-label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  column-gap: .75rem;
  align-items: start;
  font-size: .85rem;
  line-height: 1.6;
  cursor: pointer;
  margin-bottom: .85rem;
}
.os-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: .18rem 0 0;
  accent-color: var(--c-primary);
  display: block;
  flex-shrink: 0;
}
.os-checkbox-text {
  display: block;
  min-width: 0;
}
.os-checkbox-text a {
  white-space: normal;
}

.os-checkout-legal { margin: 1.5rem 0; }
.os-order-note {
  background: var(--c-bg-light); border-left: 3px solid var(--c-text-muted);
  padding: .75rem 1rem; font-size: .8rem; line-height: 1.5; margin: 1rem 0;
}

/* Checkout Summary */
.os-checkout-summary {
  background: var(--c-bg-light); padding: 1.5rem 1.35rem;
  border: 1px solid var(--c-border); position: sticky; top: 1rem; min-width: 0;
}
.os-checkout-summary h2 { font-size: 1.05rem; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; }
.os-order-summary-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.os-order-summary-table td,
.os-order-summary-table th { padding: .55rem 0; border-bottom: 1px solid var(--c-border); vertical-align: top; }
.os-order-summary-table th:first-child,
.os-order-summary-table td:first-child { width: 66%; }
.os-order-summary-table th:last-child,
.os-order-summary-table td:last-child { width: 34%; text-align: right; white-space: nowrap; }
.os-order-summary-table tfoot .os-total-row th,
.os-order-summary-table tfoot .os-total-row td { font-weight: 700; font-size: .975rem; border-bottom: none; padding-top: .75rem; }
.os-order-summary-table tfoot .os-summary-tax-row th,
.os-order-summary-table tfoot .os-summary-tax-row td { color: var(--c-text-muted); font-size: .78rem; }
.os-qty-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: #f1f3f5; color: var(--c-text-muted); font-size: .68rem; font-weight: 700;
  border-radius: 999px; padding: .14rem .45rem; margin-left: .4rem; vertical-align: middle;
}
#os-checkout-notices .os-notice-error {
  background: #fdecea; border-left: 3px solid var(--c-red);
  padding: .65rem 1rem; margin-bottom: 1rem; font-size: .85rem;
}

/* Stripe + PayPal */
.os-stripe-fields, .os-paypal-fields { margin-top: 1rem; }
#os-stripe-card-element {
  border: 1.5px solid var(--c-border); padding: .75rem 1rem; background: #fff;
  transition: border-color var(--transition);
}
#os-stripe-card-element.StripeElement--focus { border-color: var(--c-text); }
#os-stripe-errors { color: var(--c-red); font-size: .8rem; margin-top: .5rem; }
#os-paypal-button-container { margin-top: .5rem; min-height: 48px; }

/* Coupon */
.os-coupon-wrap { margin-top: 1rem; }
#os-coupon-form { display: flex; gap: .5rem; }
#os-coupon-form input { flex: 1; border: 1.5px solid var(--c-border); border-radius: 4px; padding: .55rem .75rem; font-size: .85rem; font-family: var(--font-body); }
#os-coupon-applied { font-size: .85rem; color: var(--c-green); margin-top: .5rem; display: none; }
.os-summary-row.os-discount-row { color: var(--c-green); }

/* ================================================================
   BESTELLBESTÄTIGUNG
   ================================================================ */
.os-order-received { max-width: 760px; margin: 0 auto; text-align: center; padding: 3rem 1.5rem; }
.os-order-success-icon {
  width: 64px; height: 64px; background: var(--c-green); color: #fff;
  font-size: 1.75rem; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.os-order-received h1 { font-family: var(--font-head); margin-bottom: .75rem; }
.os-order-received-intro { color: var(--c-text-muted); margin-bottom: 2rem; font-size: .9rem; }
.os-order-details-box { background: var(--c-bg-light); border: 1px solid var(--c-border); padding: 1.5rem; text-align: left; margin-bottom: 2rem; }
.os-order-meta-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.os-order-meta-grid div { display: flex; flex-direction: column; gap: .2rem; }
.os-order-meta-grid span { font-size: .75rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .05em; }
.os-order-meta-grid strong { font-size: .9rem; }
.os-order-table { width: 100%; border-collapse: collapse; font-size: .875rem; text-align: left; margin: 1rem 0; }
.os-order-table th,
.os-order-table td { padding: .6rem 0; border-bottom: 1px solid var(--c-border); }
.os-order-table .os-total-row th,
.os-order-table .os-total-row td { font-weight: 700; border-bottom: none; }
.os-bank-details { background: #fffbeb; border: 1px solid #fde68a; padding: 1.5rem; text-align: left; margin-bottom: 2rem; }
.os-bank-details table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.os-bank-details th { text-align: left; padding: .4rem .75rem .4rem 0; color: var(--c-text-muted); }
.os-bank-details td { padding: .4rem 0; }
.os-order-received-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* Status-Labels */
.os-status { display: inline-block; padding: .25rem .65rem; border-radius: 20px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.os-status-pending    { background: #fef3c7; color: #92400e; }
.os-status-processing { background: #dbeafe; color: #1e40af; }
.os-status-shipped    { background: #d1fae5; color: #065f46; }
.os-status-completed  { background: #d1fae5; color: #065f46; }
.os-status-cancelled  { background: #fee2e2; color: #991b1b; }
.os-status-refunded   { background: #f3f4f6; color: #374151; }

/* ================================================================
   MINI-CART FLYOUT
   ================================================================ */
.os-mini-cart { position: fixed; inset: 0; z-index: 10000; pointer-events: none; }
.os-mini-cart.is-open { pointer-events: all; }
.os-mini-cart-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .3s; }
.os-mini-cart.is-open .os-mini-cart-overlay { background: rgba(0,0,0,.45); }
.os-mini-cart-panel {
  position: absolute; right: 0; top: 0; bottom: 0; width: 380px; max-width: 100vw;
  background: #fff; box-shadow: -4px 0 24px rgba(0,0,0,.12);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.os-mini-cart.is-open .os-mini-cart-panel { transform: translateX(0); }
.os-mini-cart-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--c-border); }
.os-mini-cart-header h3 { margin: 0; font-size: 1rem; font-weight: 700; font-family: var(--font-body); }
.os-mini-cart-close { background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--c-text-muted); line-height: 1; }
.os-mini-cart-body { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.os-mini-cart-empty { color: var(--c-text-muted); text-align: center; padding: 2rem 0; font-size: .875rem; }
.os-mini-cart-item { display: grid; grid-template-columns: 64px 1fr 24px; gap: .75rem; align-items: start; padding: .75rem 0; border-bottom: 1px solid var(--c-border); }
.os-mini-cart-item img { width: 64px; height: 64px; object-fit: cover; }
.os-mini-cart-item-name  { font-size: .85rem; font-weight: 500; display: block; }
.os-mini-cart-item-meta  { font-size: .75rem; color: var(--c-text-muted); display: block; }
.os-mini-cart-item-price { font-size: .8rem; color: var(--c-text-muted); display: block; margin-top: .2rem; }
.os-mini-cart-remove { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--c-text-muted); padding: 0; line-height: 1; }
.os-mini-cart-remove:hover { color: var(--c-red); }
.os-mini-cart-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--c-border); background: var(--c-bg-light); }
.os-mini-cart-total { display: flex; justify-content: space-between; font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.os-mini-cart-tax { font-size: .75rem; color: var(--c-text-muted); margin-bottom: 1rem; }

/* Cart icon */
.os-cart-icon-link { position: relative; display: inline-flex; align-items: center; }
.os-menu-account-item, .os-menu-cart-item { list-style: none; position: relative; display: inline-flex; align-items: center; }
.os-menu-account-item { margin-right: .2rem; }
.os-account-menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; box-shadow: none; }
.os-account-menu-toggle:hover, .os-menu-account-item.is-open .os-account-menu-toggle { color: var(--c-accent); }
.os-account-submenu { position: absolute; top: calc(100% + 12px); right: 0; min-width: 220px; margin: 0; padding: .4rem 0; list-style: none; background: #fff; border: 1px solid var(--c-border); border-radius: 14px; box-shadow: 0 14px 36px rgba(0,0,0,.14); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .18s ease, transform .18s ease, visibility .18s ease; z-index: 9999; }
.os-menu-account-item.is-open .os-account-submenu, .os-menu-account-item:focus-within .os-account-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.os-account-submenu li { margin: 0; padding: 0; }
.os-account-submenu a { display: block; padding: .8rem 1rem; color: var(--c-text); font-size: 15px; line-height: 1.2; text-decoration: none; white-space: nowrap; }
.os-account-submenu a:hover { background: var(--c-bg-light); color: var(--c-text); }
.os-cart-count {
  position: absolute; top: -8px; right: -8px;
  background: var(--c-accent); color: #fff;
  font-size: .62rem; font-weight: 700; border-radius: 50%;
  min-width: 17px; height: 17px; line-height: 17px; text-align: center; padding: 0 2px;
}
.os-menu-cart-item { list-style: none; }

/* ================================================================
   LIVE-SUCHE
   ================================================================ */
.os-search-wrap { position: relative; }
.os-search-input {
  width: 100%; padding: .65rem 1rem .65rem 2.5rem;
  border: 1.5px solid var(--c-border); border-radius: 100px; font-size: .875rem;
  background: #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat .75rem center/16px;
  font-family: var(--font-body); transition: border-color var(--transition);
}
.os-search-input:focus { outline: none; border-color: var(--c-text); }
.os-search-results {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: #fff; border: 1.5px solid var(--c-border);
  box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 1000; overflow: hidden;
}
.os-search-result-item { display: flex; align-items: center; gap: .75rem; padding: .75rem 1rem; color: var(--c-text); border-bottom: 1px solid var(--c-border); transition: background var(--transition); }
.os-search-result-item:last-child { border-bottom: none; }
.os-search-result-item:hover { background: var(--c-bg-light); }
.os-search-result-item img { width: 44px; height: 44px; object-fit: cover; }
.os-sr-title { display: block; font-weight: 500; font-size: .85rem; }
.os-sr-price { display: block; font-size: .78rem; color: var(--c-text-muted); }

/* ================================================================
   BEWERTUNGEN
   ================================================================ */
.os-reviews { margin-top: .5rem; }
.os-review-list { margin-bottom: 2rem; }
.os-review { padding: 1.25rem 0; border-bottom: 1px solid var(--c-border); }
.os-review-header { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-bottom: .5rem; }
.os-review-author { font-weight: 600; font-size: .875rem; }
.os-review-stars  { color: var(--c-star-filled); letter-spacing: 2px; font-size: .9rem; }
.os-review-date   { font-size: .75rem; color: var(--c-text-muted); margin-left: auto; }
.os-review-text   { font-size: .875rem; line-height: 1.65; margin: 0; }
.os-review-form-wrap { background: var(--c-bg-light); border: 1px solid var(--c-border); padding: 1.5rem; margin-top: 2rem; }
.os-review-form-wrap h4 { margin: 0 0 1rem; font-size: 1rem; }
.os-star-picker { display: flex; flex-direction: row-reverse; gap: 4px; margin-bottom: .75rem; }
.os-star-picker input { display: none; }
.os-star-picker label { font-size: 1.75rem; color: var(--c-border); cursor: pointer; transition: color var(--transition); }
.os-star-picker label:hover,
.os-star-picker label:hover ~ label,
.os-star-picker input:checked ~ label { color: var(--c-star-filled); }
.os-review-notice { font-size: .85rem; margin-top: .75rem; }
.os-no-reviews { color: var(--c-text-muted); font-size: .875rem; }

/* ================================================================
   LAGER-BENACHRICHTIGUNG
   ================================================================ */
.os-notify-form { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.os-notify-form input { flex: 1; min-width: 180px; border: 1.5px solid var(--c-border); border-radius: 4px; padding: .6rem .85rem; font-size: .875rem; font-family: var(--font-body); }

/* ================================================================
   ZULETZT ANGESEHEN
   ================================================================ */
.os-recently-viewed { padding: 3rem 0 0; border-top: 1px solid var(--c-border); margin-top: 3rem; }
.os-recently-viewed h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1.5rem; color: var(--c-text-muted); }
.os-recently-viewed .os-product-grid { grid-template-columns: repeat(4,1fr); }
@media (max-width: 720px) { .os-recently-viewed .os-product-grid { grid-template-columns: repeat(2,1fr); } }

/* ================================================================
   WISHLIST HERZCHEN
   ================================================================ */
.os-wishlist-btn.is-wishlisted svg { fill: var(--c-red); stroke: var(--c-red); }

/* ================================================================
   COOKIE-BANNER
   ================================================================ */
.os-cookie-banner {
  position: fixed; bottom: 1.5rem; left: 1.5rem;
  max-width: 460px; background: #fff;
  border: 1px solid var(--c-border); border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15); z-index: 99999;
  padding: 1.5rem; font-size: .875rem; line-height: 1.5;
}
.os-cookie-inner { display: flex; flex-direction: column; gap: 1rem; }
.os-cookie-text strong { display: block; margin-bottom: .25rem; font-size: .9rem; }
.os-cookie-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.os-cookie-detail { padding-top: 1rem; border-top: 1px solid var(--c-border); margin-top: .5rem; }
.os-cookie-detail h3 { margin: 0 0 .75rem; font-size: .9rem; }
.os-cookie-toggle { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .6rem; font-size: .8rem; cursor: pointer; }
@media (max-width: 520px) { .os-cookie-banner { left: .75rem; right: .75rem; max-width: none; } }

/* ================================================================
   RECHTLICHE SEITEN
   ================================================================ */
.os-legal { padding: 2rem 1.5rem; line-height: 1.85; }
.os-legal h1 { font-family: var(--font-head); margin-bottom: 1.5rem; }
.os-legal h2 { font-size: 1.1rem; margin-top: 2rem; color: var(--c-primary); }
.os-legal h3 { font-size: 1rem; margin-top: 1.5rem; }
.os-legal-box { background: var(--c-bg-light); border: 1px solid var(--c-border); padding: 1.25rem; margin-top: 1rem; font-size: .875rem; }

/* ================================================================
   ADMIN STATS
   ================================================================ */
.os-admin-stats { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.5rem 0; }
.os-stat-box { background: #fff; border: 1px solid #e0e0e0; border-radius: 6px; padding: 1.25rem 1.5rem; min-width: 160px; display: flex; flex-direction: column; gap: .3rem; }
.os-stat-number { font-size: 1.75rem; font-weight: 700; }
.os-stat-label  { font-size: .78rem; color: #666; text-transform: uppercase; letter-spacing: .05em; }
.os-stat-alert   .os-stat-number { color: #c0392b; }
.os-stat-revenue .os-stat-number { color: #2d7d2d; }
.os-admin-order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.os-admin-box { background: #fff; border: 1px solid #e0e0e0; border-radius: 6px; padding: 1.25rem; }
.os-admin-box h2 { font-size: 1rem; margin: 0 0 1rem; }

/* ================================================================
   LEERER ZUSTAND
   ================================================================ */
.os-empty { text-align: center; padding: 5rem 2rem; }
.os-empty p { font-size: 1rem; color: var(--c-text-muted); margin-bottom: 1.5rem; }

/* ================================================================
   FLASH-MELDUNG (JS)
   ================================================================ */
#os-product-id { display: none; }

/* ================================================================
   KONTO
   ================================================================ */
.os-account { padding: 2rem 1.5rem 4rem; }
.os-account h1 { margin-bottom: 1.5rem; font-size: 1.75rem; }
.os-account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.os-account-grid-logged-in {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, .9fr);
  align-items: start;
}
.os-account-card {
  background: #fff;
  border: 1px solid var(--c-border);
  padding: 1.5rem;
}
.os-account-card-wide { min-width: 0; }
.os-account-card h2 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.os-account-form .os-btn { margin-top: .25rem; }
.os-account-notice {
  padding: .8rem 1rem;
  margin-bottom: 1rem;
  border-left: 3px solid transparent;
  font-size: .9rem;
}
.os-account-notice-success {
  background: #ecfdf5;
  border-left-color: #16a34a;
}
.os-account-notice-error {
  background: #fef2f2;
  border-left-color: var(--c-red);
}
.os-account-helper {
  font-size: .82rem;
  color: var(--c-text-muted);
  margin-top: .75rem;
  line-height: 1.5;
}
.os-account-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--c-bg-light);
  border: 1px solid var(--c-border);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.os-account-subtitle {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  margin: 1rem 0 .75rem;
}
.os-account-orders {
  overflow-x: auto;
}
.os-account-orders-table {
  min-width: 100%;
}
.os-account-orders-table a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.os-checkout-account-hint,
.os-account-create-box {
  background: var(--c-bg-light);
  border: 1px solid var(--c-border);
  padding: .9rem 1rem;
  margin-bottom: 1rem;
}
.os-create-account-note {
  font-size: .78rem;
  color: var(--c-text-muted);
  margin-top: -.25rem;
}
.os-account-dashboard {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.os-account-sidebar-wrap {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 1rem;
}
.os-account-sidebar-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 16px 30px rgba(15, 23, 42, .05);
}
.os-account-sidebar-intro h2,
.os-account-hero-card h2,
.os-account-card h2 {
  margin-bottom: .4rem;
}
.os-account-sidebar-mail {
  margin-top: .35rem;
}
.os-account-eyebrow {
  margin: 0 0 .45rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.os-account-nav {
  padding: .65rem;
}
.os-account-nav a {
  display: block;
  padding: .9rem 1rem;
  border-radius: 14px;
  color: var(--c-text);
  text-decoration: none;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.os-account-nav a:hover,
.os-account-nav a:focus-visible {
  background: var(--c-bg-light);
  color: var(--c-primary);
  transform: translateX(2px);
}
.os-account-side-actions {
  padding-top: 1rem;
}
.os-account-main {
  display: grid;
  gap: 1.5rem;
}
.os-account-hero-card,
.os-account-card {
  border-radius: 24px;
  box-shadow: 0 20px 36px rgba(15, 23, 42, .05);
}
.os-account-hero-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}
.os-account-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.os-account-section-head-compact {
  margin-bottom: 1rem;
}
.os-account-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.os-account-stat-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--os-design-card-radius, 18px);
  padding: 1rem 1.1rem;
}
.os-account-stat-label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: .55rem;
}
.os-account-stat-card strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: .35rem;
  color: var(--c-primary);
}
.os-account-stat-card small {
  display: block;
  font-size: .84rem;
  color: var(--c-text-muted);
  line-height: 1.45;
}
.os-account-empty-box {
  display: grid;
  gap: .9rem;
  justify-items: start;
  padding: .2rem 0 .1rem;
}
.os-account-logout-desktop {
  align-self: flex-start;
}
@media (max-width: 980px) {
  .os-account-dashboard,
  .os-account-grid,
  .os-account-grid-logged-in {
    grid-template-columns: 1fr;
  }
  .os-account-sidebar-wrap {
    position: static;
  }
  .os-account-stats {
    grid-template-columns: 1fr;
  }
  .os-account-topbar,
  .os-account-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .os-account-logout-desktop {
    display: none;
  }
}
@media (max-width: 640px) {
  .os-form-two-col {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   MATERIALINFOS & CROSS-SELLING
   ================================================================ */
.os-material-info h4,
.os-related-head h2 {
  margin-bottom: .85rem;
}
.os-material-info p {
  margin-bottom: .85rem;
  line-height: 1.7;
}
.os-related-products {
  max-width: var(--max-w);
  margin: 3rem auto 0;
}
.os-related-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.os-related-head p {
  color: var(--c-text-muted);
  margin: 0;
}
.os-related-grid {
  margin-top: 0;
}
@media (max-width: 720px) {
  .os-related-head {
    display: block;
  }
  .os-related-head p {
    margin-top: .35rem;
  }
}

/* ================================================================
   MOBILE OPTIMIERUNG 1.5.1
   ================================================================ */
.os-card-title,
.os-card-sku,
.os-card-rating-count {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.os-card-title a,
.os-card-title span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (hover: none) {
  .os-wishlist-btn { opacity: 1; }
}

@media (max-width: 767px) {
  .os-shop, .os-single-page, .os-cart-page, .os-checkout-page, .os-order-received, .os-account, .os-legal {
    padding-bottom: 7rem;
  }

  .os-shop-head-inner {
    display: flex;
    flex-direction: column;
    gap: .75rem;
  }

  .os-shop-head-spacer {
    display: none;
  }

  .os-cat-nav {
    margin-bottom: 0;
  }

  .os-cat-nav ul {
    gap: 0;
    padding: 0 .5rem;
  }

  .os-cat-nav ul li a {
    padding: .95rem .8rem;
    font-size: 1rem;
  }

  .os-shop-search-slot,
  .os-shop-search,
  .os-search-wrap {
    width: 100%;
  }

  .os-search-wrap {
    margin: 0;
  }

  .os-search-input {
    min-height: 48px;
    padding-right: 3.25rem;
    font-size: 16px;
  }

  .os-search-submit {
    width: 44px;
    min-width: 44px;
    height: 44px;
  }

  .os-product-grid {
    gap: 12px;
    background: transparent;
    border: none;
    padding: 0 1rem 1rem;
  }

  .os-product-grid.os-mobile-slider {
    display: flex !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .35rem;
  }

  .os-product-grid.os-mobile-slider::-webkit-scrollbar,
  .os-single-thumbs::-webkit-scrollbar,
  .os-tab-nav::-webkit-scrollbar {
    display: none;
  }

  .os-product-grid.os-mobile-slider .os-product-card {
    flex: 0 0 calc(100vw - 2rem);
    min-width: calc(100vw - 2rem);
    scroll-snap-align: start;
    border: 1px solid var(--c-border);
  }

  .os-product-grid.os-mobile-slider .os-card-image {
    aspect-ratio: 4 / 4.4;
  }

  .os-product-grid.os-list-view {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    background: transparent;
    border: none;
  }

  .os-product-grid.os-list-view .os-product-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: stretch;
    border: 1px solid var(--c-border);
  }

  .os-product-grid.os-list-view .os-card-link {
    display: contents;
  }

  .os-product-grid.os-list-view .os-card-image {
    width: 120px;
    height: 100%;
    min-height: 150px;
    aspect-ratio: auto;
  }

  .os-product-grid.os-list-view .os-card-info {
    padding: .85rem;
    min-width: 0;
  }

  .os-card-info {
    gap: .3rem;
  }

  .os-card-title {
    font-size: 1rem;
    line-height: 1.25;
  }

  .os-card-price {
    font-size: 1.1rem;
  }

  .os-card-rating {
    flex-wrap: wrap;
  }

  .os-float-bar {
    width: calc(100vw - 1rem);
    max-width: 390px;
    justify-content: center;
    gap: 0;
    padding: .35rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
  }

  .os-float-filter-btn {
    flex: 1 1 auto;
    justify-content: center;
    padding: .95rem 2.8rem .95rem 1.75rem;
    min-height: 48px;
    font-size: .95rem;
  }

  .os-float-filter-btn-label {
    padding-right: .9rem;
  }

  .os-float-view-toggle {
    display: none !important;
  }

  .os-sort-overlay {
    align-items: end;
  }

  .os-sort-panel {
    width: 100%;
    max-width: none;
    border-radius: 18px 18px 0 0;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }

  .os-single-page {
    padding-top: .5rem;
  }

  .os-single-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .os-single-image-col,
  .os-single-detail-col {
    border: none;
  }

  .os-single-main-image {
    min-height: 320px;
    padding: 1rem 2.75rem;
  }

  .os-gallery-nav {
    width: 38px;
    height: 38px;
    font-size: 2rem;
  }

  .os-single-thumbs {
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: .65rem;
    padding: 0 1rem .25rem;
    scroll-snap-type: x proximity;
  }

  .os-thumb-btn {
    flex: 0 0 74px;
    scroll-snap-align: start;
  }

  .os-single-detail-col {
    padding: 0 1rem 1rem;
  }

  .os-single-title {
    font-size: 1.6rem;
    line-height: 1.15;
  }

  .os-single-price-row {
    flex-wrap: wrap;
    gap: .35rem .75rem;
  }

  .os-single-meta-row {
    gap: .55rem;
    align-items: flex-start;
  }

  .os-variant-options {
    gap: .5rem;
  }

  .os-single-atc-row {
    flex-wrap: wrap;
    gap: .75rem;
  }

  .os-qty-control {
    width: 100%;
  }

  .os-atc-btn {
    flex: 1 1 auto;
    min-height: 48px;
  }

  .os-single-wishlist-btn {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }

  .os-trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: .65rem;
  }

  .os-tab-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding: 0 1rem;
    gap: .5rem;
    scrollbar-width: none;
  }

  .os-tab-btn {
    flex: 0 0 auto;
  }

  .os-tab-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .os-related-grid,
  .os-recently-viewed .os-product-grid {
    display: flex !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 12px !important;
    background: transparent;
    border: none;
    padding: 0 1rem .5rem;
  }

  .os-related-grid .os-product-card,
  .os-recently-viewed .os-product-grid .os-product-card {
    flex: 0 0 calc(84vw);
    min-width: calc(84vw);
    scroll-snap-align: start;
    border: 1px solid var(--c-border);
  }
}


.os-checkout-summary .os-cart-meta {
  margin-top: .35rem;
}
.os-checkout-summary .os-cart-meta li + li {
  margin-top: .15rem;
}
.os-checkout-summary .os-payment-option,
.os-checkout-summary .os-shipping-option {
  background: #fff;
}
@media (max-width: 1100px) {
  .os-checkout-layout {
    grid-template-columns: minmax(0, 1fr) 400px;
  }
}
@media (max-width: 900px) {
  .os-order-summary-table th:first-child,
  .os-order-summary-table td:first-child,
  .os-order-summary-table th:last-child,
  .os-order-summary-table td:last-child {
    width: auto;
  }
}


/* ================================================================
   DSGVO / RECHT UPDATE
   ================================================================ */
.os-cookie-settings-trigger { margin: 1rem 0 0; }
.os-cookie-settings-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--c-primary);
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
body > .os-cookie-settings-trigger {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 9998;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: .55rem .85rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
footer .os-cookie-settings-trigger {
  position: static;
  left: auto;
  bottom: auto;
  z-index: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.os-order-summary-legal {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  background: var(--c-bg-light);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  font-size: .92rem;
}
.os-order-summary-legal strong { display: block; margin-bottom: .45rem; }
.os-order-summary-legal ul { margin: 0; padding-left: 1.1rem; }
.os-order-summary-legal li { margin: .2rem 0; }
.os-legal ul { padding-left: 1.2rem; }
@media (max-width: 640px) {
  body > .os-cookie-settings-trigger { left: .75rem; right: .75rem; bottom: .75rem; text-align: center; }
}


/* ================================================================
   VERSION 1.6.3 FEINSCHLIFF
   ================================================================ */
.os-product-grid {
  background: transparent;
  border: 0;
}
.os-product-card {
  border: 1px solid var(--c-border);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, .04);
}
.os-product-card:hover {
  background: #fff;
  box-shadow: 0 18px 34px rgba(17, 24, 39, .08);
}
.os-card-image {
  background: #f6f6f2;
}
.os-card-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.os-card-info {
  gap: .35rem;
  padding: 1rem 1rem 1.05rem;
}
.os-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.os-card-sku {
  font-size: .74rem;
}
.os-single-layout {
  gap: 2.5rem;
  align-items: start;
}
.os-single-detail-col {
  position: sticky;
  top: 1.5rem;
}
.os-single-main-image-wrap {
  border-radius: 24px;
  overflow: hidden;
}
.os-single-main-image {
  background: #f8f8f5;
  border-radius: 24px;
}
.os-single-main-image img,
.os-single-main-image:hover img {
  transform: none !important;
}
.os-image-zoom-hint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  background: rgba(255,255,255,.92);
  color: var(--c-text);
  border-radius: 999px;
  padding: .45rem .8rem;
  font-size: .78rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.os-thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.os-thumb-btn {
  border-radius: 16px;
  overflow: hidden;
}
.os-thumb-btn.active {
  box-shadow: 0 0 0 2px var(--c-primary);
}
.os-variant-btn.is-disabled,
.os-variant-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  text-decoration: line-through;
}
.os-mini-cart-shipping-progress {
  margin: 0 0 .35rem;
  font-size: .8rem;
  color: var(--c-text);
}
.os-mini-cart-shipping-progress.is-free {
  color: var(--c-primary);
  font-weight: 600;
}
.os-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  isolation: isolate;
}
.os-lightbox[hidden] {
  display: none !important;
}
.os-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 24, .86);
}
.os-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 2rem));
  height: min(calc(100dvh - 2rem), 860px);
  margin: max(1rem, env(safe-area-inset-top)) auto max(1rem, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 1rem;
}
.os-lightbox-stage {
  grid-column: 2;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
}
.os-lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform-origin: center center;
  transition: transform .18s ease;
}
.os-lightbox-caption {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  color: #fff;
  font-size: .9rem;
}
.os-lightbox-help {
  opacity: .8;
}
.os-lightbox-nav,
.os-lightbox-close-btn {
  border: 0;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  backdrop-filter: blur(8px);
}
.os-lightbox-prev { grid-column: 1; }
.os-lightbox-next { grid-column: 3; }
.os-lightbox-close-btn {
  position: absolute;
  top: max(.5rem, env(safe-area-inset-top));
  right: max(.5rem, env(safe-area-inset-right));
  font-size: 1.8rem;
  z-index: 3;
}
body.os-no-scroll {
  overflow: hidden;
}
@media (max-width: 980px) {
  .os-single-detail-col {
    position: static;
  }
}
@media (max-width: 767px) {
  .os-product-card {
    border-radius: var(--os-design-card-radius, 16px);
  }
  .os-single-layout {
    gap: 1.5rem;
  }
  .os-image-zoom-hint {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: .75rem;
    font-size: .72rem;
  }
  .os-lightbox-dialog {
    width: calc(100vw - 1rem);
    height: calc(100dvh - 1rem);
    margin: .5rem auto;
    grid-template-columns: 44px 1fr 44px;
    gap: .5rem;
  }
  .os-lightbox-nav,
  .os-lightbox-close-btn {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
  .os-lightbox-caption {
    font-size: .8rem;
    padding-bottom: .5rem;
  }
}


/* ================================================================
   VERSION 1.6.5 KARTEN-FIX
   ================================================================ */
.os-product-card { min-width: 0; }
.os-product-card .os-card-link { min-width: 0; }
.os-card-image { aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.os-card-image img,
.os-card-image .os-card-image-img { position: static; inset: auto; width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; object-position: center center; }
.os-card-info { min-width: 0; }
.os-card-title { min-height: 2.6em; }


/* ================================================================
   VERSION 1.6.6 PRODUKTKARTE DOM + LESBARKEIT
   ================================================================ */
.os-product-card {
  display: flex;
  flex-direction: column;
}

.os-card-link {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
  text-decoration: none;
}

.os-card-image {
  flex: 0 0 auto;
  min-height: 220px;
}

.os-card-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}

.os-card-title {
  margin: 0;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.4;
  min-height: 2.8em;
  max-height: 2.8em;
  overflow: hidden;
}

.os-card-title .os-card-title-text {
  display: block;
  line-height: inherit;
  overflow: hidden;
}

.os-card-sku {
  margin: 0;
}

.os-card-price {
  margin-top: .45rem;
}

@media (max-width: 767px) {
  .os-card-image {
    min-height: 180px;
  }
}


/* ================================================================
   VERSION 1.6.7 PRODUKTKARTEN FEINSCHLIFF
   ================================================================ */
.os-product-grid {
  align-items: stretch;
}
.os-product-grid > .os-product-card {
  height: 100%;
}
.os-product-card {
  border-color: var(--c-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(17,24,39,.05);
}
.os-product-card:hover {
  box-shadow: 0 16px 34px rgba(17,24,39,.09);
}
.os-product-card .os-card-link {
  min-height: 100%;
}
.os-card-image {
  min-height: 260px;
  aspect-ratio: 1 / 1;
  padding: 1.25rem;
  background: #f5f5f1;
}
.os-card-info {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  gap: .4rem;
  padding: 1rem 1.05rem 1.1rem;
}
.os-card-title {
  display: block;
  min-height: auto;
  max-height: none;
  overflow: visible;
  margin: 0;
  line-height: 1.35;
}
.os-card-title .os-card-title-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: calc(1.35em * 2);
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  padding-top: .02em;
}
.os-card-sku {
  line-height: 1.3;
}
.os-card-price {
  align-self: start;
  line-height: 1.2;
}
.os-wishlist-btn {
  width: 34px;
  height: 34px;
  top: .75rem;
  right: .75rem;
  background: rgba(255,255,255,.96);
  box-shadow: 0 6px 14px rgba(0,0,0,.10);
}
@media (max-width: 1200px) {
  .os-card-image { min-height: 240px; }
}
@media (max-width: 767px) {
  .os-card-image { min-height: 210px; padding: 1rem; }
  .os-card-info { padding: .9rem .9rem 1rem; }
}
@media (max-width: 440px) {
  .os-card-image { min-height: 190px; }
}
