/********** Template CSS **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
    user-select: none; 
}

.text-primary{
    color: var(--primary) !important;
}

.text-bs-primary{
    color: var(--bs-primary) !important;
}
.ff-secondary {
    font-family: 'Pacifico', cursive;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
.storeNameHeader{
    display: none;
}
.videoblock{
    display: none;
}
.loyalcustomerblock{
    display: none;
}
.contactus{
    display : none;
}
.socialmedia{
    display : none;
}
.eventmenu{
    display : none;
}
.teammenu{
    display : none;
}
.gallerymenu{
    display : none;
}
.testimonialMenu{
    display: none;
}
.tablebookingmenu{
    display: none;
}
.menuItems{
    display: none;
}
.menuslider{
    display: none;
}.menupdfbtn{
    display: none;
}
.lunch-box-btn{
    display : none;
}
.table-booking-btn{
    display : none;
}
.serviceItems{
    display: none;
}
.onlineorderbtn{
    display: none;
}
.downloadapps{
    display: none;
}
.moremenu{
    display: none;
}

.nav{
    cursor: pointer !important;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
input:required {
    background-color: #e3c4c4 !important; /* Light red background */
}
input:required :focus {
    background-color: #e3c4c4 !important; /* Light red background */
}
select:required {
    background-color: #e3c4c4 !important; /* Light red background */
}
textarea:required {
    background-color: #e3c4c4 !important; /* Light red background */
}

/* Toast Container Styles */
.toast {
    visibility: hidden; /* Hidden by default */
    min-width: 250px;
    margin: 0 auto;
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 100000;
    left: 85%;
    bottom: 30px;
    transform: translateX(-50%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.5s, visibility 0.5s;
  }
  
  /* Show Toast */
  .toast.show {
    visibility: visible;
    opacity: 1;
  }
/* Menu Modal */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 10000;
    left: -10;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    
  }
  
  .modal-content {
    margin: 4% ;
    padding: 0px;
    max-width: 100%;
    position: relative;
  }
  
  .modal-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover,
  .close:focus {
    color: red;
    text-decoration: none;
    cursor: pointer;
  }
/* End Menu Modal */

/* Drop Down Language Styles */
 /* Dropdown container */
 .dropdown {
    position: relative;
    display: inline-block;
  }

  /* Dropdown select element */
  .dropdown select {
    appearance: none;
    background-color: #ffffff;
    color: #333;
    border: 2px solid var(--bs-primary);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
  }
  .dropdown select option {
    background-color: white;
  }


  /* Custom dropdown arrow */
  .dropdown::after {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--primary);
    font-size: 14px;
  }

  /* Adjust the arrow color when hover/focus */
  .dropdown select:hover ~ .dropdown::after,
  .dropdown select:focus ~ .dropdown::after {
    color: #ffffff;
  }
/* End of Drop Down Language Styles */
#map {
    height: 60vh;
    
  }

/*** Gallery Images ***/
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    padding: 20px;
}

.gallery img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
    object-fit: cover;
}

.gallery img:hover {
    transform: scale(1.1);
}
/* Responsive Styling for Mobile View */
@media (max-width: 768px) {
    .gallery {
        gap: 10px;
    }

    .gallery img {
        flex: 1 1 calc(50% - 20px); /* Two images per row */
        max-width: calc(50% - 20px);
    }
}
/* Calender CSS*/
.flatpickr-input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.flatpickr-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 4px var(--bs-primary);
}
/* END Calender CSS*/
/* Modal styles */
.img_modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.img_modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.img_modal .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.img_modal .controls {
    position: absolute;
    bottom: 30px;
    display: flex;
    gap: 20px;
}

.img_modal .controls button {
    font-size: 20px;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--primary);
    color: #ffffff;
}

.img_modal .controls button:hover {
    background-color: var(--bs-primary);
}
  /* Navigation Buttons */
  .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-20%);
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
}

#gallery_prev {
    left: 20px;
}

#gallery_next {
    right: 20px;
}

.nav-button:hover {
    background-color: rgba(255, 255, 255, 1);
}
.tableCheck{
    display: flex;
    font-size: larger;
    color: var(--primary);
    justify-content: center;
    align-items: center;
}
/* 
/*** Button ***/

.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
    background-color: var(--primary) !important; 
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-size: 15px;
    color: var(--light) !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar-dark .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-brand img {
    max-height: 50px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }

    .navbar-dark .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: auto;
        z-index: 999;
        background: transparent !important;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--dark) !important;
    }
}


/*** Hero Header ***/
.hero-header {
    /* background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-img {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate { 
    100% { 
        transform: rotate(360deg); 
    } 
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}
.text-clamp {
    display: -webkit-box; /* For multi-line ellipsis */
    -webkit-line-clamp: 1; /* Limit to 2 lines */
    line-clamp: 1;
    -webkit-box-orient: vertical; /* Vertical orientation */
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px; /* Optional: Set max width for the text */
    line-height: 1.5em; /* Adjust to control line spacing */
}
 /* Responsive layout for smaller screens */
 @media (max-width: 600px) {
    .text-storename {
        display: -webkit-inline-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 320px;
        line-height: 1.5em;
    }
  }

.text-storename {
    display: -webkit-inline-box; /* For multi-line ellipsis */
    -webkit-line-clamp: 1; /* Limit to 2 lines */
    line-clamp: 1;
    -webkit-box-orient: vertical; /* Vertical orientation */
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80%; /* Optional: Set max width for the text */
    line-height: 1.5em; /* Adjust to control line spacing */
}
/* Review Message CSS */
.review-message {
    display: -webkit-box; /* For multi-line ellipsis */
    -webkit-line-clamp: 5; /* Limit to 2 lines */
    line-clamp: 5;
    -webkit-box-orient: vertical; /* Vertical orientation */
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px; /* Optional: Set max width for the text */
    line-height: 1.5em; /* Adjust to control line spacing */
}
.event-image-container {
    width: 200px; /* Adjust width dynamically as needed */
    height: 200px; /* Height must match width for a perfect circle */
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
  }

  .event-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the circle properly */
  }
/* Event Modal */
.modal-body {
   
    height: 79vh !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}
/* End Event Modal */
/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--bs-primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--bs-primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Food Menu ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}



.tableImage {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/table_resevation1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.video {
    position: relative;
    height: 500px;
    min-height: 500px;
    /* background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url(../img/bg-hero.png); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .header{
    position: absolute;
    z-index: 3;
    top: 20%;
    color: var(--light);
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: flex;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}
.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: calc(100% - 38px);
    transition: .5s;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item:hover {
    height: 100%;
}

.team-item .btn {
    border-radius: 38px 38px 0 0;
}

.web_storeName{
    display: block;
}
.mobile-storename{
    display: none;
}
.logo-name{
    margin-left: 7rem;
}
.storename-justify{
    justify-content: start;
}
/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


 /* Sample styles for demonstration */
 .d-flex {
    display: flex;
  }

  .align-items-center {
    align-items: center;
  }

  .text-start {
    text-align: start;
  }

  .mx-3 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .ms-0 {
    margin-left: 0;
  }

  .pb-3 {
    padding-bottom: 1rem;
  }
  .tabs {
    display: flex;
    background-color: var(--primary);
    color: white;
    border-radius: 30px;
}
.tab {
    flex: 1;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
}
.tab:hover {
    border-radius: 30px;
    background-color: var(--primary);
}
.tab.active {
    border-radius: 30px;
    background-color: var(--bs-primary);
    font-weight: bold;
}
/* Menu Tabs Scrolling  */
.scroll-container_tab {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.scroll-content_tab {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;

    /* padding: 0 40px; Padding for the buttons */
    padding: 8px 0px 8px 60px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
ul.no-markers {
    list-style: none;
    margin-left: 0px;
    margin-right: 45px;
}

.scroll-content_tab::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
.scroll-content_tab .active {
    border-bottom: 2px solid var(--primary);
}

.scroll-button_tab {
    position: absolute;
    top: 18%;
    transform: translateY(-20%);
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
}

.scroll-button_tab.left {
    left: 0px;
}

.scroll-button_tab.right {
    right: 0px;
}

.scroll-button_tab:hover {
    background-color: #f0f0f0;
}
/*  End Menu Tabs Scrolling */
  .split-screen {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  /* Each column takes 50% of the screen width */
  .menu-column {
    flex: 1;
    min-width: 300px;
  }

  /* Menu item styling */
  .menu-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    gap: 15px;

    opacity: 0;
          transform: translateY(20px);
          animation: fadeInUp 0.5s ease forwards;
  }

  /* Menu Sliding  */
  /* Slider Container */
  .slider {
    position: relative;
    width: 88%;
    padding: 16px;
    /* max-width: 1000px; */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Slides */
.slides {
    display: flex;
    transition: transform 1.5s ease-in-out;
}

.slide {
    display: flex;
    gap: 10px;
    width: 100%;
    padding: 4px;
}

.slide img {
    flex: 1;
    padding: 0px;
    height: 438px;
    object-fit: cover;
    border-radius: 4px;
}
.slide img:hover {
    transform: scale(1.1);
}

/* Navigation Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Dots Navigation */
.dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--bs-primary);
}
  /* End Menu Sliding  */

  /* Image styling */
  .menu-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
  }

  /* Content styling */
  .menu-content {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .menu-content2 {
    flex-direction: column;
    display: flex;
    width: 70%;
    align-items: start;
    
  }

  .menu-title {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0;
    text-align: left;
  }
  .menu-price {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0;
    color: var(--bs-primary) !important;
  }
  .menu-daysession{
    border: 1px solid;
    border-radius: 16px;
    padding: 4px;
    font-size: small;
    font-weight: bold;
    display: none;
    margin: 0;
    color: var(--bs-primary) !important;
  }
  .menu-item:nth-child(1) { animation-delay: 0.1s; }
      .menu-item:nth-child(2) { animation-delay: 0.2s; }
      .menu-item:nth-child(3) { animation-delay: 0.3s; }
      .menu-item:nth-child(4) { animation-delay: 0.4s; }
      .menu-item:nth-child(5) { animation-delay: 0.5s; }
      .menu-item:nth-child(6) { animation-delay: 0.6s; }

  .menu-detail {
    color: #555;
    font-size: 0.9em;
    margin: 5px 0;
    text-align: left;
  }
  .menu-category {
    color: #555;
    font-size: 0.9em;
    font-weight: bold;
    text-align: left;
}
   /* Basic styling for the schedule display */
   .schedule {
    width: 300px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.day {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.day-name {
    font-weight: bold;
    color: #f5f5f5;
}

.hours {
    color: #f5f5f5;
    font-size: 0.9em;
}

.closed {
    color: #e74c3c;
    font-weight: bold;
}
.footer .btn.btn-social:hover {
    color: var(--dark);
}
   /* Keyframes for fade-in-up animation */
   @keyframes fadeInUp {
          from {
              opacity: 0;
              transform: translateY(20px);
          }
          to {
              opacity: 1;
              transform: translateY(0);
          }
      }
  /* Responsive layout for smaller screens */
  @media (max-width: 600px) {
    .web_storeName{
        display: none;
    }
    .logo-name{
        margin-left: 0rem;
        justify-content: center;
    }
    .mobile-storename{
        display: block;
    }
    .storename-justify{
        justify-content: center;
    }
    .menu-item {
      width: 100%;
      max-width: 100%;
    }
    .menu-content2 {
      width: 70%;
    }
  }

  @media (min-width: 576px) {
   
    .modal-dialog {
        max-width: 671px !important;
        width: 600px !important;
        margin: 1.75rem auto !important;
    }
    
}