.step1-review-card {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: none;
}
.review-detail-item {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 1.25rem 1.25rem;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 80px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    position: relative;
}
.review-icon {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(220,53,69,0.08);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
}
.review-icon i {
    color: #dc3545;
    font-size: 1.5rem;
}
.review-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.review-label {
    color: #7b8794;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.15rem;
    text-align: left;
}
.review-value {
    color: #253858;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: left;
    word-break: break-word;
}
.continue-btn {
    background: #dc3545;
    color: #fff;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 2.25rem;
    box-shadow: 0 2px 8px rgba(220,53,69,0.08);
    transition: background 0.2s;
}
.continue-btn:hover {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
@media (max-width: 768px) {
    .review-detail-item {
        padding: 1rem 0.75rem;
        min-height: 60px;
    }
    .review-icon {
        width: 32px;
        height: 32px;
        margin-right: 0.75rem;
    }
    .review-icon i {
        font-size: 1.1rem;
    }
    .review-label {
        font-size: 0.95rem;
    }
    .review-value {
        font-size: 1rem;
    }
    .continue-btn {
        width: 100%;
        padding: 0.75rem 0;
    }
}
.stepper-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    width: 100%;
}

.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stepper-item::before {
    position: absolute;
    content: "";
    line-height: 30px;
    width: 100%;
    height: 2px;
    background-color: #e0e0e0;
    top: 15px;
    left: -50%;
    z-index: 0;
}

.stepper-item:first-child::before {
    display: none;
}

.stepper-item.active .step-counter {
    background-color: #007bff;
    color: white;
}

.stepper-item.completed .step-counter {
    background-color: #28a745;
    color: white;
}

.stepper-item.completed::before {
    background-color: #28a745;
}

.step-counter {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e0e0e0;
    margin-bottom: 6px;
}

.step-name {
    font-size: 14px;
    color: #666;
}

.stepper-item.active .step-name {
    color: #007bff;
}

.stepper-item.completed .step-name {
    color: #28a745;
}

.payment-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
}

.summary-details {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.summary-item {
    margin-bottom: 0.75rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-item label {
    display: block;
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.summary-item p {
    margin: 0;
    font-weight: 500;
    color: #212529;
}

.payment-amounts {
    background: white;
    border-radius: 8px;
    padding: 1rem;
}

.amount-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.amount-item:last-child {
    margin-bottom: 0;
}

.amount-item label {
    color: #6c757d;
    margin: 0;
}

.amount-item p {
    margin: 0;
    font-weight: 500;
}

.amount-item.total {
    border-top: 1px solid #dee2e6;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}

.amount-item.total label,
.amount-item.total p {
    font-weight: 600;
    color: #212529;
}

.payment-methods-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
}

.payment-method-section {
    margin-top: 1rem;
}

.payment-method-card {
    margin-bottom: 1rem;
}

.payment-info {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
}

.bank-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.upload-section {
    margin-top: 1.5rem;
}

.currency-selector {
    margin-bottom: 1rem;
}
.currency-selector .btn-group {
    margin-top: 0.5rem;
}
.currency-selector .btn-outline-primary {
    border-color: #dee2e6;
    color: #495057;
}
.currency-selector .btn-outline-primary:hover {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #495057;
}
.btn-check:checked + .btn-outline-primary {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: white !important;
}
.btn-check:focus + .btn-outline-primary {
    box-shadow: none;
}

.payment-method-selector {
    margin-bottom: 1.5rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.payment-method-btn {
    width: 100%;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
}

.payment-method-btn:hover {
    border-color: #dc3545;
    background: #fff5f5;
}

.payment-method-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.payment-method-content i {
    font-size: 24px;
    color: #495057;
}

.payment-method-content span {
    font-size: 16px;
    color: #495057;
}

.btn-check:checked + .payment-method-btn {
    border-color: #dc3545;
    background: #fff5f5;
}

.btn-check:checked + .payment-method-btn .payment-method-content i,
.btn-check:checked + .payment-method-btn .payment-method-content span {
    color: #dc3545;
}

.btn-check:focus + .payment-method-btn {
    box-shadow: none;
}

.default-btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.65;
}

.custom-file-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.alert {
    margin-bottom: 1rem;
}

.alert i {
    vertical-align: middle;
}

.qr-code-container {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.qr-code {
    max-width: 200px;
    height: auto;
}

.qr-code-container p {
    font-size: 0.875rem;
    margin: 0.5rem 0 0;
}

@media (max-width: 768px) {
    .bank-info .col-md-6:first-child {
        margin-bottom: 1.5rem;
    }

    .qr-code-container {
        max-width: 200px;
        margin: 0 auto;
    }
}

.upload-container {
    margin-top: 0.5rem;
}

.upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover {
    border-color: #dc3545;
    background: #fff5f5;
}

.upload-area.dragover {
    border-color: #dc3545;
    background: #fff5f5;
}

.upload-area.is-invalid {
    border-color: #dc3545;
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.upload-content i {
    font-size: 2.5rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.upload-content h6 {
    margin: 0;
    color: #495057;
}

.upload-content p {
    margin: 0;
}

.upload-preview {
    margin-top: 1rem;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.preview-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.preview-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-icon i {
    font-size: 1.5rem;
    color: #6c757d;
}

.preview-info {
    flex: 1;
}

.preview-info h6 {
    margin: 0;
    color: #212529;
    font-size: 0.9rem;
}

.preview-info p {
    margin: 0;
    font-size: 0.8rem;
}

.remove-file {
    padding: 0;
    color: #dc3545;
}

.remove-file:hover {
    color: #bd2130;
}

.remove-file i {
    font-size: 1.25rem;
}

.form-text i {
    vertical-align: middle;
    margin-right: 0.25rem;
}

.payment-buttons {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.payment-buttons .default-btn {
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.payment-buttons .back-btn {
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.payment-buttons .back-btn:hover {
    background-color: #e9ecef;
    color: #212529;
    text-decoration: none;
}

.payment-buttons .submit-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    min-width: 200px;
}

.payment-buttons .submit-btn:hover {
    background-color: #c82333;
    color: white;
}

.payment-buttons .submit-btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.65;
}

.payment-buttons .submit-btn span {
    display: inline;
}

@media (max-width: 576px) {
    .payment-buttons .d-flex {
        flex-direction: column;
        gap: 1rem;
    }

    .payment-buttons .default-btn {
        width: 100%;
        justify-content: center;
    }

    .payment-buttons .submit-btn {
        min-width: 100%;
    }
}

.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.invalid-feedback.show {
    display: block;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.time-slot {
    position: relative;
}

.time-slot input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.time-slot label {
    display: block;
    padding: 1rem;
    text-align: center;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    user-select: none;
}

.time-slot input[type="radio"]:checked + label {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.time-slot.disabled label {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    border-color: #dee2e6;
}

.time-slot .badge {
    display: block;
    margin-top: 0.5rem;
}

.alert {
    margin-bottom: 1rem;
}

/* Only add disabled state for the button */
.default-btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    color: #fff !important;
}

.time-slot.selected label {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.time-slot.selected input[type="radio"]:checked + label {
    background: #28a745;
    border-color: #28a745;
}