/* Lannertmarkt + Ille â€” catalog lane: Kategorie / Suche / Produktdetail / Produktkarte
   Tokens aus theme.css (--hi-red, --hi-dark â€¦), Prefix hc- damit nichts mit dem
   Header/Footer-Lane (hi-) kollidiert. */

.hc {
  --hc-border: #e2e3e6;
  --hc-muted: #6b6d72;
  --hc-surface: #f5f6f7;
  --hc-radius: var(--hi-radius, 6px);
  --hc-shadow: 0 2px 10px rgba(22, 24, 29, .08);
  font-family: 'Barlow', system-ui, sans-serif;
  color: #1f1f1f;
  padding-bottom: 56px;
}

.hc, .hc *, .hc *::before, .hc *::after,
.hc-card, .hc-card *, .hc-lightbox, .hc-lightbox * { box-sizing: border-box; }
.hc h1, .hc h2, .hc h3 { margin: 0; font-weight: 700; }
.hc img { max-width: 100%; }

/* ---------- breadcrumbs ---------- */
.hc-crumbs {
  display: flex; align-items: center; gap: 6px; flex-wrap: nowrap; list-style: none;
  margin: 16px 0 18px; padding: 0; font-size: 13px; color: var(--hc-muted); overflow: hidden;
}
.hc-crumbs li { display: flex; align-items: center; gap: 6px; min-width: 0; }
.hc-crumbs li + li::before { content: "\203A"; color: #b7b9be; }
.hc-crumbs a { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 280px; }
.hc-crumbs li:last-child a { color: #1f1f1f; font-weight: 600; }
/* the house icon of the first entry lives in theme.css (shared by all pages) */
@media (max-width: 767px) { .hc-crumbs a { max-width: 130px; } }

/* ---------- layout ---------- */
.hc-layout { display: grid; grid-template-columns: 264px minmax(0, 1fr); gap: 28px; align-items: start; }
.hc-layout--full { grid-template-columns: minmax(0, 1fr); }
@media (max-width: 991px) { .hc-layout { grid-template-columns: minmax(0, 1fr); gap: 14px; } }

.hc-title { font-size: 28px; font-weight: 700; margin-bottom: 6px; font-family: 'Archivo Black', 'Barlow', sans-serif; }
.hc-sub { color: var(--hc-muted); font-size: 14px; margin: 0 0 16px; }
.hc-desc { color: var(--hc-muted); font-size: 14px; line-height: 1.65; margin-bottom: 18px; }
.hc-section-title { font-size: 20px; font-weight: 700; margin: 36px 0 16px; font-family: 'Archivo Black', 'Barlow', sans-serif; }

/* ---------- buttons ---------- */
.hc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 44px; padding: 0 18px;
  border: 0; border-radius: var(--hc-radius); background: var(--hi-red, #d0111b); color: #fff;
  font: 600 14px/1 'Barlow', sans-serif; cursor: pointer; white-space: nowrap;
}
.hc-btn:hover { background: var(--hi-red-dark, #b00e16); color: #fff; }
.hc-btn--ghost { background: #fff; color: #1f1f1f; border: 1px solid var(--hc-border); }
.hc-btn--ghost:hover { background: var(--hc-surface); color: #1f1f1f; }
.hc-btn--block { width: 100%; margin-top: 12px; }

/* ---------- filters ---------- */
.hc-filters { position: relative; background: #fff; border: 1px solid var(--hc-border); border-radius: var(--hc-radius); padding: 18px; box-shadow: var(--hc-shadow); }
.hc-filters h3 { font-size: 12px; text-transform: uppercase; letter-spacing: .07em; color: var(--hc-muted); margin-bottom: 10px; }
.hc-fgroup + .hc-fgroup { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--hc-border); }
.hc-fgroup ul { list-style: none; margin: 0; padding: 0; }
.hc-fgroup li { margin-bottom: 7px; }
.hc-fgroup label { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }
.hc-fgroup input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--hi-red, #d0111b); flex: 0 0 auto; }
.hc-field {
  width: 100%; min-width: 0; height: 42px; padding: 0 10px; font: 400 14px/1 'Barlow', sans-serif;
  border: 1px solid var(--hc-border); border-radius: var(--hc-radius); background: #fff; color: #1f1f1f;
}
.hc-price-row { display: flex; align-items: center; gap: 8px; }
.hc-close { display: none; position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; align-items: center; justify-content: center; border: 0; background: var(--hc-surface); border-radius: 50%; font-size: 20px; cursor: pointer; }
.hc-filter-toggle { display: none; }
@media (max-width: 991px) {
  .hc-filter-toggle { display: inline-flex; }
  .hc-filters {
    position: fixed; top: 0; bottom: 0; left: 0; width: 86%; max-width: 360px; z-index: 1200;
    border-radius: 0; overflow: auto; transform: translateX(-102%); transition: transform .25s ease;
  }
  .hc-filters.is-open { transform: none; }
  .hc-filters .hc-close { display: flex; }
  .hc-filters .hc-filters__head { display: block; padding-right: 40px; }
  .hc-backdrop { position: fixed; inset: 0; background: rgba(0, 0, 0, .45); z-index: 1199; }
}

/* ---------- toolbar ---------- */
.hc-toolbar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: var(--hc-surface); border: 1px solid var(--hc-border); border-radius: var(--hc-radius);
  padding: 12px 14px; margin-bottom: 18px;
}
.hc-results { font-size: 14px; color: var(--hc-muted); margin-right: auto; }
.hc-select { display: flex; align-items: center; gap: 8px; }
.hc-select > span { font-size: 13px; color: var(--hc-muted); white-space: nowrap; }
.hc-select select {
  height: 42px; min-width: 190px; padding: 0 38px 0 12px; font: 400 14px/1 'Barlow', sans-serif;
  border: 1px solid var(--hc-border); border-radius: var(--hc-radius); background-color: #fff; color: #1f1f1f;
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236b6d72'><path d='M4 6l4 4 4-4z'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
}
.hc-select--limit select { min-width: 104px; }
@media (max-width: 575px) {
  .hc-results { flex: 1 0 100%; margin: 0 0 4px; }
  .hc-select { flex: 1 1 0; }
  .hc-select select { min-width: 0; width: 100%; }
  .hc-select > span { display: none; }
}

/* ---------- grid ---------- */
/* Flexbox statt Grid: das Listing l&auml;uft zusammen mit fremdem Theme-CSS
   (Tailwind/DaisyUI), Flex + feste Basis ist dagegen unempfindlich. */
.hc-grid { display: flex; flex-wrap: wrap; gap: 16px; align-items: stretch; }
.hc-grid > .hc-card { flex: 0 0 calc(25% - 13px); max-width: calc(25% - 13px); }
.hc-grid > :not(.hc-card), .hc-rel__track > :not(.hc-card) { display: none !important; }
@media (max-width: 1199px) {
  .hc-grid > .hc-card { flex-basis: calc(33.333% - 12px); max-width: calc(33.333% - 12px); }
}
@media (max-width: 767px) {
  .hc-grid { gap: 10px; }
  .hc-grid > .hc-card { flex-basis: calc(50% - 6px); max-width: calc(50% - 6px); }
}

/* ---------- product card ---------- */
.hc-card {
  position: relative; display: flex; flex-direction: column; height: 100%; background: #fff;
  border: 1px solid var(--hc-border); border-radius: var(--hc-radius); padding: 14px;
  transition: box-shadow .18s ease, border-color .18s ease;
}
.hc-card:hover { box-shadow: var(--hc-shadow); border-color: #cfd1d6; }
@media (max-width: 767px) { .hc-card { padding: 10px; } }
.hc-card__img { display: block; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 4px; }
.hc-card__img img { width: 100%; height: 100%; object-fit: contain; }
.hc-card__badge {
  position: absolute; top: 10px; left: 10px; z-index: 2; background: var(--hi-red, #d0111b); color: #fff;
  font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 3px; letter-spacing: .03em; text-transform: uppercase;
}
.hc-card__name {
  font-size: 14px; font-weight: 700; line-height: 1.35; margin: 12px 0 8px; text-align: center;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 38px;
}
.hc-stars { display: flex; justify-content: center; gap: 2px; font-size: 12px; line-height: 1; margin-bottom: 8px; color: var(--hi-red, #d0111b); }
.hc-stars .hc-off { color: #d5d7db; }
.hc-card__price { margin-top: auto; text-align: center; white-space: nowrap; }
.hc-card__price .hc-new { font-size: 18px; font-weight: 700; }
.hc-card__price .hc-old { font-size: 13px; color: #9a9da3; text-decoration: line-through; margin-left: 6px; }
.hc-card__tax { display: block; font-size: 11px; color: #9a9da3; }
.hc-card__actions { display: flex; align-items: stretch; gap: 8px; margin-top: 12px; }
.hc-cart-btn {
  flex: 1 1 auto; min-width: 0; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; border: 0; border-radius: var(--hc-radius); background: var(--hi-red, #d0111b); color: #fff;
  font: 600 14px/1 'Barlow', sans-serif; white-space: nowrap; cursor: pointer;
}
.hc-cart-btn:hover { background: var(--hi-red-dark, #b00e16); }
.hc-wish-btn {
  flex: 0 0 44px; width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--hc-border); border-radius: var(--hc-radius); background: #fff; color: #9a9da3;
  font-size: 16px; cursor: pointer; transition: all .15s ease;
}
.hc-wish-btn:hover { color: var(--hi-red, #d0111b); border-color: var(--hi-red, #d0111b); }
.hc-wish-btn.is-active { color: #fff; background: var(--hi-red, #d0111b); border-color: var(--hi-red, #d0111b); }
@media (max-width: 767px) {
  .hc-cart-btn span { display: none; }
  .hc-cart-btn { gap: 0; height: 40px; }
  .hc-wish-btn { flex-basis: 40px; width: 40px; height: 40px; }
  .hc-card__actions { gap: 6px; }
}

/* ---------- filter side bar (server side facets) ---------- */
.hc-filters__head { display: none; font: 700 16px/1 'Barlow', sans-serif; margin-bottom: 14px; }
.hc-fgroup > ul + .hc-more { margin-top: 4px; }
.hc-fgroup label > span { flex: 1 1 auto; min-width: 0; }
.hc-fgroup label > em { flex: 0 0 auto; font-style: normal; font-size: 12px; color: #9a9da3; }
.hc-fgroup input[type=radio] { width: 16px; height: 16px; accent-color: var(--hi-red, #d0111b); flex: 0 0 auto; }
.hc-flinks { list-style: none; margin: 0; padding: 0; }
.hc-flinks a { font-size: 14px; }
.hc-more > summary { font-size: 13px; font-weight: 600; color: var(--hi-red, #d0111b); cursor: pointer; padding: 4px 0; }
.hc-more[open] > summary { margin-bottom: 6px; }
.hc-more ul { list-style: none; margin: 0; padding: 0; }
.hc-price-row .hc-cur { font-size: 14px; color: var(--hc-muted); }
.hc-filters .hc-btn--block + .hc-btn--block { margin-top: 8px; }

/* ---------- card: availability line ---------- */
.hc-card__stock { font-size: 12px; font-weight: 600; color: #1f9d4d; text-align: center; margin-bottom: 8px; }
.hc-card__stock.is-out { color: #9a9da3; }

/* ---------- pagination ---------- */
.hc-pager { margin-top: 26px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hc-pagination { display: flex; flex-wrap: nowrap; justify-content: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.hc-pagination li > a, .hc-pagination li > span {
  display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px;
  border: 1px solid var(--hc-border); border-radius: var(--hc-radius); background: #fff; color: #1f1f1f;
  font-size: 14px; font-weight: 600;
}
.hc-pagination li.is-active > span { background: var(--hi-red, #d0111b); border-color: var(--hi-red, #d0111b); color: #fff; }
.hc-pagination li.hc-pg-gap > span { border-color: transparent; background: none; min-width: 20px; padding: 0; color: #9a9da3; }
.hc-pagination li > a:hover { border-color: var(--hi-red, #d0111b); color: var(--hi-red, #d0111b); }
.hc-pg-of { font-size: 13px; color: var(--hc-muted); }
@media (max-width: 575px) {
  .hc-pagination li.hc-pg-far { display: none; }
  .hc-pagination li > a, .hc-pagination li > span { min-width: 38px; padding: 0 8px; }
}

/* ---------- legacy pagination (reviews) ---------- */
.hc-pager-core { margin-top: 26px; }
.hc-pager .pagination { display: flex; flex-wrap: nowrap; justify-content: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.hc-pager .pagination li > a, .hc-pager .pagination li > span {
  display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px;
  border: 1px solid var(--hc-border); border-radius: var(--hc-radius); background: #fff; color: #1f1f1f;
  font-size: 14px; font-weight: 600;
}
.hc-pager .pagination li.active > a, .hc-pager .pagination li.active > span, .hc-pager .pagination li > span {
  background: var(--hi-red, #d0111b); border-color: var(--hi-red, #d0111b); color: #fff;
}
.hc-pager .pagination li > a:hover { border-color: var(--hi-red, #d0111b); color: var(--hi-red, #d0111b); }

/* ---------- empty ---------- */
.hc-empty { text-align: center; padding: 48px 16px; background: var(--hc-surface); border-radius: var(--hc-radius); margin-bottom: 24px; }
.hc-empty i { font-size: 34px; color: #c8cbd0; }
.hc-empty h3 { font-size: 20px; margin: 14px 0 6px; }
.hc-empty p { color: var(--hc-muted); font-size: 14px; margin: 0; }

/* =====================  PRODUKTSEITE  ===================== */
.hc-product { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: 36px; align-items: start; }
@media (max-width: 991px) { .hc-product { grid-template-columns: minmax(0, 1fr); gap: 20px; } }

.hc-gallery { --hc-stage-h: min(52vh, 470px); }
.hc-gallery__stage {
  position: relative; background: #fff; border: 1px solid var(--hc-border); border-radius: var(--hc-radius);
  aspect-ratio: 1 / 1; overflow: hidden; display: flex; align-items: center; justify-content: center; cursor: zoom-in;
}
/* Ab Tablet: Bühne flacher und auf Bildschirmhöhe gedeckelt, damit die Galerie
   samt Thumbnails ohne Scrollen ins Fenster passt. */
@media (min-width: 768px) {
  .hc-gallery__stage { aspect-ratio: 4 / 3; max-height: var(--hc-stage-h); }
  /* Die Buehne wird durch max-height schmaler als die Spalte. Damit der
     Miniaturenstreifen nicht rechts ueber das Hauptbild hinausragt, bekommt
     die ganze Galerie dieselbe Deckelung (Hoehe x 4/3). */
  .hc-gallery { max-width: calc(var(--hc-stage-h) * 4 / 3); }
}
.hc-gallery__stage img { max-width: 92%; max-height: 92%; object-fit: contain; }
.hc-gnav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid var(--hc-border); background: rgba(255, 255, 255, .96); color: #1f1f1f;
  font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--hc-shadow);
}
.hc-gnav--prev { left: 10px; } .hc-gnav--next { right: 10px; }
.hc-gnav:hover { background: var(--hi-red, #d0111b); color: #fff; border-color: var(--hi-red, #d0111b); }
/* Miniaturenstreifen: genau 5 Bilder pro Ansicht. Die Pfeile stehen in eigenen
   Spalten neben dem Streifen, damit sie keine Miniatur ueberdecken. */
.hc-thumbstrip { --hc-tgap: 10px; display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; margin-top: 12px; }
.hc-thumbstrip.is-scrollable { grid-template-columns: 30px minmax(0, 1fr) 30px; column-gap: 8px; }
.hc-thumbs {
  display: flex; gap: var(--hc-tgap); overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none;
  /* Platz fuer den Rahmen der aktiven Miniatur, sonst wird er vom Scroller beschnitten. */
  padding: 2px; scroll-snap-type: x mandatory; scroll-padding-inline: 2px;
}
.hc-thumbs::-webkit-scrollbar { display: none; }
.hc-thumbs button {
  /* 5 Miniaturen + 4 Abstaende; 1px Reserve gegen Sub-Pixel-Ueberlauf,
     sonst wird die fuenfte Miniatur um einen Bruchteil angeschnitten. */
  flex: 0 0 calc((100% - 4 * var(--hc-tgap) - 1px) / 5); aspect-ratio: 1 / 1; padding: 4px; cursor: pointer;
  box-sizing: border-box;
  border: 1px solid var(--hc-border); border-radius: 4px; background: #fff; scroll-snap-align: start;
}
.hc-thumbs button.is-active { border-color: var(--hi-red, #d0111b); box-shadow: 0 0 0 1px var(--hi-red, #d0111b); }
.hc-thumbs img { width: 100%; height: 100%; object-fit: contain; }
/* Streifen-Navigation: nur sichtbar, wenn mehr als 5 Bilder da sind. */
.hc-tnav {
  width: 30px; height: 30px; display: none; justify-self: center;
  align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--hc-border);
  background: rgba(255, 255, 255, .97); color: #1f1f1f; font-size: 12px; cursor: pointer; box-shadow: var(--hc-shadow);
}
.hc-thumbstrip.is-scrollable .hc-tnav { display: flex; }
.hc-tnav:hover:not([disabled]) { background: var(--hi-red, #d0111b); color: #fff; border-color: var(--hi-red, #d0111b); }
.hc-tnav[disabled] { opacity: .35; cursor: default; }

.hc-lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(15, 15, 17, .94); display: none; align-items: center; justify-content: center; }
body.hc-lb-open { overflow: hidden; }
.hc-lightbox.is-open { display: flex; }
.hc-lightbox img { max-width: 86vw; max-height: 84vh; object-fit: contain; }
.hc-lb-btn {
  position: absolute; width: 52px; height: 52px; border-radius: 50%; border: 0; background: #fff; color: #15161a;
  font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.hc-lb-btn:hover { background: var(--hi-red, #d0111b); color: #fff; }
.hc-lb-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.hc-lb-next { right: 3vw; top: 50%; transform: translateY(-50%); }
.hc-lb-close { top: 3vh; right: 3vw; }

.hc-brandline { font-size: 13px; color: var(--hc-muted); margin-bottom: 6px; }
.hc-brandline a { color: var(--hi-red, #d0111b); font-weight: 600; }
.hc-h1 { font-size: 26px; font-weight: 700; line-height: 1.25; margin-bottom: 10px; font-family: 'Archivo Black', 'Barlow', sans-serif; }
.hc-meta { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 13px; color: var(--hc-muted); margin-bottom: 16px; }
.hc-instock { color: #1f9d4d; font-weight: 700; }
.hc-pricebox { background: var(--hc-surface); border-radius: var(--hc-radius); padding: 18px; margin-bottom: 16px; }
.hc-pricebox .hc-old { font-size: 15px; color: #9a9da3; text-decoration: line-through; }
.hc-pricebox .hc-new { font-size: 32px; font-weight: 700; display: block; line-height: 1.2; font-family: 'Archivo Black', 'Barlow', sans-serif; }
.hc-note { font-size: 12px; color: var(--hc-muted); }
.hc-discounts { list-style: none; margin: 10px 0 0; padding: 0; font-size: 13px; color: var(--hc-muted); }

.hc-buybar { display: flex; align-items: stretch; gap: 10px; flex-wrap: nowrap; margin: 16px 0 8px; }
.hc-qty { display: inline-flex; align-items: stretch; border: 1px solid var(--hc-border); border-radius: var(--hc-radius); overflow: hidden; background: #fff; flex: 0 0 auto; }
.hc-qty button { width: 42px; border: 0; background: #fff; color: #1f1f1f; font-size: 18px; cursor: pointer; line-height: 1; }
.hc-qty button:hover { background: var(--hc-surface); color: var(--hi-red, #d0111b); }
.hc-qty input { width: 52px; border: 0; border-left: 1px solid var(--hc-border); border-right: 1px solid var(--hc-border); text-align: center; font: 700 15px/1 'Barlow', sans-serif; border-radius: 0; }
.hc-buybar .hc-cart-btn { height: 48px; flex: 1 1 auto; font-size: 15px; }
.hc-buybar .hc-cart-btn span { display: inline; }
.hc-buybar .hc-wish-btn { flex: 0 0 48px; width: 48px; height: 48px; }

/* Rutine 9 (mobil): "- n +", Herz und Warenkorb in einer Zeile, Button ohne Text */
@media (max-width: 767px) {
  .hc-buybar { gap: 8px; margin: 14px 0 8px; }
  .hc-buybar .hc-cart-btn span { display: none; }
  .hc-buybar .hc-cart-btn { gap: 0; height: 44px; }
  .hc-buybar .hc-wish-btn { flex: 0 0 44px; width: 44px; height: 44px; }
  .hc-qty button { width: 38px; font-size: 17px; }
  .hc-qty input { width: 44px; }
}

.hc-options { margin: 16px 0; }
.hc-opt { margin-bottom: 14px; }
.hc-lbl { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.hc-opt select, .hc-opt input[type=text], .hc-opt textarea {
  width: 100%; min-height: 44px; padding: 10px 12px; font: 400 14px/1.3 'Barlow', sans-serif;
  border: 1px solid var(--hc-border); border-radius: var(--hc-radius); background: #fff;
}
.hc-choice { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 6px; }
.hc-err { color: var(--hi-red, #d0111b); font-size: 12px; display: none; }
.hc-err.is-shown { display: block; }

/* ---------- tabs ---------- */
.hc-tabs { margin-top: 38px; }
.hc-tabs__nav { display: flex; gap: 4px; border-bottom: 2px solid var(--hc-border); }
.hc-tabs__nav button {
  border: 0; background: none; cursor: pointer; font: 700 15px/1 'Barlow', sans-serif; padding: 14px 20px;
  color: var(--hc-muted); border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap;
}
.hc-tabs__nav button.is-active { color: var(--hi-red, #d0111b); border-bottom-color: var(--hi-red, #d0111b); }
@media (max-width: 767px) {
  .hc-tabs__nav { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hc-tabs__nav button { padding: 12px 4px; font-size: 13px; white-space: normal; }
}
.hc-tabs__pane { display: none; padding: 22px 2px; font-size: 15px; line-height: 1.7; overflow: visible; }
.hc-tabs__pane.is-active { display: block; }
.hc-spec { width: 100%; border-collapse: collapse; font-size: 14px; }
.hc-spec th { text-align: left; background: var(--hc-surface); font-size: 13px; padding: 10px 12px; }
.hc-spec td { padding: 10px 12px; border-top: 1px solid var(--hc-border); vertical-align: top; }
.hc-spec td:first-child { color: var(--hc-muted); width: 42%; }
@media (max-width: 575px) {
  .hc-spec, .hc-spec thead, .hc-spec tbody, .hc-spec tr, .hc-spec td, .hc-spec th { display: block; width: auto; }
  .hc-spec td { border: 0; padding: 2px 0; }
  .hc-spec tr { border-top: 1px solid var(--hc-border); padding: 8px 0; }
  .hc-spec td:first-child { width: auto; font-size: 12px; }
}

/* review stars picker */
.hc-ratepick { display: inline-flex; gap: 6px; font-size: 24px; color: #d5d7db; cursor: pointer; }
.hc-ratepick i.is-on { color: var(--hi-red, #d0111b); }

/* ---------- Bewertungen ---------- */
.hc-review { border: 1px solid var(--hc-border); border-radius: var(--hc-radius); padding: 14px 16px; margin-bottom: 12px; background: #fff; }
.hc-review__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.hc-review__author { font-weight: 700; font-size: 15px; }
.hc-review__head .hc-stars { margin: 0; font-size: 13px; }
.hc-review__date { margin-left: auto; font-size: 12px; color: var(--hc-muted); }
.hc-review__text { margin: 0; font-size: 14px; line-height: 1.6; }
.hc-review-empty { color: var(--hc-muted); font-size: 14px; background: var(--hc-surface); border-radius: var(--hc-radius); padding: 18px; text-align: center; margin: 0; }
.hc-review-form { margin-top: 26px; border-top: 1px solid var(--hc-border); padding-top: 22px; max-width: 640px; }
.hc-review-form__title { font-size: 18px; font-weight: 700; margin-bottom: 14px; font-family: 'Archivo Black', 'Barlow', sans-serif; }
.hc-review-form input[type=text], .hc-review-form textarea {
  width: 100%; border: 1px solid var(--hc-border); border-radius: var(--hc-radius); padding: 10px 12px;
  font: 400 14px/1.4 'Barlow', sans-serif; background: #fff;
}
.hc-review-form .hc-err.is-shown { margin-top: 4px; }
.hc-review-form .hc-btn { margin-top: 6px; }
.hc-reviews .hc-pager { margin-top: 18px; }
.hc-tabs__pane .pagination { display: flex; gap: 6px; list-style: none; padding: 0; margin: 16px 0 0; justify-content: center; }
.hc-tabs__pane .pagination li > a, .hc-tabs__pane .pagination li > span {
  display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 10px;
  border: 1px solid var(--hc-border); border-radius: var(--hc-radius); font-size: 14px; font-weight: 600;
}
.hc-tabs__pane .pagination li > span { background: var(--hi-red, #d0111b); border-color: var(--hi-red, #d0111b); color: #fff; }

/* ---------- related slider ---------- */
.hc-rel { position: relative; }
.hc-rel__track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 4px; }
.hc-rel__track::-webkit-scrollbar { display: none; }
.hc-rel__track > .hc-card { flex: 0 0 calc((100% - 48px) / 4); scroll-snap-align: start; }
@media (max-width: 1199px) { .hc-rel__track > .hc-card { flex-basis: calc((100% - 32px) / 3); } }
@media (max-width: 767px) { .hc-rel__track { gap: 10px; } .hc-rel__track > .hc-card { flex-basis: calc((100% - 10px) / 2); } }
.hc-rel .hc-gnav { top: 42%; }
.hc-rel .hc-gnav--prev { left: -18px; } .hc-rel .hc-gnav--next { right: -18px; }
@media (max-width: 1100px) {
  .hc-rel .hc-gnav { width: 34px; height: 34px; font-size: 13px; }
  .hc-rel .hc-gnav--prev { left: -4px; } .hc-rel .hc-gnav--next { right: -4px; }
}
.hc-rel .hc-gnav[disabled] { opacity: .35; cursor: default; }

/* ---------- toast ---------- */
#hc-toast { position: fixed; right: 18px; bottom: 18px; z-index: 4000; display: flex; flex-direction: column; gap: 8px; }
#hc-toast div {
  background: var(--hi-dark, #2b2b2b); color: #fff; padding: 12px 16px; border-radius: var(--hc-radius);
  font: 600 14px/1.35 'Barlow', sans-serif; box-shadow: 0 8px 24px rgba(0, 0, 0, .25); max-width: 320px;
}
#hc-toast div.is-err { background: var(--hi-red, #d0111b); }
