/** Shopify CDN: Minification failed

Line 188:0 Unexpected "}"

**/
/* ===== Ticker ===== */
.lp-ticker{
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 42px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#f3f3f3;
  border-bottom:1px solid rgba(0,0,0,.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
}
.lp-ticker__track{ display:flex; width:100%; white-space:nowrap; }
.lp-ticker__inner{
  display:inline-flex;
  gap:32px;
  padding-left:24px;
  animation: lp-marquee 18s linear infinite;
}
.lp-ticker__item{ opacity:.9; }
@keyframes lp-marquee{ from{transform:translateX(0)} to{transform:translateX(-100%)} }

/* ===== Hero ===== */
.lp-hero{
  position:relative;
  height:100vh;
  min-height:100vh;
  overflow:hidden;
}
.lp-hero__media{ position:absolute; inset:0; }
.lp-hero__video,
.lp-hero__fallback{
  width:100%;
  height:100%;
  object-fit:cover;
}
.lp-hero__fallback{ background:#111; }
.lp-hero__scrim{
  position:absolute;
  inset:0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.15), rgba(0,0,0,.55));
}
.lp-hero__content{
  position:relative;
  z-index:2;
  height:100%;
  display:grid;
  align-content:center;
  justify-items:center;
  text-align:center;
  gap:12px;
  color:#fff;
  padding-top: 90px;
}
.lp-hero__mini{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  opacity:.9;
}
.lp-hero__title{
  margin:0;
  font-size: clamp(42px, 9vw, 120px);
  line-height: .92;
  letter-spacing:.02em;
}
.lp-hero__sub{
  font-size:12px;
  letter-spacing:.2em;
  text-transform:uppercase;
  opacity:.9;
}

/* ===== Bottom Pill ===== */
.lp-hero__pill{
  position:absolute;
  left:50%;
  bottom:80px;
  transform:translateX(-50%);
  z-index:3;
  width:min(720px, calc(100% - 32px));
}
.lp-pill{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:18px;
  padding:12px 16px;
  border-radius:999px;
  background: rgba(10, 20, 40, .78); /* Fallback */
  background: color-mix(in srgb, var(--pill-bg) calc(var(--pill-bg-op) * 100%), transparent);
  backdrop-filter: blur(12px);
  color: var(--pill-text);
}
.lp-pill__brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:max-content;
}

.lp-pill__logo-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: var(--pill-icon-size, 44px);
  height: var(--pill-icon-size, 44px);
  border-radius: 999px; /* optional: rund */
  line-height:0;
}

.lp-pill__logo{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display:block;
}

.lp-pill__brand-text{
  font-weight:800;
  letter-spacing:.06em;
}

.lp-pill__links{ display:inline-flex; gap:16px; justify-content:center; }
.lp-pill__links a{ color: var(--pill-text); text-decoration:none; opacity:.92; }
.lp-pill__links a:hover{ opacity:1; }
.lp-pill__cta{
  background: var(--pill-cta-bg);
  color: var(--pill-cta-text);
  text-decoration:none;
  font-weight:800;
  padding:10px 14px;
  border-radius:999px;
}

/* ===== Header Overlay nur im Hero-Bereich ===== */
body.lp-hero-active .section-header,
body.lp-hero-active sticky-header,
body.lp-hero-active .header-wrapper{
  position: absolute !important;
  left: 0; right: 0;
  top: 42px; /* ticker height */
  z-index: 900;
}

/* Make header transparent on hero */
body.lp-hero-active .header-wrapper,
body.lp-hero-active .header{
  background: transparent !important;
}

/* Responsive */
@media (max-width: 768px) {
  .lp-hero__title { font-size: clamp(32px, 8vw, 60px); }
  .lp-pill { 
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  .lp-pill__links{ 
  display:flex; 
  gap:16px; 
  justify-content:center; 
  flex-wrap:wrap;
  row-gap:8px;
}
  .lp-hero__pill { bottom: 12px; }
  @media (max-width: 768px) {
  .lp-hero__title { font-size: clamp(32px, 8vw, 60px); }
  .lp-pill { 
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  .lp-pill__links { flex-wrap: wrap; }
  .lp-hero__pill { bottom: 12px; }
  
  .lp-hero { --pill-icon-size: 38px; }  ← HIER HINZUFÜGEN
}
/* ===== Pill Sticky Behavior ===== */

/* Pill normal im Hero */
.lp-hero__pill {
  transition: transform .2s ease, opacity .2s ease;
}

/* ===== Floating Pill State ===== */

/* Optional smoother appearance */
.lp-hero__pill{
  transition: all 0.25s ease;
}

/* ===== Floating state (fixed bottom) ===== */
body.lp-pill-fixed .lp-hero__pill{
  position: fixed !important;
  left: 50% !important;
  bottom: 18px !important;
  top: auto !important;
  transform: translateX(-50%) !important;
  z-index: 9999 !important;
  width: min(720px, calc(100% - 32px)) !important;
}

@media (max-width: 749px){
  body.lp-pill-fixed .lp-hero__pill{ 
    bottom: 12px !important; 
  }
  
  .lp-hero__pill{ 
    bottom: 28px !important; 
  }
}
/* Bestseller: Titel links, "Alle anzeigen" rechts */
.lp-landing .title-wrapper-with-link{
  display: flex !important;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

/* sorgt dafür, dass der Button nicht nach unten springt */
.lp-landing .title-wrapper-with-link > a{
  margin: 0 !important;
  white-space: nowrap;
}

/* optional: mach den "Alle anzeigen" Link wie einen kleinen Button */
.lp-landing .title-wrapper-with-link > a{
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid currentColor;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

}
