/** Shopify CDN: Minification failed

Line 955:1 Expected "}" to go with "{"

**/
/* Karten Helden – Design-System (Sections-Styles)
   In Shopify unter Assets ablegen und im theme.liquid einbinden:
   {{ 'karten-helden.css' | asset_url | stylesheet_tag }} */

:root {
  --kh-bg: #1b1d22;
  --kh-card: #24272d;
  --kh-elevated: #2b2f36;
  --kh-surface: #f7f7f8;
  --kh-fg: #f4f5f6;
  --kh-muted: #a3a8b2;
  --kh-border: #343941;
  --kh-primary: #e08a4a;
  --kh-primary-fg: #1b1d22;
  --kh-danger: #d8583f;
  --kh-radius: 12px;
  --kh-radius-lg: 18px;
  --kh-shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 12px 32px -18px rgba(0, 0, 0, 0.8);
  --kh-shadow-lift: 0 2px 4px rgba(0, 0, 0, 0.35), 0 24px 48px -24px rgba(0, 0, 0, 0.9);
  --kh-font-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --kh-font-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
}

.kh {
  background: var(--kh-bg);
  color: var(--kh-fg);
  font-family: var(--kh-font-body);
}
.kh h1, .kh h2, .kh h3 { font-family: var(--kh-font-display); letter-spacing: -0.02em; }
.kh a { color: inherit; text-decoration: none; }
.kh__container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.kh__section { padding: 64px 0; }
.kh__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.kh__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin: 0; }
.kh__sub { color: var(--kh-muted); margin: 8px 0 0; }
.kh__more { color: var(--kh-primary); font-weight: 600; font-size: 0.9rem; }
.kh__more:hover { text-decoration: underline; }

/* Buttons */
.kh-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--kh-radius); border: 0; cursor: pointer;
  background: var(--kh-primary); color: var(--kh-primary-fg);
  font-weight: 600; font-size: 0.95rem; padding: 12px 20px; width: 100%;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.kh-btn:hover { transform: translateY(-1px); }
.kh-btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }
.kh-btn--ghost { background: transparent; color: var(--kh-fg); border: 1px solid var(--kh-border); }
.kh-btn--auto { width: auto; }
.kh-btn--lg { padding: 16px 24px; font-size: 1rem; }

/* Hero */
.kh-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--kh-border); }
.kh-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.kh-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(27,29,34,0.97) 0%, rgba(27,29,34,0.86) 45%, rgba(27,29,34,0.45) 100%);
}
.kh-hero__inner { position: relative; padding: 96px 0; }
.kh-hero__badge {
  display: inline-block; border: 1px solid rgba(224,138,74,0.4); background: rgba(224,138,74,0.12);
  color: var(--kh-primary); border-radius: 999px; padding: 5px 12px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
}
.kh-hero__title { font-size: clamp(2.4rem, 6vw, 3.75rem); line-height: 1.04; margin: 20px 0 0; max-width: 16ch; }
.kh-hero__title span { color: var(--kh-primary); }
.kh-hero__text { color: var(--kh-muted); font-size: 1.1rem; line-height: 1.65; margin: 20px 0 0; max-width: 46ch; }
.kh-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* Kategorien */
.kh-cats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 32px; list-style: none; padding: 0; }
.kh-cats > li:first-child { grid-column: span 2; grid-row: span 2; }
.kh-cat {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 180px; height: 100%; border: 1px solid var(--kh-border);
  border-radius: var(--kh-radius-lg); overflow: hidden; padding: 20px;
}
.kh-cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.kh-cat:hover img { transform: scale(1.05); }
.kh-cat__veil { position: absolute; inset: 0; background: linear-gradient(to top, var(--kh-bg), rgba(27,29,34,0.7) 45%, rgba(27,29,34,0.1)); }
.kh-cat__body { position: relative; }
.kh-cat__name { font-size: 1.1rem; font-weight: 700; }
.kh-cat__text { display: block; color: var(--kh-muted); font-size: 0.88rem; margin-top: 4px; }

/* Produktraster */
.kh-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px; margin-top: 32px; list-style: none; padding: 0; }
.kh-card {
  display: flex; flex-direction: column; overflow: hidden; height: 100%;
  background: var(--kh-card); border: 1px solid var(--kh-border);
  border-radius: var(--kh-radius-lg); box-shadow: var(--kh-shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.kh-card:hover { transform: translateY(-4px); border-color: rgba(224,138,74,0.5); box-shadow: var(--kh-shadow-lift); }
.kh-card__media { position: relative; display: block; aspect-ratio: 1/1; background: var(--kh-surface); }
.kh-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform 0.3s ease; }
.kh-card:hover .kh-card__media img { transform: scale(1.04); }
.kh-badges { position: absolute; top: 12px; left: 12px; display: grid; gap: 6px; }
.kh-badge { border-radius: 6px; padding: 4px 8px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.kh-badge--new { background: var(--kh-primary); color: var(--kh-primary-fg); }
.kh-badge--sale { background: var(--kh-danger); color: #fff; }
.kh-badge--out { background: var(--kh-elevated); color: var(--kh-muted); }
.kh-card__body { display: flex; flex-direction: column; gap: 12px; padding: 16px; flex: 1; }
.kh-card__vendor { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--kh-muted); }
.kh-card__title { font-size:  1.1rem; font-weight: 600; line-height: 1.35; margin: 4px 0 0; }
.kh-card__title a:hover { color: var(--kh-primary); }
.kh-price { display: flex; align-items: baseline; gap: 8px; }
.kh-price__now { font-size: 1.1rem; font-weight: 700; }
.kh-price__old { font-size: 0.85rem; color: var(--kh-muted); text-decoration: line-through; }

/* Vorteile */
.kh-benefits { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; list-style: none; padding: 0; margin: 0; }
.kh-benefit { background: var(--kh-card); border: 1px solid var(--kh-border); border-radius: var(--kh-radius-lg); padding: 20px; box-shadow: var(--kh-shadow); }
.kh-benefit__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(224,138,74,0.12); color: var(--kh-primary); font-size: 1.2rem; }
.kh-benefit h3 { margin: 16px 0 0; font-size: 1rem; }
.kh-benefit p { margin: 6px 0 0; color: var(--kh-muted); font-size: 0.88rem; line-height: 1.6; }

/* Newsletter */
.kh-news { border: 1px solid var(--kh-border); background: var(--kh-card); border-radius: 24px; padding: 48px 24px; text-align: center; }
.kh-news__form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; max-width: 460px; margin: 28px auto 0; }
.kh-input {
  height: 48px; width: 100%; border-radius: var(--kh-radius); border: 1px solid var(--kh-border);
  background: var(--kh-elevated); color: var(--kh-fg); padding: 0 16px; font-size: 1rem;
}
.kh-input:focus { outline: none; border-color: var(--kh-primary); }

/* Produktseite */
.kh-product { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; }
.kh-gallery__main { border: 1px solid var(--kh-border); border-radius: var(--kh-radius-lg); overflow: hidden; background: var(--kh-surface); }
.kh-gallery__main img { width: 100%; aspect-ratio: 1/1; object-fit: contain; padding: 24px; display: block; }
.kh-thumbs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin-top: 16px; list-style: none; padding: 0; }
.kh-thumb { width: 100%; border: 1px solid var(--kh-border); border-radius: var(--kh-radius); overflow: hidden; background: var(--kh-surface); cursor: pointer; padding: 0; }
.kh-thumb[aria-current="true"] { border-color: var(--kh-primary); }
.kh-thumb img { width: 100%; aspect-ratio: 1/1; object-fit: contain; padding: 8px; display: block; }
.kh-product__title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 8px 0 0; line-height: 1.15; }
.kh-product__price { display: flex; align-items: baseline; gap: 12px; margin-top: 24px; }
.kh-product__price .kh-price__now { font-size: 1.9rem; }
.kh-stock { margin-top: 8px; font-size: 0.9rem; color: var(--kh-primary); }
.kh-stock--out { color: var(--kh-muted); }
.kh-qty { display: inline-flex; align-items: center; height: 48px; border: 1px solid var(--kh-border); border-radius: var(--kh-radius); background: var(--kh-elevated); margin-top: 24px; }
.kh-qty button { width: 48px; height: 48px; background: none; border: 0; color: var(--kh-muted); font-size: 1.1rem; cursor: pointer; }
.kh-qty button:hover { color: var(--kh-primary); }
.kh-qty input { width: 44px; text-align: center; background: none; border: 0; color: var(--kh-fg); font-weight: 600; }
.kh-select { height: 48px; width: 100%; border-radius: var(--kh-radius); border: 1px solid var(--kh-border); background: var(--kh-elevated); color: var(--kh-fg); padding: 0 12px; }
.kh-usps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 24px; list-style: none; padding: 0; }
.kh-usps li { display: flex; align-items: center; gap: 8px; border: 1px solid var(--kh-border); background: var(--kh-card); border-radius: var(--kh-radius); padding: 12px; font-size: 0.85rem; }
.kh-acc { margin-top: 40px; border-top: 1px solid var(--kh-border); }
.kh-acc details { border-bottom: 1px solid var(--kh-border); }
.kh-acc summary { cursor: pointer; padding: 16px 0; font-weight: 600; list-style: none; }
.kh-acc summary::-webkit-details-marker { display: none; }
.kh-acc__body { padding-bottom: 16px; color: var(--kh-muted); font-size: 0.9rem; line-height: 1.7; }
.kh-breadcrumb { font-size: 0.85rem; color: var(--kh-muted); padding-top: 24px; }
.kh-breadcrumb a:hover { color: var(--kh-primary); }

/* Filterleiste */
.kh-filters { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; background: var(--kh-card); border: 1px solid var(--kh-border); border-radius: var(--kh-radius-lg); padding: 16px; margin-top: 16px; }
.kh-filters label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--kh-muted); margin-bottom: 8px; }
.kh-empty { border: 1px dashed var(--kh-border); border-radius: var(--kh-radius-lg); padding: 48px; text-align: center; color: var(--kh-muted); }

@media (max-width: 989px) {
  .kh-grid, .kh-cats, .kh-benefits, .kh-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kh-cats > li:first-child { grid-column: span 2; grid-row: auto; }
  .kh-product { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .kh-hero__inner { padding: 64px 0; }
  .kh__section { padding: 48px 0; }
}
@media (max-width: 619px) {
  .kh-benefits, .kh-filters, .kh-usps { grid-template-columns: minmax(0, 1fr); }
  .kh-news__form { grid-template-columns: minmax(0, 1fr); }
}

/* Vollständiges Theme: Kopfzeile, Fußzeile, Warenkorb */
* { box-sizing: border-box; }
body.kh { margin: 0; min-height: 100vh; background: var(--kh-bg); }
.kh-skip { position: fixed; left: 12px; top: -80px; z-index: 100; background: var(--kh-primary); color: var(--kh-primary-fg); padding: 10px 14px; }
.kh-skip:focus { top: 12px; }
.kh-site-header { position: sticky; top: 0; z-index: 40; background: rgba(27,29,34,.96); border-bottom: 1px solid var(--kh-border); backdrop-filter: blur(12px); }
.kh-site-header__inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.kh-logo { font: 700 1.25rem var(--kh-font-display); white-space: nowrap; }
.kh-logo strong, .kh-footer__brand strong { color: var(--kh-primary); }
.kh-logo img { display: block; width: auto; height: auto; max-height: 48px; }
.kh-nav { display: flex; align-items: center; justify-content: center; gap: 24px; flex: 1; }
.kh-nav a:hover, .kh-header-actions a:hover { color: var(--kh-primary); }
.kh-header-actions { display: flex; align-items: center; gap: 16px; font-size: .9rem; }
.kh-footer { border-top: 1px solid var(--kh-border); padding: 56px 0 24px; color: var(--kh-muted); }
.kh-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.kh-footer h2, .kh-footer h3 { color: var(--kh-fg); margin: 0 0 14px; }
.kh-footer nav { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.kh-footer nav a:hover { color: var(--kh-primary); }
.kh-footer__bottom { border-top: 1px solid var(--kh-border); margin-top: 40px; padding-top: 20px; font-size: .82rem; }
.kh-cart { margin-top: 32px; }
.kh-cart__item { display: grid; grid-template-columns: 120px minmax(0,1fr) 100px auto; align-items: center; gap: 20px; border-bottom: 1px solid var(--kh-border); padding: 20px 0; }
.kh-cart__item img { display: block; width: 120px; height: 120px; object-fit: contain; background: var(--kh-surface); border-radius: var(--kh-radius); }
.kh-cart__item .kh-input { max-width: 90px; }
.kh-cart__total { display: flex; justify-content: flex-end; gap: 24px; font-size: 1.2rem; padding: 24px 0; }
.kh-cart__actions { display: flex; justify-content: flex-end; gap: 12px; }
.kh-page { max-width: 800px; }
.kh-rte { color: var(--kh-muted); line-height: 1.8; margin-top: 24px; }
@media (max-width: 749px) {
  .kh-site-header__inner { min-height: 64px; gap: 12px; }
  .kh-nav { display: none; }
  .kh-header-actions { margin-left: auto; }
  .kh-footer__grid { grid-template-columns: 1fr; }
  .kh-cart__item { grid-template-columns: 80px minmax(0,1fr); }
  .kh-cart__item img { width: 80px; height: 80px; }
  .kh-cart__item .kh-input, .kh-cart__item > strong { grid-column: 2; }
}
.kh-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.kh-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.kh-card__body .kh-price {
  margin-top: auto;
}
.kh-search-wrapper { position: relative; }

.kh-search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kh-search-toggle svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

.kh-search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 10px;
  z-index: 100;
  width: 280px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.kh-search-dropdown.kh-search-open { display: block; }

.kh-search-dropdown form {
  display: flex;
  gap: 6px;
  align-items: center;
}

.kh-search-dropdown input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #444;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.kh-search-dropdown input:focus {
  border-color: #888;
}

.kh-search-dropdown button[type="submit"] {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: bold;
}

.kh-cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.kh-cart-icon svg { stroke: #fff; width: 26px; height: 26px; }

.kh-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #f90;
  color: #000;
  border-radius: 50%;
  font-size: 11px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
/* Dropdown Navigation */
.kh-nav__item { position: relative; }
.kh-nav__link { display: flex; align-items: center; gap: 4px; }
.kh-nav__arrow { font-size: 0.7rem; transition: transform 0.2s; }

.kh-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--kh-card);
  border: 1px solid var(--kh-border);
  border-radius: var(--kh-radius);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  min-width: 200px;
  box-shadow: var(--kh-shadow);
  z-index: 100;
}

.kh-dropdown li a {
  display: block;
  padding: 10px 20px;
  color: var(--kh-fg);
  font-size: 0.95rem;
  transition: color 0.15s, background 0.15s;
}

.kh-dropdown li a:hover {
  color: var(--kh-primary);
  background: var(--kh-elevated);
}

/* Desktop: Hover öffnet Dropdown */
@media (min-width: 750px) {
  .kh-nav__item--has-dropdown:hover .kh-dropdown { display: block; }
  .kh-nav__item--has-dropdown:hover .kh-nav__arrow { transform: rotate(180deg); }
}

/* Mobil: Tap öffnet Dropdown */
@media (max-width: 749px) {
  .kh-nav { display: flex; flex-direction: column; }
  .kh-nav__item--has-dropdown.kh-open .kh-dropdown {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 16px;
  }
}


/* KH final: moderne Kollektionen auf Startseite + /collections */
.kh-modern-collections{padding:48px 0 28px;background:linear-gradient(180deg,rgba(5,11,18,.72),rgba(7,13,20,.96));border-bottom:1px solid var(--kh-border)}
.kh-modern-collections__title{margin:0 0 28px;font-family:var(--kh-font-display);font-size:clamp(2rem,3vw,2.65rem);line-height:1.08;color:#fff;font-weight:800;letter-spacing:-.035em}
.kh-modern-collections__grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:20px}
.kh-modern-collection-card{min-width:0;height:390px;border:1px solid rgba(255,255,255,.2);border-radius:18px;overflow:hidden;position:relative;background:#080d13;color:#fff;display:flex;flex-direction:column;transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease}
.kh-modern-collection-card:hover{transform:translateY(-5px);border-color:rgba(255,145,0,.7);box-shadow:0 18px 40px rgba(0,0,0,.32)}
.kh-modern-collection-card__media{position:absolute;inset:0}.kh-modern-collection-card__media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease}.kh-modern-collection-card:hover img{transform:scale(1.035)}
.kh-modern-collection-card__shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.02) 25%,rgba(4,8,13,.35) 55%,rgba(4,8,13,.98) 88%)}
.kh-modern-collection-card__placeholder{width:100%;height:100%;background:radial-gradient(circle at 50% 20%,#27364b,#080d13 65%)}
.kh-modern-collection-card__content{position:relative;z-index:2;margin-top:auto;text-align:center;padding:24px 14px 22px;display:flex;flex-direction:column;align-items:center;gap:13px}
.kh-modern-collection-card__title{font-family:var(--kh-font-display);font-weight:800;font-size:clamp(1.25rem,1.55vw,1.75rem);line-height:1.08;text-wrap:balance}
.kh-modern-collection-card__arrow{font-size:2rem;line-height:1;color:var(--kh-primary);font-weight:400}
@media(max-width:1100px){.kh-modern-collections__grid{grid-template-columns:repeat(3,1fr)}.kh-modern-collection-card{height:360px}}
@media(max-width:749px){.kh-modern-collections{padding:32px 0 20px}.kh-modern-collections__title{margin-bottom:20px;font-size:1.85rem}.kh-modern-collections__grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.kh-modern-collection-card{height:270px;border-radius:14px}.kh-modern-collection-card__content{padding:18px 8px 14px;gap:8px}.kh-modern-collection-card__title{font-size:1.08rem}.kh-modern-collection-card__arrow{font-size:1.55rem}}
@media(max-width:430px){.kh-modern-collection-card{height:245px}}

/* KH final: Burger links oben auf Mobil */
.kh-mobile-menu-toggle,.kh-mobile-menu{display:none}
@media(max-width:749px){
 .kh-site-header__inner{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:12px;min-height:64px}
 .kh-mobile-menu-toggle{display:flex;width:42px;height:42px;padding:9px;border:0;background:transparent;color:#fff;flex-direction:column;justify-content:center;gap:5px;cursor:pointer;grid-column:1}
 .kh-mobile-menu-toggle span{display:block;width:23px;height:2px;border-radius:2px;background:currentColor;transition:transform .2s,opacity .2s}
 .kh-mobile-menu-open .kh-mobile-menu-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
 .kh-mobile-menu-open .kh-mobile-menu-toggle span:nth-child(2){opacity:0}
 .kh-mobile-menu-open .kh-mobile-menu-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
 .kh-logo{grid-column:2;justify-self:start;font-size:1.15rem}.kh-logo img{max-width:160px}
 .kh-nav{display:none!important}.kh-header-actions{grid-column:3;margin:0;gap:10px}.kh-header-actions svg{width:24px;height:24px}
 .kh-mobile-menu{display:block;max-height:0;overflow:hidden;background:#171a1f;border-top:1px solid transparent;transition:max-height .28s ease,border-color .28s ease}
 .kh-mobile-menu-open .kh-mobile-menu{max-height:70vh;border-top-color:var(--kh-border);overflow:auto}
 .kh-mobile-menu nav{padding:8px 20px 18px}.kh-mobile-menu nav>a,.kh-mobile-menu summary{display:flex;justify-content:space-between;align-items:center;width:100%;padding:15px 4px;border-bottom:1px solid var(--kh-border);font-size:1.05rem;font-weight:700;color:#fff;cursor:pointer;list-style:none}
 .kh-mobile-menu summary::-webkit-details-marker{display:none}.kh-mobile-menu details[open] summary span{transform:rotate(180deg)}.kh-mobile-menu summary span{transition:transform .2s}
 .kh-mobile-submenu{padding:5px 0 8px 14px}.kh-mobile-submenu a{display:block;padding:11px 4px;color:var(--kh-muted);font-size:.98rem}.kh-mobile-submenu a:hover{color:var(--kh-primary)}
 .kh-search-dropdown{position:fixed;top:65px;left:14px;right:14px;width:auto}
}
/* Mobile Menü */
.kh-mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--kh-fg);
  order: -1;
}
.kh-mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--kh-fg);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.kh-mobile-menu {
  display: none;
  background: var(--kh-card);
  border-top: 1px solid var(--kh-border);
  padding: 12px 0;
}
.kh-mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
.kh-mobile-menu a {
  padding: 14px 0;
  border-bottom: 1px solid var(--kh-border);
  font-size: 1rem;
  font-weight: 600;
}
.kh-mobile-menu details > summary {
  padding: 14px 0;
  border-bottom: 1px solid var(--kh-border);
  font-size: 1rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.kh-mobile-menu details > summary::-webkit-details-marker { display: none; }
.kh-mobile-submenu {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
}
.kh-mobile-submenu a {
  font-size: 0.9rem;
  font-weight: 400;
  padding: 10px 0;
}

@media (max-width: 749px) {
  .kh-mobile-menu-toggle { display: flex; }
  .kh-site-header.kh-mobile-menu-open .kh-mobile-menu { display: block; }
}
/* Mobil: Produktbild-Höhe begrenzen */
@media (max-width: 749px) {
  .kh-card__media {
    aspect-ratio: 1 / 1;
    max-height: 200px;
    overflow: hidden;
  }
  .kh-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
/* Mobil: Produktbild Detailseite – kompakter */
@media (max-width: 749px) {
  .kh-gallery__main {
    max-height: 320px;
    aspect-ratio: auto;
  }
  .kh-gallery__main img {
    max-height: 320px;
    padding: 16px;
    object-fit: contain;
    object-position: center;
  }
}
/* =========================================================
   KARTEN HELDEN
   Mobile Kollektionen-Karussell NUR auf der Startseite
   Desktop und /collections bleiben unverändert
========================================================= */

@media (max-width: 749px) {

  .kh-modern-collections--homepage {
    overflow: hidden;
  }

  /*
   Wichtig:
   Der normale Container darf auf Mobile an dieser Stelle
   nicht das Karussell abschneiden.
  */
  .kh-modern-collections--homepage .kh__container {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .kh-modern-collections--homepage .kh-modern-collections__title {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 22px;
  }

  /*
   Horizontaler Swipe-Bereich
  */
  .kh-modern-collections--homepage .kh-modern-collections__grid {
    display: flex;
    grid-template-columns: none;

    gap: 14px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    /*
     Dadurch steht die aktive Karte mittig
     und links/rechts bleibt ein Stück sichtbar.
    */
    padding-left: 11vw;
    padding-right: 11vw;
    padding-bottom: 14px;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
  }

  .kh-modern-collections--homepage
  .kh-modern-collections__grid::-webkit-scrollbar {
    display: none;
  }

  /*
   Eine Karte nimmt ca. 78% des Displays ein.
   Dadurch sieht man links/rechts die Nachbarkarten.
  */
  .kh-modern-collections--homepage .kh-modern-collection-card {
    flex: 0 0 78vw;

    width: 78vw;
    max-width: 78vw;

    height: 440px;

    scroll-snap-align: center;
    scroll-snap-stop: always;

    border-radius: 18px;
  }

  .kh-modern-collections--homepage
  .kh-modern-collection-card__content {
    padding: 24px 14px 22px;
    gap: 12px;
  }

  .kh-modern-collections--homepage
  .kh-modern-collection-card__title {
    font-size: 1.55rem;
  }

  .kh-modern-collections--homepage
  .kh-modern-collection-card__arrow {
    font-size: 2rem;
  }

}


/* Kleinere Smartphones */

@media (max-width: 430px) {

  .kh-modern-collections--homepage
  .kh-modern-collections__grid {
    padding-left: 10vw;
    padding-right: 10vw;
    gap: 12px;
  }

  .kh-modern-collections--homepage
  .kh-modern-collection-card {
    flex-basis: 80vw;
    width: 80vw;
    max-width: 80vw;

    height: 410px;
  }

}/* =========================================================
   KARTEN HELDEN – KOLLEKTIONEN PREMIUM HEADER
   Verändert NICHT das vorhandene Karussell
========================================================= */

.kh-modern-collections__heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 28px;
}

.kh-modern-collections__heading-copy {
  max-width: 680px;
}

.kh-modern-collections__eyebrow {
  display: inline-block;
  margin-bottom: 9px;

  color: #ff7900;

  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.kh-modern-collections__heading-row
.kh-modern-collections__title {
  margin: 0 0 8px;
}

.kh-modern-collections__subtitle {
  margin: 0;

  color: rgba(255,255,255,.62);

  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.kh-modern-collections__all {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  flex-shrink: 0;

  padding-bottom: 5px;

  color: rgba(255,255,255,.8);

  font-size: 13px;
  font-weight: 700;

  text-decoration: none;

  transition:
    color .2s ease,
    transform .2s ease;
}

.kh-modern-collections__all span {
  color: #ff7900;
  font-size: 19px;

  transition: transform .2s ease;
}

.kh-modern-collections__all:hover {
  color: #ffffff;
}

.kh-modern-collections__all:hover span {
  transform: translateX(4px);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 749px) {

  .kh-modern-collections__heading-row {
    align-items: flex-end;

    padding-left: 20px;
    padding-right: 20px;

    margin-bottom: 20px;
    gap: 12px;
  }

  .kh-modern-collections__heading-copy {
    min-width: 0;
  }

  .kh-modern-collections__eyebrow {
    margin-bottom: 7px;

    font-size: 9px;
    letter-spacing: 1.3px;
  }

  .kh-modern-collections__heading-row
  .kh-modern-collections__title {
    padding: 0;
    margin: 0 0 5px;

    font-size: 1.7rem;
    line-height: 1.05;
  }

  .kh-modern-collections__subtitle {
    font-size: 11px;
    line-height: 1.4;
  }

  .kh-modern-collections__all {
    font-size: 11px;
    padding-bottom: 3px;
    white-space: nowrap;
  }

  .kh-modern-collections__all span {
    font-size: 16px;
  }

/* Kollektions-Karten: einheitlicher Zuschnitt mobile & desktop */
.kh-modern-collection-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.kh-modern-collection-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 749px) {
  .kh-modern-collection-card__media {
    aspect-ratio: 4 / 3;
  }
}
/* Produktkarten-Bilder: weißer Hintergrund */
.kh-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ffffff;
}

.kh-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
/* Kollektions-Karten: Bild füllt immer den ganzen Rahmen */
.kh-modern-collection-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.kh-modern-collection-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 749px) {
  .kh-modern-collection-card__media {
    aspect-ratio: 1 / 1;
  }
}

/* =========================================================
   KARTEN HELDEN – LOGO GRÖSSE ERZWINGEN
========================================================= */

/* Desktop */
.kh-site-header .kh-logo,
.kh-site-header .kh-logo a {
  width: 320px !important;
  max-width: 320px !important;
  display: block !important;
}

.kh-site-header .kh-logo img,
.kh-logo img,
header .kh-logo img {
  width: 320px !important;
  max-width: 320px !important;
  min-width: 320px !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
}

.kh-site-header__inner {
  min-height: 105px !important;
}

/* Mobile */
@media (max-width: 749px) {
  .kh-site-header .kh-logo,
  .kh-site-header .kh-logo a {
    width: 220px !important;
    max-width: 220px !important;
  }

  .kh-site-header .kh-logo img,
  .kh-logo img,
  header .kh-logo img {
    width: 220px !important;
    max-width: 220px !important;
    min-width: 220px !important;
    height: auto !important;
    max-height: none !important;
  }

  .kh-site-header__inner {
    min-height: 82px !important;
  }
}


/* =========================================================
   KARTEN HELDEN – KOLLEKTIONSBILDER GANZFLÄCHIG
   Fix: Bild füllt den kompletten Kartenrahmen aus
========================================================= */

.kh-modern-collection-card {
  position: relative !important;
  overflow: hidden !important;
}

.kh-modern-collection-card__media {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
}

.kh-modern-collection-card__media img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  padding: 0 !important;
}

/* Pokémon-Bild leicht stärker zoomen, damit wirklich kein Rand bleibt */
.kh-modern-collection-card__media img[alt*="Pokémon"],
.kh-modern-collection-card__media img[alt*="Pokemon"],
.kh-modern-collection-card__media img[alt*="pokémon"],
.kh-modern-collection-card__media img[alt*="pokemon"] {
  transform: scale(1.08) !important;
}

/* Hover bleibt dezent */
.kh-modern-collection-card:hover .kh-modern-collection-card__media img[alt*="Pokémon"],
.kh-modern-collection-card:hover .kh-modern-collection-card__media img[alt*="Pokemon"],
.kh-modern-collection-card:hover .kh-modern-collection-card__media img[alt*="pokémon"],
.kh-modern-collection-card:hover .kh-modern-collection-card__media img[alt*="pokemon"] {
  transform: scale(1.12) !important;
}

/* Mobile ebenfalls vollflächig */
@media (max-width: 749px) {
  .kh-modern-collection-card__media {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
  }
}

/* =========================================================
   POKÉMON KATEGORIE – BILD RAND ENTFERNEN
========================================================= */

/* Pokémon über den Link erkennen */
.kh-modern-collection-card[href*="pokemon"]
.kh-modern-collection-card__media img,

.kh-modern-collection-card[href*="Pokemon"]
.kh-modern-collection-card__media img {

  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;

  /* stärker reinzoomen */
  transform: scale(1.22) !important;

  /* Bild etwas nach oben ziehen */
  transform-origin: center center !important;
}

/* Falls Pokémon die zweite Karte im Karussell ist */
.kh-modern-collections__grid
> *:nth-child(2)
.kh-modern-collection-card__media img {

  transform: scale(1.22) translateY(-3%) !important;
}

/* Hover */
.kh-modern-collection-card[href*="pokemon"]:hover
.kh-modern-collection-card__media img,

.kh-modern-collections__grid
> *:nth-child(2):hover
.kh-modern-collection-card__media img {

  transform: scale(1.26) translateY(-3%) !important;
}