        .badge.bg-success {
        font-size: 1rem;
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: 30px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        height: 15px;
    }

           .search-bar-wrapper {
            margin: 2rem auto;
            max-width: 900px;
            padding: 0 1rem;
        }
        .search-bar {
            display: flex;
            align-items: center;
            background: #fff;
            border-radius: 50px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            padding: 10px 20px;
            overflow: hidden;
        }
        .search-bar i {
            color: #BF7642;
            margin-right: 10px;
            font-size: 1.2rem;
        }
        .search-bar input {
            flex: 1;
            border: none;
            outline: none;
            padding: 10px;
            font-size: 1rem;
            background: transparent;
            color: #333;
        }
    .card {
        position: relative;
        background: #fff;
        border: none;
        transition: transform 0.3s ease;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
        border-radius: 16px;
        max-width: 100%;
        height: auto;
    }

    .card-img-side {
        width: 120px;
        height: 120px;
        overflow: hidden;
        border-radius: 16px 0 0 16px;
    }

    .card-img-side img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .card-body {
        padding: 1rem;
        flex: 1;
    }

    .card-title {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
        text-align: right;
        color: #BF7642;
        font-weight: bold;
    }

    .card-text {
        font-size: 1.1rem;
        color: #000;
        text-align: right;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background-color: #BF7642;
        border-top-left-radius: 16px;
        border-bottom-left-radius: 16px;
    }
    .card:hover {
        transform: scale(1.05);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

    .badges-container {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: flex-end;
        margin-top: 0.5rem;
    }

    .price-badge {
        background-color: #779e5f;
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 30px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 1rem;
        font-weight: 500;
    }
    
    .kcal-badge {
        color: #779e5f;
        padding: 0rem 0.5rem;
        border-radius: 30px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 1rem;
        font-weight: 500;
        position: relative;
        top: -9px; /* Adjust this value to control how much you want to move it up */
    }

    .price-badge img {
        height: 16px;
        margin-left: 4px;
    }

    @media (min-width: 992px) {
        .card {
            max-width: 100%;
        }
        
        .card-img-side {
            width: 100px;
            height: 100px;
        }

        .price-badge {
            font-size: 1rem;
            padding: 0.5rem 1rem;
        }
    }

    /* Hide text for hot drinks button */
    .nav-hotDrinks .nav-title {
        display: none;
    }
    .nav-hotDrinks {
        padding: 10px !important;
        width: auto !important;
    }
    .nav-hotDrinks i {
        margin: 0 !important;
    }