/* ============================================================
   KKB BRI — Global Stylesheet
   Dibuat untuk: PT Bank Rakyat Indonesia (Persero) Tbk.
   Versi: 1.0.0
   ============================================================ */

/* ─── Google Material Icons ──────────────────────────────── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: inline-block;
  line-height: 1;
}

/* ─── Kalkulator Card Shadow ─────────────────────────────── */
.calculator-card {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
}

/* ─── Custom Range Slider ────────────────────────────────── */
.custom-range {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: #E2E8F0;
  border-radius: 5px;
  outline: none;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: #00529C;          /* BRI Blue */
  border: 4px solid white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ─── Product Carousel Animation ────────────────────────── */
.product-carousel-enter {
  opacity: 0;
  transform: translateX(10px);
}

.product-carousel-enter-active {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.4s ease-out;
}
