.checkout-section {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.06);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.section-number {
    width: 32px;
    height: 32px;
    background: var(--bs-primary);
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    color: #fff;
    margin-right: 10px;
}

.payment-options {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.payment-option {
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
}

.payment-option.active {
    border-color: var(--bs-primary);
    background: #f1f7ff;
}

.payment-details {
    padding-top: 15px;
}

.order-summary {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0,0,0,0.06);
}

.order-item {
    display: flex;
    margin-bottom: 15px;
}

.order-item-image {
    width: 60px;
    border-radius: 8px;
    margin-right: 15px;
}

.order-totals {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.place-order-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
