/* ─────────────────────────────────────────────
   FIX 1: Camera selector hint
───────────────────────────────────────────── */
.cs-swatch-hint {
  font-size: 12px;
  color: #aaa;
  margin: 4px 0 10px;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────
   FIX 2: Sticky CTA balk
───────────────────────────────────────────── */
#cs-sticky-cta {
  position: fixed;
  bottom: -160px;
  left: 0; right: 0;
  z-index: 99999;
  background: #111;
  border-top: 1px solid #2a2a2a;
  padding: 14px 28px;
  transition: bottom 0.3s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.6);
  font-family: "Space Grotesk", sans-serif;
}
#cs-sticky-cta.cs-sticky-visible { bottom: 0; }

/* Layout: prijs | swatches | knop */
.cs-si {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Prijs */
.cs-si-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
}
.cs-p-sale {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.cs-p-orig {
  font-size: 13px;
  color: #888;
  text-decoration: line-through;
}

/* Swatches — flex-grow + horizontaal scrollbaar */
.cs-si-middle {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.cs-si-swatches {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.cs-si-swatches::-webkit-scrollbar { display: none; }

.cs-si-swatches .cs-swatch {
  background: #1e1e1e !important;
  border: 1px solid #333 !important;
  border-radius: 6px !important;
  padding: 6px 10px !important;
  cursor: pointer !important;
  font-family: "Space Grotesk", sans-serif !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  flex-shrink: 0 !important;
  transition: border-color 0.15s !important;
  box-sizing: border-box !important;
  width: max-content !important;
  text-align: left !important;
}
.cs-si-swatches .cs-swatch .cs-brand {
  font-weight: 600 !important;
  color: #fff !important;
  font-size: 11px !important;
  white-space: nowrap !important;
  display: block !important;
  background: none !important;
}
.cs-si-swatches .cs-swatch .cs-log {
  font-size: 9px !important;
  color: #888 !important;
  white-space: nowrap !important;
  display: block !important;
  background: none !important;
}
.cs-si-swatches .cs-swatch:hover { border-color: #FFA800 !important; }
.cs-si-swatches .cs-swatch.cs-active {
  border-color: #FFA800 !important;
  background: #201a0c !important;
}
.cs-si-swatches .cs-swatch.cs-active .cs-brand { color: #FFA800 !important; }

/* Knop */
.cs-si-btn {
  background: #FFA800 !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  border: none !important;
  border-radius: 5px !important;
  padding: 18px 32px !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: all 0.2s !important;
  font-family: "Space Grotesk", sans-serif !important;
  flex-shrink: 0 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  box-shadow: none !important;
  opacity: 1 !important;
  display: block !important;
  width: auto !important;
}
.cs-si-btn:hover { background: #e69600 !important; }

/* ─── MOBIEL ─── */
@media (max-width: 768px) {
  #cs-sticky-cta {
    padding: 12px 16px;
    bottom: -200px;
  }

  .cs-si {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  /* Prijs verbergen op mobiel */
  .cs-si-price { display: none; }

  /* Swatches — vol breed + horizontaal scrollen */
  .cs-si-middle { overflow: visible; }
  .cs-si-swatches {
    width: 100%;
    gap: 6px;
    overflow-x: auto;
  }

  /* Knop — full width */
  .cs-si-btn {
    width: 100% !important;
    text-align: center !important;
    padding: 18px 0 !important;
    font-size: 16px !important;
  }
}
