:root {
  --primary: #e3212b; /* Merah branding */
  --info: #045bb3;    /* Biru branding */
}

/* ===== TOMBOL MERAH SOLID ===== */
.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}
.btn-primary:hover {
  background-color: #c81d26 !important;
  border-color: #c81d26 !important;
}

/* ===== TOMBOL OUTLINE BIRU ===== */
.btn-outline-info {
  color: var(--info) !important;
  border-color: var(--info) !important;
}
.btn-outline-info:hover {
  background-color: var(--info) !important;
  color: #fff !important;
}

/* ===== TOMBOL BIRU SOLID KHUSUS (OPSIONAL) ===== */
.btn-info-custom {
  background-color: var(--info) !important;
  color: #fff !important;
  border: none;
}
.btn-info-custom:hover {
  background-color: #034a95 !important;
  color: #fff !important;
}

/* ===== TEKS KHUSUS WARNA BRANDING ===== */
.text-primary-custom {
  color: var(--primary) !important;
}
.text-info-custom {
  color: var(--info) !important;
}

/* ===== BACKGROUND KUSTOM ===== */
.bg-primary-custom {
  background-color: var(--primary) !important;
  color: #fff;
}
.bg-info-custom {
  background-color: var(--info) !important;
  color: #fff;
}

/* ===== BADGE NOTIF / KERANJANG ===== */
.badge-notif {
  background-color: var(--primary);
  color: #fff;
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 50%;
}

/* ===== NAMA USER DI NAVBAR ===== */
.navbar-user-name {
  color: var(--primary) !important;
  font-weight: 600;
}



/* Warna teks dan background tambahan */
.text-primary-custom {
  color: var(--primary) !important;
}
.text-info-custom {
  color: var(--info) !important;
}
.bg-primary-custom {
  background-color: var(--primary) !important;
  color: #fff;
}
.bg-info-custom {
  background-color: var(--info) !important;
  color: #fff;
}



.whatsapp-float {
    position: fixed;
    bottom: 10px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.whatsapp-float:hover {
    background-color: #1ebe5d;
    color: white;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

    .dropdown-menu {
        border-radius: 10px;
        border: 1px solid #eee;
    }
    .dropdown-menu a:hover {
        text-decoration: none;
    }

    /* Search bar */
.input-group .form-control {
    border-radius: 20px 0 0 20px;
}
.input-group .btn {
    border-radius: 0 20px 20px 0;
}

/* Custom step circle size */
.checkout-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
}

/* Active step color */
.checkout-step-active {
    background-color: #dc3545; /* Bootstrap danger color */
    color: #fff;
}

/* Inactive step color */
.checkout-step-inactive {
    background-color: #6c757d; /* Bootstrap secondary color */
    color: #fff;
}

/* Connectors between steps */
.checkout-connector {
    height: 2px;
    background-color: #6c757d;
    flex-grow: 1;
    margin: 0 8px;
}

/* Card header bold */
.card-header h5 {
    font-weight: 600;
}

/* Form spacing */
.form-label {
    font-weight: 500;
}

/* Button hover effect */
.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.step-circle {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-weight: bold;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 0;
    height: 4px;
    width: 100%;
    z-index: 0;
}

.step-link-active {
    color: #dc3545 !important; /* merah untuk aktif */
}

.step-link-inactive {
    color: #6c757d !important; /* abu-abu untuk tidak aktif */
}




