/** Shopify CDN: Minification failed

Line 32:10 Unexpected "{"
Line 32:19 Expected ":"
Line 38:10 Unexpected "{"
Line 38:19 Expected ":"

**/
/* ============================================================
   SNKRS UNIVERSE – Carousel Styles v13.2.6-R3
   Titanium Safe++ Precision Edition
   ------------------------------------------------------------
   ✦ Kein Kartenhintergrund – Bilder frei auf Hintergrund
   ✦ Einheitliche Höhe & Breite
   ✦ Fix gegen abgeschnittenes erstes Bild
   ✦ Perfekt abgestimmt auf snkrs-carousel.js v13.2.6-R
   ============================================================ */
/* ============================================================
   CONTAINER – Full-Width Edition (Desktop & Mobile)
   ============================================================ */
.snkrs-carousel {
  width: 100vw;             /* nutzt ganze Viewport-Breite */
  max-width: 100vw;
  margin: 0;
  padding: 32px 0;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
}

@media (min-width: 769px) {
  .color-{{ section.id }} .carousel-wrapper {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }

  .color-{{ section.id }} .carousel-track {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }
}



/* ============================================================
   TITEL
   ============================================================ */
.carousel-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #111;
}

/* ============================================================
   WRAPPER
   ============================================================ */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: visible;
}

/* ============================================================
   TRACK – läuft randlos über gesamte Seite
   ============================================================ */
.carousel-track {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: auto !important;
  scrollbar-width: none;
  width: 100%;
  padding: 0 4vw;              /* flexibler Randabstand (4 % der Breite) */
  scroll-padding-left: 4vw;
  scroll-padding-right: 4vw;
  margin: 0;
}
.carousel-track::-webkit-scrollbar { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .snkrs-carousel {
    padding: 24px 0;
  }
  .carousel-track {
    gap: 24px;
    padding: 0 5vw;           /* etwas größerer Rand auf kleinen Screens */
    scroll-padding-left: 5vw;
    scroll-padding-right: 5vw;
  }
}


/* ============================================================
   PRODUKTKARTE – "frei" ohne Hintergrundbox
   ============================================================ */
.product-card {
  flex: 0 0 auto;
  width: 260px;
  text-align: center;
  color: #111;
  text-decoration: none;
  transition: transform 0.25s ease;
  box-sizing: border-box;
}
.product-card:hover {
  transform: translateY(-4px);
}

/* ============================================================
   PRODUKTBILD
   ============================================================ */
.product-image {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: block;
}
.fade-out { opacity: 0; transform: scale(1.05); }
.fade-in  { opacity: 1; transform: scale(1); }

/* ============================================================
   THUMBNAILS
   ============================================================ */
.thumb-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  min-height: 58px;
}
.thumb-row img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
  flex-shrink: 0;
}
.thumb-row img:hover {
  transform: scale(1.12);
  border-color: #000;
  box-shadow: 0 0 6px rgba(0,0,0,.15);
}
.thumb-row img.active {
  border-color: #111;
  transform: scale(1.05);
}

/* ============================================================
   🖥️ PRODUKTINFOS – DESKTOP
   ============================================================ */
@media (min-width: 769px) {
  .product-title {
    font-size: 1.8rem;
    color: #666;
    margin: 10px 0 4px;
    line-height: 1.3;
    height: 2.6em; /* max 2 Zeilen */
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-price {
    font-weight: 600;
    color: #111;
  }

  .price-sale {
    color: #c00000;
  }

  .price-compare {
    text-decoration: line-through;
    color: #999;
    margin-left: 4px;
  }
}

/* ============================================================
   📱 PRODUKTINFOS – MOBILE (alle iPhones & Android-Geräte)
   ============================================================ */
@media (max-width: 768px) {
  .product-title {
    font-size: 1rem; /* leicht kleiner – Beispiel */
    margin: 10px 0 0px;
    line-height: 1.25;
    height: 2.4em;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-price {
    font-weight: 600;
    color: #111;
  }

  .price-sale {
    color: #c00000;
  }

  .price-compare {
    text-decoration: line-through;
    color: #999;
    margin-left: 3px;
  }
}


/* ============================================================
   PFEILE – Final Layout (Edge Distance + Hover)
   ============================================================ */
.carousel-arrow {
  position: absolute;
  top: 45%;
  background: rgba(255,255,255,0.96);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: transform .3s ease, opacity .3s ease, background .3s ease;
  z-index: 1;
  opacity: 0.95;
}

/* Abstand zum Bildschirmrand */
.carousel-arrow.left  { left: -28px; }   /* vorher 8px */
.carousel-arrow.right { right: -28px; }  /* vorher 8px */

/* Hover-Effekt */
.carousel-arrow:hover {
  transform: scale(1.12);
  opacity: 1;
  background: #fff;
}

/* Deaktivierte Pfeile (von EdgeLock-JS) */
.carousel-arrow.disabled {
  opacity: 0.35;
  pointer-events: none;
  transform: none !important;
}

/* Responsive – Pfeile leicht näher bei kleinen Screens */
@media (max-width: 1024px) {
  .carousel-arrow.left  { left: -18px; }
  .carousel-arrow.right { right: -18px; }
  .carousel-arrow { width: 42px; height: 42px; }
}

@media (max-width: 768px) {
  .carousel-arrow.left  { left: -10px; }
  .carousel-arrow.right { right: -10px; }
  .carousel-arrow { width: 38px; height: 38px; top: 42%; }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .snkrs-carousel { padding: 24px; }
  .carousel-track { gap: 28px; margin: 0 -16px; }
  .product-card { width: 220px; }
  .product-image { height: 220px; }
}

@media (max-width: 768px) {
  .carousel-track { gap: 20px; margin: 0 -10px; }
  .product-card { width: 180px; }
  .product-image { height: 180px; }
  .thumb-row img { width: 46px; height: 46px; }
}
.carousel-arrow.disabled {
  opacity: 0.4;
  pointer-events: none;
  transform: none !important;
}

/* === SNKRSUNIVERSE LABELS: unter Thumbnails === */
.label-wrapper.below-thumbs {
  position: relative;
  top: 0;
  left: 0;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 1;
}

/* Typografie & Animation bleiben exakt wie vorher */
.label {
font-family: "Impact", Charcoal, sans-serif;
font-weight: 700;


  font-size: 1.98rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.88);
  background: none;
  border: none;
  box-shadow: none;
  line-height: 1.3;
  position: relative;
  opacity: 0;
  transform: translateY(-5px);
  animation: labelFadeIn 0.7s ease forwards, labelTiltFlash 4s ease-in-out infinite;
  animation-delay: 0.2s, 0s;
  transform-origin: center;
  transition: color .35s ease, opacity .35s ease, transform .3s ease;
}

/* Unterstrich */
.label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.2px;
  background: currentColor;
  opacity: 0.25;
  transition: opacity .3s ease;
}

/* Hover */
.label:hover {
  color: #000;
  opacity: 1;
  transform: translateY(-1px);
}
.label:hover::after { opacity: 0.6; }

/* Farbvarianten */
.label.new       { color: rgba(0,0,0,0.88); }
.label.sale      { color: #c00000; }
.label.exclusive { color:rgb(234, 75, 183); }
.label.topseller {color:rgb(59, 172, 233); } /* kräftiges Blau für Topseller */
.label.arrivals {color: #4fa9ff; }         
.label.halloween {color:rgb(209, 31, 135); }
.label.christmas {color:rgb(224, 15, 15); }
.label.blackweek {color:rgb(0, 0, 0); }
.label.cybermonday {color:rgb(0, 0, 0); }
.label.cyberweekend {color:rgb(0, 0, 0); }
.label.limited {color:rgb(76, 250, 82); }
.label.rare {color:rgb(70, 70, 70); }
.label.vintage {color:rgb(45, 158, 98); }
.label.supreme {color:rgb(255, 12, 198); }
.label.colectibles {color:rgb(255, 12, 198); }
.label.sneaker {color:rgb(255, 12, 198); }



.label.release {
  color: rgb(255, 255, 255); /* klarer Rotton */
  text-shadow:
  1px 1px 1px rgb(38, 38, 38),
  1px -1px 1px rgb(38, 38, 38),
  -1px 1px 1px rgb(38, 38, 38),
  -1px -1px 1px rgb(38, 38, 38); /* leichter Blur für dezentes Strahlen */
 

}

.label.black.friday {
  color: rgb(255, 255, 255); /* klarer Rotton */
  text-shadow:
  1px 1px 1px rgb(38, 38, 38),
  1px -1px 1px rgb(38, 38, 38),
  -1px 1px 1px rgb(38, 38, 38),
  -1px -1px 1px rgb(38, 38, 38),
  0 0 15px rgb(255, 0, 0); /* leichter Blur für dezentes Strahlen */
 

}

/* Animationen */
@keyframes labelFadeIn {
  to { opacity: 0.95; transform: translateY(0); }
}
@keyframes labelTiltFlash {
  0%,100%{transform:rotate(0deg) translateY(0);filter:brightness(100%)}
  30%{transform:rotate(-1deg) translateY(-1px);filter:brightness(115%)}
  60%{transform:rotate(1deg) translateY(1px);filter:brightness(110%)}
  80%{transform:rotate(0deg) translateY(0);filter:brightness(105%)}
}

/* Responsive */
@media (max-width: 768px) {
  .label-wrapper.below-thumbs { gap: 6px; margin-top: 8px; }
  .label { font-size: 1.5rem; letter-spacing: 0.1em; opacity: 0.95; }
}

/* ============================================================
   SKU – Responsiv feinjustiert
   ============================================================ */
.product-sku {
  text-align: center;
  font-size: 1rem;        /* Mobile Standardgröße */
  color: #666;
  margin: 8px 0 4px;
  letter-spacing: 0.045em;
  font-weight: 500;
}

/* Desktop – deutlicher, besser lesbar */
@media (min-width: 769px) {
  .product-sku {
    font-size: 1.5rem;
    color: #444;
    letter-spacing: 0.06em;
  }
}



/* ============================================================
   ✦ SNKRSUNIVERSE LABEL – Soft Fade-Up Entrance
   ============================================================ */

.label-wrapper.below-thumbs .label {
  opacity: 0;
  transform: translateY(10px);
  animation: labelFadeUp 0.6s ease forwards, labelTiltFlash 4s ease-in-out infinite;
}

.label-wrapper.below-thumbs .label:nth-child(1) {
  animation-delay: 0.15s, 0s;
}
.label-wrapper.below-thumbs .label:nth-child(2) {
  animation-delay: 0.25s, 0s;
}
.label-wrapper.below-thumbs .label:nth-child(3) {
  animation-delay: 0.35s, 0s;
}
.label-wrapper.below-thumbs .label:nth-child(4) {
  animation-delay: 0.45s, 0s;
}

@keyframes labelFadeUp {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0.95; transform: translateY(0); }
}

/* ============================================================
   EDGE FIX – Universell (alle iPhones & Androids)
   ============================================================ */

@supports (padding: env(safe-area-inset-left)) {
  @media (max-width: 820px) {
    .snkrs-carousel {
      width: 100%;
      max-width: 100%;
      margin-left: calc(-1 * env(safe-area-inset-left, 0px));
      margin-right: calc(-1 * env(safe-area-inset-right, 0px));
      padding-left: env(safe-area-inset-left, 0px);
      padding-right: env(safe-area-inset-right, 0px);
      overflow-x: hidden;
    }

    .carousel-track {
      width: 100%;
      padding-left: calc(4vw + env(safe-area-inset-left, 0px));
      padding-right: calc(4vw + env(safe-area-inset-right, 0px));
      gap: 22px;
    }
  }
}

/* Fallback für Browser ohne env() (ältere Androids / Safari <14) */
@media (max-width: 820px) {
  .snkrs-carousel {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
  }

  .carousel-track {
    padding: 0 4vw;
    gap: 22px;
  }
}


/* ============================================================
   SKU – Edle Guideline (Solebox Style)
   ============================================================ */
@media (min-width: 769px) {
  .product-sku {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;       /* etwas Abstand zur Linie */
  }

  .product-sku::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60%;
    height: 1px;
    background: rgba(0, 0, 0, 0.08); /* feine graue Linie */
    border-radius: 1px;
  }
}

/* ============================================================
   ✦ SNKRS UNIVERSE – Mobile Edge Precision Fix (Universal)
   ------------------------------------------------------------
   Für iPhone 12 mini → 15 Pro Max & Android-Phones
   • Korrigiert rechte Weißkante in Safari (iOS 15–17)
   • Minimales Überlappen links für perfekte Bündigkeit
   ============================================================ */

@media (max-width: 820px) {
  .snkrs-carousel {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  .carousel-track {
    display: flex;
    gap: 20px;
    padding-left: calc(4vw - 2px);   /* leichte Überlappung links */
    padding-right: calc(4vw - 1px);  /* bündig rechts */
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }

  /* iPhone-Spezifische Safe-Area-Korrektur */
  @supports (padding: env(safe-area-inset-left)) {
    .carousel-track {
      padding-left: calc(env(safe-area-inset-left, 0px) + 3px);
      padding-right: calc(env(safe-area-inset-right, 0px) + 2px);
    }
  }
}

/* ============================================================
   ✦ SNKRS UNIVERSE – 48H ↯ Label (Barlow Black Italic)
   ------------------------------------------------------------
   • Echte Fettschrift (900) mit Italic
   • Kräftig, klar & mobil scharf
   • Eisblau (#4fa9ff) bleibt erhalten
   ============================================================ */

/* Google Font laden (im <head>):
<link href="https://fonts.googleapis.com/css2?family=Barlow:ital,wght@1,900&display=swap" rel="stylesheet">
*/

.label-wrapper.top-left {
  position: absolute;
  top: 10px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
}

/* Textlabel */
.label.fast-ship,
.label.fast-ship a {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;          /* echte Fettschrift */
  font-style: italic;
  font-size: 2.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4fa9ff;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  background: none;
  opacity: 0;
  animation: labelFadeIn 0.8s ease forwards;
  animation-delay: 0.2s;
  transition: color 0.25s ease, transform 0.25s ease;
  cursor: default;
}

/* Hover – etwas dunkler für Tiefe */
.label.fast-ship:hover,
.label.fast-ship a:hover {
  color: #2386e1;
  text-decoration: none !important;
  transform: translateY(-1px);
}

/* Sanftes Einblenden */
@keyframes labelFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile Anpassung */
@media (max-width: 768px) {
  .label-wrapper.top-left { top: 0px; left: 10px; }
  .label.fast-ship,
  .label.fast-ship a {
    font-size: 1.95rem;
    letter-spacing: 0.045em;
  }
}


/* Kein Unterstrich */
.label.fast-ship::after { display: none !important; }



/* ============================================================
   ✦ SNKRS UNIVERSE – Share Button Responsive Styles (Exact Values)
   ------------------------------------------------------------
   • Alle Originalwerte unverändert
   • Nur Mobile: sanfter Tap-Hintergrund-Effekt ergänzt
   ============================================================ */

.product-share {
  display: flex;
  margin-left: 5px;
  justify-content: center;
  margin-top: -15px;
  margin-bottom: -12px;
}

.share-button__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgb(120, 119, 119);
  -webkit-tap-highlight-color: transparent; /* Safari / iOS */
  tap-highlight-color: transparent;         /* Android / Chrome */
  background-color: transparent;            /* Kein Hintergrund beim Tippen */
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.share-button__button .icon {
  width: 14px;
  height: 14px;
  opacity: 0.9;
  flex-shrink: 0;
}

.share-button__button:hover {
  transform: translateY(-1px);
  color: rgb(112, 115, 117);
}

/* ====== Mobile Tap-Effekt (ohne Werteänderung) ====== */
@media (max-width: 768px) {
  .share-button__button:active {
    background-color: rgba(240, 248, 255, 0.85); /* Sehr helles Blau beim Tippen */
    box-shadow: 0 0 6px rgba(200, 220, 255, 0.6); /* Sanfter Schimmer */
  }
}

/* ============================================================
   SNKRS UNIVERSE – Add to Cart Icon (rechts vom Preis)
   Autor: André & GPT-5 | Jahr: 2025
============================================================ */

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  margin-top: 0px;
  margin-left: 36px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-cart {
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0px;
  margin-left: 3px;
  margin-bottom: 1px;
  transition: transform 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(0px);
}

.price-cart:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,1);
}

.cart-icon-svg {
  width: 20px;
  height: 20px;
  display: block;
  transition: opacity 0.25s ease;
}

.price-cart:hover .cart-icon-svg {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .product-price-row { gap: 15px; }
  .cart-icon-svg { width: 35px; height: 35px; margin-left: -16px; }
}

@media (min-width: 769px) {
  .cart-icon-svg { width: 40px; height: 40px; }
}


/* Fix: verhindert Drag-Jitter auf Desktop */
@media (pointer: fine) {
  .carousel-track {
    scroll-behavior: auto !important;
  }
}
.snkrs-dragging {
  cursor: grabbing !important;
}
.carousel-track {
  cursor: grab;
}

/* Standard-Mobile (Portrait) – nichts ändern */
.soldout-message {
  display: flex; 
  padding: 2px 0;
}

.soldout-text {
  font-size: 1.8rem;
  font-weight: 600;
  color:rgb(165, 164, 164); 
  text-align: center;
  padding-right: 37px;
}

/* Mobile Landscape (z. B. iPhone quer) */
@media (min-width: 576px) {
  .soldout-message {
    display: flex;
    padding: 2px 0;
  }

  .soldout-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: #F87171; 
    text-align: center;
    padding-left: 13px;
  }
}

/* Tablet + Desktop */
@media (min-width: 768px) {
  .soldout-message {
    display: flex;
    padding: 4px 0;
  }

  .soldout-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: #F87171; 
    text-align: center;
    padding-right: 50px;
  }
}









/* ============================================================
   SNKRS UNIVERSE — Bottom Sheet R43 COMPATIBLE FINAL
   • Fullwidth Image
   • Variant Price Updates
   • Size Selection
   • Add Button
============================================================ */

/* --- Container --- */
#snkrs-bottom-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  z-index: 99999;
  pointer-events: none;
}

#snkrs-bottom-sheet.is-open {
  transform: translateY(0);
  pointer-events: auto;
}

/* --- Backdrop --- */
.snkrs-bottom-sheet__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
}

/* --- Panel --- */
.snkrs-bottom-sheet__panel {
  background: #fff;
  border-radius: 30px 30px 0 0;
  padding: 26px 22px 40px;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.12);
  position: relative;
}

/* FULLWIDTH PRODUCT IMAGE */
.snkrs-bs-img-full {
  width: 88%;
  max-width: 480px;
  display: block;
  margin: 0 auto 18px;
  border-radius: 22px;
  background: #f4f4f4;
  object-fit: contain;
}

/* TITLE */
.snkrs-bs-title {
  text-align: center;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 4px;
}

/* PRICE */
.snkrs-bs-price {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #444;
}

/* Size title */
.snkrs-size-title {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 10px 0 20px;
  opacity: 0.9;
}

/* Close button */
.snkrs-bs-close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 36px;
  height: 36px;
  background: #f1f1f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  cursor: pointer;
  border: 1px solid #e5e5e5;
}

/* ============================================================
   SIZE BUTTONS
============================================================ */
.snkrs-size-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* Available */
.snkrs-size-btn {
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 14px 0;
  font-size: 1.18rem;
  font-weight: 500;
  text-align: center;
  transition: 0.2s;
}

/* Price under size */
.snkrs-size-btn small {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  color: #666;
}

/* Hover */
.snkrs-size-btn:hover {
  background: #ececec;
}

/* Not available */
.snkrs-size-btn.unavailable {
  background: #f1f1f1;
  color: #aaa;
  border-color: #e4e4e4;
}

/* Selected */
.snkrs-size-btn.selected {
  background: #e7f2ff;
  border-color: #74b9ff;
  color: #0066ff;
  transform: scale(1.03);
}

/* ============================================================
   ADD-TO-CART BUTTON
============================================================ */
.snkrs-add-btn {
  margin-top: 28px;
  width: 100%;
  padding: 18px;
  background: #00b0ff;
  border-radius: 18px;
  color: #fff;
  font-size: 1.32rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.25s;
}

.snkrs-add-btn.disabled {
  background: #d8ecf9;
  color: #9ac8e4;
  cursor: not-allowed;
}

.snkrs-add-btn:not(.disabled):hover {
  background: #0096db;
  transform: translateY(-1px);
}

.snkrs-add-btn.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Safe Area for iPhones */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .snkrs-bottom-sheet__panel {
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }
}
/* Subprice (ab ...) */
.snkrs-bs-subprice {
  text-align: center;
  font-size: 1.05rem;
  margin-top: -18px;
  margin-bottom: 24px;
  color: #666;
  opacity: 0.8;
}

/* Größe wählen Titel – eleganter */
.snkrs-size-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 6px 0 22px;
  color: #333;
  opacity: 0.85;
}








/* ============================================================
   R45 — DESKTOP MODAL (Basierend auf deinem perfekten R44)
============================================================ */

@media (min-width: 900px) {

  /* Modal statt Bottom Sheet */
  #snkrs-bottom-sheet {
    top: 0; bottom: 0;
    transform: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  #snkrs-bottom-sheet.is-open {
    pointer-events: auto;
  }

  .snkrs-bottom-sheet__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    z-index: 99998;
  }

  /* Panel */
  .snkrs-bottom-sheet__panel {
    width: 850px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 22px;
    padding: 40px 50px 50px;
    box-shadow: 0 12px 60px rgba(0,0,0,0.25);
    position: relative;
    z-index: 99999;
  }

  /* Two-Column Layout */
  .snkrs-bs-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-bottom: 25px;
    align-items: center;
  }

  .snkrs-bs-img-full {
    width: 100%;
    border-radius: 16px;
    margin: 0;
    object-fit: contain;
  }

  .snkrs-bs-title {
    text-align: left;
    font-size: 1.65rem;
    margin-bottom: 8px;
  }

  .snkrs-bs-price {
    text-align: left;
    font-size: 1.4rem;
  }

  /* Größe wählen Desktop */
  .snkrs-size-title {
    text-align: left;
    margin-top: 25px;
  }

  /* 3-Column Grid Desktop */
  .snkrs-size-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  /* Add Button Desktop */
  .snkrs-add-btn {
    margin-top: 40px;
    font-size: 1.25rem;
    padding: 20px;
    border-radius: 14px;
  }

  /* Close Button Fix */
  .snkrs-bs-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: #f1f1f1;
    border-radius: 50%;
    font-size: 24px;
    border: 1px solid #e5e5e5;
    z-index: 100000;
    cursor: pointer;
  }
}
