
:root {
    --primary: #0d6efd;
    --primary-light: #edf5ff;
    --secondary: #6c757d;
    --success: #198754;
    --danger: #dc3545;
    --warning: #ffc107;
    --light: #f8f9fa;
    --dark: #212529;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.checkout-container {
    background-color: #f9fafb;
    font-family: 'Noto Sans Bengali', SolaimanLipi, Siyam Rupali, Kalpurush, sans-serif;
    color: var(--dark);
}

.checkout-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    overflow: hidden;
}

.card-header {
    background-color: white;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 10px 20px;
    font-weight: 600;
}

.card-body {
    padding: 20px;
}

/* Benefits Section */
.benefits-card {
    margin-bottom: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 9px 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .benefit-icon img {
        max-width: 100%;
        max-height: 100%;
    }

.benefit-text {
    font-weight: 500;
}

.coin-icon {
    width: 30px;
    height: 30px;
    background-color: var(--warning);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 10px;
}

/* Payment Methods */
.payment-section {
    margin-bottom: 20px;
}

.payment-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.payment-subtitle {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.payment-option {
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

    .payment-option:hover {
        border-color: var(--primary);
        background-color: var(--primary-light);
    }

    .payment-option.selected {
        border-color: var(--primary);
        background-color: var(--primary-light);
    }

.radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ced4da;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-option.selected .radio-circle {
    border-color: var(--primary);
}

.radio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
    display: none;
}

.payment-option.selected .radio-dot {
    display: block;
}

.payment-logo {
    height: 30px;
    margin-right: 15px;
    display: flex;
    align-items: center;
}

    .payment-logo img {
        max-height: 100%;
    }

.payment-name {
    font-weight: 500;
    flex-grow: 1;
}

.multi-logo {
    display: flex;
    align-items: center;
}

    .multi-logo img {
        height: 25px;
        margin-right: 8px;
    }

/* Terms Checkbox */
.terms-check {
    margin-top: 20px;
    margin-bottom: 20px;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    accent-color: var(--primary);
}

/* Confirm Button */
.btn-confirm {
    background-color: #D96E00;
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 15px;
    width: 100%;
    margin-bottom: 15px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

    .btn-confirm:hover {
        background-color: #000000;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
    }
.btn:hover {
    color: #ffffff !important;
}
/* Summary Box */
.summary-box .card-header {
    border: 2px solid #F29434;
    background-color: #FEC182;
    color: black;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 10px 10px 0px 0px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}
.summary-row-Weight {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}
.summary-label {
    color: var(--secondary);
}
.summary-label-Weight {
    color: var(--secondary);
}
.summary-value {
    font-weight: 500;
    text-align: right;
}
.summary-value-Weight {
    font-weight: 500;
    text-align: right;
}
.info-icon {
    font-size: 14px;
    color: var(--secondary);
    cursor: pointer;
    margin-left: 5px;
}

.summary-divider {
    margin: 15px 0;
    border-color: rgba(0,0,0,0.08);
}

.total-row {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark);
}

/* Voucher Section */
.voucher-section {
    margin-top: 20px;
}

.voucher-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
}

.voucher-title {
    font-weight: 500;
}

.voucher-icon {
    transition: transform 0.3s;
}

    .voucher-icon.open {
        transform: rotate(180deg);
    }

.savings-alert {
    background-color: #e6f7e9;
    border-radius: var(--border-radius);
    padding: 12px;
    margin-top: 15px;
    text-align: center;
    color: var(--success);
    font-weight: 500;
}