/** Shopify CDN: Minification failed

Line 40:10 Expected identifier but found whitespace
Line 40:11 Unexpected "clamp("

**/
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&display=swap');

.nett-collection {
  --nc-font: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nc-ink: #121212;
  --nc-muted: rgba(18, 18, 18, 0.65);
  --nc-yellow: #ffe600;
  --nc-yellow-strong: #ffd100;
  --nc-dark: #0f0f0f;
  --nc-panel: #ffffff;
  --nc-panel-tint: linear-gradient(135deg, #fffef7 0%, #fff5c2 85%);
  --nc-panel-mist: linear-gradient(145deg, #f9fbff 0%, #ffffff 100%);
  --nc-panel-slate: linear-gradient(120deg, #1b1b1b 0%, #050505 85%);
  --nc-border: 1px solid rgba(0, 0, 0, 0.05);
  --nc-shadow-hard: 0 35px 70px rgba(0, 0, 0, 0.16);
  --nc-shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.06);
  font-family: var(--nc-font);
  background: linear-gradient(130deg, #fdfcf8 0%, #f5f4ff 50%, #fffef7 100%);
  padding: clamp(1.8rem, 4vw, 4rem);
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  color: var(--nc-ink);
}

.nett-collection > * {
  position: relative;
  z-index: 1;
}


  padding: clamp(1.5rem, 3vw, 3rem);
  position: relative;
  overflow: hidden;
}

.nett-collection::before,
.nett-collection::after {
  content: '';
  position: absolute;
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
}

.nett-collection::before {
  width: 460px;
  height: 460px;
  top: -120px;
  right: -60px;
  background: radial-gradient(circle, rgba(255, 230, 0, 0.5), transparent 70%);
}

.nett-collection::after {
  width: 320px;
  height: 320px;
  bottom: -120px;
  left: -70px;
  background: radial-gradient(circle, rgba(15, 15, 15, 0.18), transparent 70%);
}

.nett-collection * {
  font-family: var(--nc-font) !important;
  box-sizing: border-box;
}

.nett-collection,
.nett-collection p,
.nett-collection li {
  color: rgba(18, 18, 18, 0.82);
}

.nett-collection h1,
.nett-collection h2,
.nett-collection h3 {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #121212;
}

.nett-collection .section-label,
.nett-collection .facet-filters__label,
.nett-collection .facets__heading,
.nett-collection .facets__summary,
.nett-collection label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--nc-muted);
}

.nett-collection .facets-vertical-sort,
.nett-collection .facets-wrapper,
.nett-collection .facets-vertical-form,
.nett-collection .facets-vertical .facets {
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 247, 0.92));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  z-index: 5;
}


.nett-collection .facets__summary,
.nett-collection .facets__disclosure {
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(8px);
}

.nett-collection .facets__summary::after {
  content: '⌄';
  font-size: 0.92rem;
  color: rgba(17, 17, 17, 0.7);
}

.nett-collection .facet-checkbox {
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.6rem 0.9rem;
  background: rgba(0, 0, 0, 0.02);
  color: rgba(17, 17, 17, 0.82);
  backdrop-filter: blur(4px);
}

.nett-collection .facet-checkbox:checked {
  border-color: transparent;
  background: linear-gradient(120deg, var(--nc-yellow), var(--nc-yellow-strong));
  color: var(--nc-dark);
  box-shadow: 0 15px 28px rgba(255, 230, 0, 0.35);
}

.nett-collection .product-count-vertical {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.nett-collection .product-grid-container {
  margin-top: clamp(1.5rem, 3vw, 2.8rem);
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: clamp(1.5rem, 3.5vw, 3rem);
  background: #ffffff;
  box-shadow: var(--nc-shadow-hard);
  position: relative;
}

.nett-collection .product-grid-container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 20%, rgba(255, 230, 0, 0.22), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.3), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.nett-collection .product-grid-container::after {
  content: '';
  position: absolute;
  inset: 22px;
  border-radius: 32px;
  border: 1px dashed rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.nett-collection .collection {
  background: transparent;
  border: none;
  box-shadow: none;
}

.nett-collection #product-grid {
  gap: clamp(1rem, 2vw, 2rem);
  justify-content: center;
  justify-items: center;
}

.nett-collection .grid__item {
  padding: 0;
}

.nett-collection .grid__item:nth-child(5n) {
  grid-column: span 2;
}

.nett-collection .card-product {
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 50%, #ffefb6 110%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.nett-collection .card-product::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
  opacity: 0.4;
}

.nett-collection #product-grid li:nth-child(3n) .card-product {
  background: linear-gradient(135deg, #2b2b2b 0%, #111111 90%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.35);
}

.nett-collection #product-grid li:nth-child(5n) .card-product {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(120deg, #fff7d6, #fffefa);
}

.nett-collection #product-grid li:nth-child(5n) .card__inner {
  aspect-ratio: auto;
  height: 100%;
}

.nett-collection #product-grid li:nth-child(5n) .card-product::before {
  inset: 18px;
}

.nett-collection #product-grid li:nth-child(5n) .card-product__title {
  font-size: 1.6rem;
}

.nett-collection #product-grid li:nth-child(3n) .card-product::before {
  border-color: rgba(255, 255, 255, 0.3);
}

.nett-collection .card-product:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

/* Produkttexte zentrieren */
.nett-collection #product-grid .card__content,
.nett-collection #product-grid .card__information,
.nett-collection #product-grid .card-information {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center !important;
  width: 100%;
}

.nett-collection #product-grid .card__heading,
.nett-collection #product-grid .card__heading a,
.nett-collection #product-grid .price,
.nett-collection #product-grid .price__container,
.nett-collection #product-grid .price-item {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.nett-collection #product-grid .card__content {
  position: static !important;
  margin-top: 0.8rem;
}

.nett-collection .card__inner {
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #fefefe, #f4f4f4);
  padding: 0.5rem;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.nett-collection .card__media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.06);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0.04));
}

.nett-collection .card__media img,
.nett-collection .card__media picture,
.nett-collection .card__media video,
.nett-collection .card__media svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.nett-collection .card-product:hover .card__media img,
.nett-collection .card-product:hover .card__media picture,
.nett-collection .card-product:hover .card__media video,
.nett-collection .card-product:hover .card__media svg {
  transform: scale(1.02);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.08));
}

.nett-collection .card__badge {
  border-radius: 999px;
  padding: 0.35rem 1rem;
  background: linear-gradient(120deg, var(--nc-yellow), var(--nc-yellow-strong));
  color: #0f0f0f !important;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 18px 32px rgba(255, 230, 0, 0.35);
}

.nett-collection .card-product__title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.nett-collection .card-information__text {
  color: var(--nc-muted);
  font-size: 0.95rem;
}

.nett-collection #product-grid li:nth-child(3n) .card-product__title,
.nett-collection #product-grid li:nth-child(3n) .card-information__text,
.nett-collection #product-grid li:nth-child(3n) .price {
  color: rgba(255, 255, 255, 0.92);
}

.nett-collection #product-grid li:nth-child(3n) .card-information__text {
  color: rgba(255, 255, 255, 0.78);
}

.nett-collection .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--nc-ink);
}

.nett-collection .card__content .button,
.nett-collection .quick-add__submit {
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  background: var(--nc-dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.nett-collection #product-grid li:nth-child(3n) .card__content .button,
.nett-collection #product-grid li:nth-child(3n) .quick-add__submit {
  background: linear-gradient(120deg, var(--nc-yellow), var(--nc-yellow-strong));
  color: #0f0f0f;
  box-shadow: 0 18px 35px rgba(255, 230, 0, 0.35);
}

.nett-collection .card__content .button::after,
.nett-collection .quick-add__submit::after {
  content: '→';
  font-size: 1rem;
}

.nett-collection .pagination {
  border-radius: 28px;
  border: var(--nc-border);
  background: var(--nc-panel);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--nc-shadow-soft);
  display: inline-flex;
  gap: 0.4rem;
}

.nett-collection .pagination__item {
  border-radius: 999px;
  padding: 0.4rem 1rem;
  border: 1px solid transparent;
  font-weight: 600;
}

.nett-collection .pagination__item--current,
.nett-collection .pagination__item:hover {
  background: linear-gradient(120deg, var(--nc-yellow), var(--nc-yellow-strong));
  color: #0f0f0f;
  border-color: transparent;
  box-shadow: 0 15px 30px rgba(255, 230, 0, 0.35);
}

.nett-collection .chip-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.nett-collection .chip {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  background: rgba(0, 0, 0, 0.02);
  letter-spacing: 0.1em;
}

.nett-collection .loading-overlay.gradient {
  border-radius: 32px;
}

@media (max-width: 900px) {
  .nett-collection {
    padding: 1.2rem;
  }

  .nett-collection .facets-vertical-sort,
  .nett-collection .facets-wrapper,
  .nett-collection .product-grid-container {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .nett-collection .product-grid-container::after {
    inset: 12px;
    border-radius: 20px;
  }

  .nett-collection .card-product {
    padding: 1rem;
  }
}

@media (max-width: 640px) {
  .nett-collection .product-grid-container {
    padding: 1rem;
  }

  .nett-collection #product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .nett-collection .grid__item,
  .nett-collection .grid__item > * {
    width: 100%;
    height: 100%;
  }

  .nett-collection .grid__item {
    display: flex;
  }

  .nett-collection .grid__item > * {
    flex: 1 1 auto;
  }

  .nett-collection .grid__item:nth-child(5n) {
    grid-column: span 1;
  }

  .nett-collection .card-product {
    height: 100%;
  }

  .nett-collection #product-grid li:nth-child(5n) .card-product {
    display: flex;
    flex-direction: column;
    padding: 1rem;
  }

  .nett-collection #product-grid li:nth-child(5n) .card__inner {
    aspect-ratio: 1 / 1;
    height: auto;
  }


  .nett-collection .card-product::before {
    display: none;
  }

  .nett-collection .card__inner {
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nett-collection .card__media {
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nett-collection .card-product__title {
    font-size: 1.05rem;
  }

  .nett-collection .card-information__text {
    font-size: 0.85rem;
  }

  .nett-collection .price {
    font-size: 0.95rem;
  }

}

/* Produkttexte im Raster zentrieren */
.nett-collection #product-grid .card-information,
.nett-collection #product-grid .card__information,
.nett-collection #product-grid .card-information__wrapper,
.nett-collection #product-grid .card-information__meta,
.nett-collection #product-grid .card-information .card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center !important;
  width: 100%;
}

.nett-collection #product-grid .card__heading,
.nett-collection #product-grid .card__heading a,
.nett-collection #product-grid .price,
.nett-collection #product-grid .price__container,
.nett-collection #product-grid .price-item {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Mehrere Produktbilder im Grid übereinander legen */
.nett-collection .media--hover-carousel {
  position: relative;
}

.nett-collection .media--hover-carousel .product-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* aktives Bild sichtbar */
.nett-collection .media--hover-carousel .product-card-image.is-active {
  position: relative;
  opacity: 1;
}

/* Fix: nur erstes Bild zeigen, kein Hover-Wechsel */
.media--hover-carousel .product-card-image {
  display: none !important;
  opacity: 1 !important;
}
.media--hover-carousel .product-card-image:first-of-type {
  display: block !important;
  position: relative !important;
}
.nett-collection #product-grid li:nth-child(4n) .card-product {
  background: linear-gradient(135deg, #fff7d6 0%, #ffd36a 65%, #fffef7 100%);
  border-color: rgba(255, 230, 0, 0.35);
  box-shadow: 0 30px 60px rgba(255, 200, 0, 0.25);
}
.nett-collection-hero {
  margin: clamp(0.6rem, 2vw, 1.2rem) auto clamp(2rem, 4vw, 3.5rem);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(120deg, #181818, #050505 80%);
  box-shadow: 0 50px 110px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #ffffff;
}

.nett-collection-hero,
.nett-collection-hero * {
  color: #ffffff !important;
}

.nett-collection-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 20%, rgba(255, 230, 0, 0.28), transparent 55%),
    radial-gradient(circle at 80% -10%, rgba(255, 255, 255, 0.25), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.nett-collection-hero::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.nett-collection-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 0.8rem;
}

.nett-collection-hero__title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin: 0 0 1rem;
  color: #ffffff;
}

.nett-collection-hero__lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 780px;
  margin: 0 auto;
}

.nett-collection::before,
.nett-collection::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nett-collection::before {
  background: radial-gradient(circle at 80% -20%, rgba(255, 230, 0, 0.3), transparent 60%),
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.35), transparent 50%);
  opacity: 0.7;
}

.nett-collection::after {
  background: radial-gradient(circle at 20% 120%, rgba(255, 230, 0, 0.2), transparent 60%),
    radial-gradient(circle at 120% 80%, rgba(255, 255, 255, 0.25), transparent 50%);
  opacity: 0.5;
}

/* Hover-Effekt für Produktbilder */
.nett-collection #product-grid .card-product .product-card-image,
.nett-collection #product-grid .card-product .card__media img,
.nett-collection #product-grid .card-product .card__media picture img {
  transition: transform 220ms ease, filter 220ms ease;
}

.nett-collection #product-grid .card-product:hover .product-card-image.is-active,
.nett-collection #product-grid .card-product:hover .card__media img,
.nett-collection #product-grid .card-product:hover .card__media picture img {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.08));
}

/* Fallback: hebe die gesamte Medienfläche leicht an */
.nett-collection #product-grid .card-product .card__inner {
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.nett-collection #product-grid .card-product:hover .card__inner {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}
