﻿.order-type-buttons {
    display: flex;
    row-gap: 30px;
    column-gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.order-type-button {
    padding: 14px 26px;
    background: white;
    color: #333;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.25s ease;
    position: relative;
}

    .order-type-button:hover {
        background-color: #0056b3;
        color: white;
    }

    .order-type-button.active {
        background-color: #0056b3;
        color: white;
        border-color: #0056b3;
    }

    .order-type-button span {
        pointer-events: none;
    }