.btn {
    border: none;
    width: max-content;
    cursor: pointer;
    text-align: center; 
    color: #fff;
}

.btn-primary {
    background: linear-gradient(90deg, #f47b6c 5%, #e65343 30%, #f04535 50%, #ff0100 100%);
    filter: blur(150px);
    border-radius: 32px;
    color: #fff;
    border: none;
    width: max-content;
    cursor: pointer;
    text-align: center;
    filter: drop-shadow(0px 4px 7.5px rgba(0, 0, 0, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
}

.btn-primary-order {
    background: linear-gradient(90deg, #f47b6c 5%, #e65343 30%, #f04535 50%, #ff0100 100%);
    filter: blur(150px);
    border-radius: 50px;
    color: #fff;
    border: none;
    width: max-content;
    cursor: pointer;
    text-align: center;
    filter: drop-shadow(0px 4px 7.5px rgba(0, 0, 0, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 355px;
    max-width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.4);
    opacity: 0.95;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid #fff;
    border-radius: 32px;
    padding: 10px 24px;
    color: #ffffff;
    transition: background 0.2s, color 0.2s;

    a {
        color: #ffffff;
        text-decoration: none;
    }
}

.btn-secondary:hover {
    transform: translateY(0) scale(1);
    box-shadow: 0 2px 6px rgba(255, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.24) !important;
    color: #000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2) !important;
}

.btn-white {
    background: rgba(255, 255, 255, 1);
    border-radius: 32px;
    padding: 10px 24px;
    font-size: 18px;
    color: #B82D2D;
    transition: background 0.2s, color 0.2s;
}