/* <!-- menu banner start here  */


  

.menu-banner {
    display: flex;
    min-height: 250px;
    width: 100%;
    align-items: center;
    padding: 30px;
    flex-direction: row;
    background-color: #ED1D24;
}

.menu-banner h1 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #FFCF2D;
}

.menu-content {
    padding: 0px 50px;
    color: white;
}

@media (max-width: 768px) {
    .menu-banner {
        flex-direction: column; /* Stack elements vertically */
        text-align: center;
        padding: 10px 5px;
    }

    .menu-banner h1 {
        font-size: 1.8rem; /* Reduce font size for better readability */
    }

    .menu-content {
        padding: 10px; /* Reduce padding */
    }
}

/* <!-- menu banner end here */ 

.tabs-section {
    margin: 30px 0px;
}

/* Tabs start here */

.custom-tabs {
    display: flex;
    justify-content: center;
    margin: 30px 0px;
    align-items: center;
    background-color: white;
    padding: 10px;
    border-radius: 50px;
    border: 2px solid #ED1D24;
    width: fit-content;
    margin: auto;
    flex-wrap: wrap;
}

/* Tab buttons */
.custom-tab {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border: none;
    background: transparent;
    font-weight: bold;
    color: black;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

/* Tab images */
.custom-tab img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 8px;
}

/* Active tab */
.custom-tab.active {
    background-color: #ED1D24;
    color: white;
    border-radius: 50px;
}

/* Tab content */
.tab-content {
    margin-top: 20px;
    display: none;
}

.text-danger {
    font-size: 1.5rem;
}

.fw-bold {
    font-size: 1.5rem;
}

.tab-content.active {
    display: block;
}

/* Card Styling */
.card {
    padding: 0 !important;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    object-fit: cover;
}

@media (max-width: 768px) {
    .custom-tabs {
        padding: 10px 10px !important;
    }

    .custom-tab {
        font-size: unset !important;
        padding: 10px 7px !important;
    }

 
}

.img-container {
    display: flex;
    align-items: center;
}

.testing {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .testing {
        flex-direction: column;
    }
}

.card {
    padding: 10px 6px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Card body layout */
.card-body {
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Title styling */
.card-title {
    font-size: 18px;
    font-weight: bold;
}

/* Star rating styling */
.stars {
    display: flex;
    gap: 5px;
    cursor: pointer;
}

.stars i {
    font-size: 18px;
    color: #ddd;
    transition: color 0.3s;
}

.stars i.active {
    color: #FFD700;
}

/* Button positioning */

/* Veg/Non-Veg Label */
.product-labels {
    position: absolute;
    top: 7px;
    left: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    color: white;
}

.veg {
    background-color: green;
}

.nonveg {
    background-color: red;
}
.jain {
    background-color: #FF9933 !important;
}
/* Mobile View: Adjust layout */
@media (max-width: 768px) {
    .product-labels {
        position: absolute;
        top: 2px;
        left: 3px;
        padding: 3px 5px;
        font-size: 10px;
        font-weight: bold;
        border-radius: 5px;
        color: white;
    }
    
    .btn-container {
        align-self: flex-start;
    }
    .card-title{
        font-size: 14px;
    }
    .card-body p{
        font-size: 11px;
    }
   
}











/* Tabs end hhere */
