.breadcrumb-wrapper {
    padding: 40px 0;
    text-align: center;
}

.breadcrumb-title {
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.futuristic-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(5px);
}

.futuristic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: #0d6efd;
}

.input-group-modern {
    border: 2px solid #eee;
    border-radius: 12px;
    transition: all 0.3s;
    overflow: hidden;
}

.input-group-modern:focus-within {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.input-group-modern .form-control {
    border: none !important;
    box-shadow: none !important;
}

.input-group-modern .input-group-text {
    border: none;
    background: transparent;
}

.btn-glow {
    background: linear-gradient(45deg, #0d6efd, #004fb8);
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transition: all 0.3s;
}

.btn-glow:hover {
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.5);
    transform: scale(1.02);
}

.status-pulse {
    width: 10px;
    height: 10px;
    background: #28a745;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.fa {
    font-size: 16px;
}

.receipt-container {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.receipt-divider {
    border-top: 2px dashed #dee2e6;
    height: 1px;
    width: 100%;
    margin: 15px 0;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.detail-icon {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #0d6efd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.detail-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1;
}

.detail-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
}

.kurs-badge {
    font-size: 0.7rem;
    background: #e7f1ff;
    color: #0d6efd;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: bold;
}

.total-section {
    background: #fff;
    border-radius: 10px;
    padding: 10px 15px;
    border: 1px solid #0d6efd33;
}

.payment-card {
    transition: all .2s ease-in-out;
}

.payment-card.border-primary {
    box-shadow: 0 0 0 .15rem rgba(var(--bs-primary-rgb), .25);
}

@media (hover: hover) {
    .payment-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--bs-box-shadow-sm);
    }
}
