/* ===================================================================
   Modul: Schlafsack-Berater – modul-spezifische Styles.
   Geteilte Komponenten kommen aus core.css.
   =================================================================== */

.hb-schlafsack .hero-side { text-align: left; }

/* Form */
.hb-schlafsack .sleep-form { margin-bottom: 22px; }
.hb-schlafsack .sleep-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 12px;
}
.hb-schlafsack .slider-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hb-schlafsack .slider-row input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  height: 6px;
  background: linear-gradient(90deg, var(--hb-pink-soft) 0%, var(--hb-pink) 100%);
  border-radius: 999px;
  outline: none;
}
.hb-schlafsack .slider-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--hb-pink);
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(229,0,109,0.35);
  cursor: pointer;
  transition: transform 0.1s;
}
.hb-schlafsack .slider-row input[type="range"]::-webkit-slider-thumb:active { transform: scale(1.15); }
.hb-schlafsack .slider-row input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--hb-pink);
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(229,0,109,0.35);
  cursor: pointer;
}
.hb-schlafsack .slider-value {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--hb-pink);
  min-width: 80px;
  text-align: right;
  letter-spacing: -0.01em;
}
.hb-schlafsack .hint {
  display: block;
  font-size: 12px;
  color: var(--hb-mute);
  margin-top: 6px;
  line-height: 1.4;
}

/* Tips list */
.hb-schlafsack .tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.hb-schlafsack .tips-list li {
  background: var(--hb-cream);
  padding: 12px 14px 12px 38px;
  border-radius: 10px;
  border-left: 3px solid var(--hb-teal);
  font-size: 14px;
  color: var(--hb-ink-soft);
  line-height: 1.5;
  position: relative;
}
.hb-schlafsack .tips-list li::before {
  content: "💡";
  position: absolute;
  left: 12px; top: 12px;
  font-size: 14px;
}

/* Saved recommendations */
.hb-schlafsack .saved-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.hb-schlafsack .saved-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.hb-schlafsack .saved-card {
  background: white;
  border: 1.5px solid var(--hb-line);
  border-radius: var(--hb-radius-md);
  padding: 14px 16px;
  position: relative;
  transition: all 0.15s;
}
.hb-schlafsack .saved-card:hover { border-color: var(--hb-pink); box-shadow: var(--hb-shadow-sm); }
.hb-schlafsack .saved-card .saved-label {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--hb-ink);
  margin-bottom: 4px;
}
.hb-schlafsack .saved-card .saved-meta {
  font-size: 12px;
  color: var(--hb-mute);
  margin-bottom: 8px;
}
.hb-schlafsack .saved-card .saved-rec {
  font-size: 13px;
  color: var(--hb-ink-soft);
  line-height: 1.4;
}
.hb-schlafsack .saved-card .saved-tog {
  display: inline-block;
  background: var(--hb-pink-soft);
  color: var(--hb-pink-dark);
  padding: 2px 8px;
  border-radius: var(--hb-radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 6px;
}
.hb-schlafsack .saved-card .saved-del {
  position: absolute; top: 8px; right: 8px;
  width: 28px; height: 28px;
  background: transparent;
  border: none;
  color: var(--hb-mute);
  font-size: 16px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.15s;
}
.hb-schlafsack .saved-card .saved-del:hover { background: #FFE8E8; color: #C8284C; }
.hb-schlafsack .saved-list .empty { grid-column: 1 / -1; }
