﻿:root {
    --prime-gradient: linear-gradient(135deg, #ff4757, #ff6b81);
    --hover-gradi: linear-gradient(135deg, #ff6b81, #ff4757);
    --text-color: #ffffff;
    --btn-shadowy: 0 10px 25px -5px rgba(255, 71, 87, 0.4);
    --btn-shadow-hover: 0 20px 35px -5px rgba(255, 71, 87, 0.6);
}
.mobile-menu .navigation li > button{
    margin:10px 20px;
}
/* The Button Container */
.order-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    background: var(--prime-gradient);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.25rem;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: var(--btn-shadowy);
    outline: none;
    user-select: none;
}

    /* Icon Styling */
    .order-btn .icon-wrapper {
        position: relative;
        width: 36px;
        height: 36px;
        margin-right: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .order-btn img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* Enhance the 3D feel of the PNG */
        filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
    }

    /* Text Styling */
    .order-btn span {
        position: relative;
        z-index: 2;
        letter-spacing: -0.02em;
    }

    /* Shine/Sweep Effect */
    .order-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0), transparent );
        transition: 0.6s;
        z-index: 1;
    }

    /* Hover Interactions */
    .order-btn:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: var(--btn-shadowy-hover);
        background: var(--hover-gradi);
    }

        .order-btn:hover::before {
            left: 100%;
        }

        .order-btn:hover .icon-wrapper {
            transform: scale(1.2) rotate(-12deg);
        }

    /* Active/Press state */
    .order-btn:active {
        transform: translateY(-1px) scale(0.98);
        box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
    }

/* Adding a pulse effect to the background shadow */
@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 71, 87, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
    }
}

.order-btn:hover {
    animation: shadow-pulse 1.5s infinite;
}
