
.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

#checkout-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 16px 20px;
    border-radius: 90px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#cancel-order-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 16px 20px;
    border-radius: 90px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
    