

.card-body:has(.store-info) {
    /* Styles for card-body only when it contains a .store-info child */
    padding: 2rem .25rem !important;
}



.store-info {
                margin: 0 0px; /* Small left and right margins */
            }
            .food-list {
                display: flex;
                flex-direction: column; /* Stack food items vertically */
                gap: .75rem;
            }
            .food-item-card {
                display: flex;
                //padding: 15px;
                //border: 1px solid #eaeaea;
                //border-radius: 10px;
                //margin-bottom: 20px;
            }
            .food-thumbnail {
                flex: 0 0 30%;
                 margin-right: 0.75rem;
            }
            .food-thumbnail img {
                max-width: 100%;
                height: auto;
                border-radius: 8px;
            }
            .food-details {
                flex: 1;
                display: flex;
                flex-direction: column;
                justify-content: center; /* Aligns items vertically in the center */
                align-items: center; /* Aligns items horizontally in the center */
            }
            .food-title {
                    font-size: 1rem !important;
                    margin: 0 !important;
                    color: #333;
                    font-weight: 600 !important;

            }
            .food-price {
                font-size: 1rem;
                margin: 0;
                color: #27ae60;
                font-weight: 600;
                margin-bottom: 0 !important;

            }
            .food-category {
                font-size: 16px;
                margin: 0px !important;
                color: #555;
            }
            .food-description {
                font-size: 14px;
                color: #777;
                line-height: 1.6;
                margin-top: 10px; /* Space above description */
                flex-basis: 100%; /* Ensure it occupies full width */
            }/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 