:root {
    --primary: #198754;
}

/* Tus estilos adaptados perfectamente */
.btn-order {
    background-color: var(--primary);
    color: white !important;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    padding: 18px 35px;
    text-decoration: none;
    width: 100%;
    display: block;
    text-align: center;
    /*box-shadow: 0 15px 30px rgba(255, 106, 0, 0.2);*/
    transition: all 0.3s ease;

    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.btn-order:hover {
    transform: translateY(-4px);
    /*box-shadow: 0 10px 40px rgba(255, 106, 0, 0.4);*/
}

.btn-order::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-25deg);
    transition: none;
}

.btn-order:hover::after {
    left: 150%;
    transition: all 0.7s ease-in-out;
}

.btn-order:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.3);
}