/** Shopify CDN: Minification failed

Line 230:18 Unexpected "{"
Line 230:30 Expected ":"
Line 230:34 Unexpected "{"

**/
/* ============================================
   NOOK TOP — Varyant Seçici Sistemi
   Dosya: assets/nook-variant.css
   ============================================ */

/* --- Genel Wrapper --- */
.nook-variant-picker {
  margin: 1.6rem 0;
}

.nook-variant-picker__section {
  margin-bottom: 2rem;
}

/* --- Bölüm Başlığı --- */
.nook-variant-picker__label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgb(var(--color-base-text));
  margin-bottom: 1rem;
}

.nook-variant-picker__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #2d5a27;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Pill Buton Grubu --- */
.nook-pill-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

/* --- Pill Buton: input gizle --- */
.nook-pill-group input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* --- Pill Buton: label --- */
.nook-pill {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  padding: 0.9rem 0.8rem;
  border: 1.5px solid rgba(var(--color-base-text), 0.2);
  border-radius: 8px;
  background: #fff;
  color: rgb(var(--color-base-text));
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s ease;
  user-select: none;
}

.nook-pill:hover {
  border-color: #2d5a27;
  background: #f4f9f4;
}

/* --- Seçili Pill --- */
input[type="radio"]:checked + .nook-pill {
  border-color: #2d5a27;
  background: #f4f9f4;
  color: #2d5a27;
  font-weight: 600;
  box-shadow: 0 0 0 1px #2d5a27;
}

/* --- Checkmark ikonu --- */
input[type="radio"]:checked + .nook-pill::after {
  content: '✓';
  position: absolute;
  top: -0.6rem;
  right: -0.6rem;
  width: 1.6rem;
  height: 1.6rem;
  background: #2d5a27;
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.6rem;
  text-align: center;
}

/* --- Badge (En Avantajlı) --- */
.nook-pill__badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #2d5a27;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.1rem 0.7rem;
  border-radius: 20px;
  white-space: nowrap;
}

/* Badge olan pill'e üst boşluk --- */
.nook-pill--has-badge {
  padding-top: 1.4rem;
}

/* --- Alt açıklama metni (250 ml: Çerez...) --- */
.nook-pill__sub {
  font-size: 1.1rem;
  color: #6b7a5e;
  margin-top: 0.2rem;
  font-weight: 400;
}

/* --- Pasif/Gizli pill --- */
.nook-pill--hidden {
  display: none !important;
}

/* --- Hint metni --- */
.nook-variant-picker__hint {
  font-size: 1.25rem;
  color: #7a8c6e;
  margin-top: 0.8rem;
  font-style: italic;
}

/* --- Kullanım Kartları (Adım 3) --- */
.nook-usage-cards {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.nook-usage-card {
  flex: 1;
  min-width: 8rem;
  padding: 1.2rem 1rem;
  border: 1.5px solid rgba(var(--color-base-text), 0.12);
  border-radius: 10px;
  background: #f9faf7;
  text-align: center;
  transition: border-color 0.18s;
}

.nook-usage-card.is-active {
  border-color: #2d5a27;
  background: #eef5ec;
}

.nook-usage-card__icon {
  font-size: 2rem;
  margin-bottom: 0.4rem;
  display: block;
}

.nook-usage-card__size {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d5a27;
  display: block;
}

.nook-usage-card__desc {
  font-size: 1.1rem;
  color: #6b7a5e;
  display: block;
  margin-top: 0.2rem;
}

/* --- Dinamik Fiyat Alt Metni --- */
.nook-price-note {
  font-size: 1.2rem;
  color: #7a8c6e;
  margin-top: 0.4rem;
}

/* --- Set Kombinasyon Özeti --- */
.nook-set-info {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}

.nook-set-info__item {
  font-size: 1.25rem;
  color: #4a5e40;
  background: #eef5ec;
  border-radius: 6px;
  padding: 0.4rem 0.9rem;
  font-weight: 500;
}

/* --- Shopify native varyant picker'ı gizle --- */
#variant-selects-{{ section_id }} {
  display: none !important;
}

/* === Mobil === */
@media (max-width: 749px) {
  .nook-pill {
    min-width: 7.5rem;
    font-size: 1.3rem;
  }
  .nook-usage-cards {
    gap: 0.6rem;
  }
}
.nook-icerik-wrap,
.nook-pill-group > div {
  width: 100%;
  min-width: 0;
}