@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

:root {
    --bs-black: #000;
    --bs-white: #fff;
    --primary-color: #d4a77c;
    --third-color: #994d0b;
    --secondary-color: #261C14;
    --primary-font:  "Sansation", sans-serif;
    --secondary-font:  "Inter", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--sora-font) !important; 
}

dl,
ol,
ul {
    margin: 0 !important;
    padding: 0 !important;
}

a {
    color: inherit !important;
    text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font) !important;
    font-weight: 600 !important;
}

p, a , span , input , li {
    font-family: var(--secondary-font) !important;
}
.hide-scrollbar {
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.py-40 {
    padding: 40px 0 !important;
}   

.custom-btn {
  position: relative;
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff !important;
  font-family: var(--primary-font);
  padding: 7px 17px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}

.custom-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background-color: #dc6626; /* Same as hover background */
  z-index: 0;
  transition: height 0.3s ease;
  border-radius: 0 0 5px 5px;
}

.custom-btn:hover::after {
  height: 100%;
}

.custom-btn:hover {
  color: #fff;
  box-shadow: 0 2px 10px rgba(220, 102, 38, 0.4);
  transform: translateY(-1px);
}

.custom-btn:active {
  transform: translateY(0px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* .custom-btn-dark { 
    background-color: var(--secondary-color); 
} */
/* Ensure text stays above ::after */
.custom-btn span {
  position: relative;
  z-index: 1;
}

.custom-design-input::placeholder {
    color: var(--bs-white);
}

.dates-picker svg path ,
.time-picker svg path {
    stroke: var(--bs-white);
}
.heading-text {
    font-size: 30px;
    font-family: var(--sora-font);
}

.heading-p {
    font-size: 14px;
    color: var(--secondary-color);
}

.primary-color {
    color: var(--primary-color);
}

.third-color {
    color: var(--third-color);
}
.page-heading {
    background-color: var(--secondary-color);
    padding: 15px;
    color: var(--bs-white);
    border-top: 1px solid #d1d1d1;
}

.custom-modal-style {
    z-index: 9999 !important;
}


.img-wrapper {
    padding-top: 75%;
    height: 100%;
    width: 100%;
}

.img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
/* Header */
.main-header {
    background-color: var(--secondary-color);
    color: var(--bs-white) !important;
    position: sticky;
    top: 0;
    z-index: 99;
}

.topbar {
    padding: 10px 0;
}

.header-logo {
    width: 100px !important;
    object-fit: scale-down;
}

.menu-box a {
    padding: 10px 15px;
}

.menu-box .active,
.responsive-header-main .active,
#OpenDrawer .active {
    color: var(--primary-color) !important;
}

.menu-box a:after {
    color: var(--primary-color) !important;
    width: 0;
    content: '';
    display: block;
    height: 2px;
    background: var(--primary-color);
    transition: .3s all;
}

.menu-box .active:after {
    width: 100%;
}

.menu-box a:hover:after {
    width: 100%;
}

.menu-box a:hover {
    color: var(--primary-color) !important;
}

.menu-box .cart-menu  {
    position: relative;
}
.cart-counting {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    display: block;
    background-color: red;
    color: var(--bs-white) !important;
    font-size: 8px !important;
    font-weight: 400;
    border-radius: 50%;
    height: 16px !important;
    width: 16px !important;
    line-height: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    padding: 0px !important;
    border-bottom: none !important;
    margin-left: 4px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
} 


.responsive-header-main {
    background-color: var(--bs-white);
    position: sticky;
    bottom: 0;
    z-index: 990;
}

#profileImage {
    display: flex;
    font-size: 15px;
    justify-content: center;
    align-items: center; 
}

/* Style pagination dots */
.swiper-pagination-bullet {
  width: 22px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
  margin: 0 6px;
  transition: all 0.3s ease;
  border-radius: 50%;
  border: 2px solid #fff;
}

/* Active bullet */
.swiper-pagination-bullet-active {
  background: #FFCA28; /* Bright Yellow */
  transform: scale(1.3);
  opacity: 1;
  border-color: #FFCA28;
}

/* Optional: Hover effect */
.swiper-pagination-bullet:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

/* Hero Section */ 
.main-banner {
    padding: 140px 0px 180px;
    min-height: 600px;
} 
/* Slider Css */
.slider-section { 
    padding-top: 70px;
}

.slider-img {
    border-radius: 24px;
    overflow: hidden;
}

.slider-img img {
    width: 100%;
    height: 100%;
}

.owl-dots {
    display: none;
}

.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
}
.owl-theme .owl-prev ,
.owl-theme .owl-prev {
    margin: 0px !important;
}

.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.owl-prev,
.owl-next {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    border: 1px solid var(--bs-white) !important;
    background-color: var(--third-color) !important;
    color: var(--bs-white) !important;
}

.owl-prev span,
.owl-next span {
    font-size: 20px;
}

.newsletterimg {
    width: 100%;
    object-fit: cover;
    max-width: 500px;
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-in-out;
}
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Category Slider */
.category-image-wrapper {
    width: 90px;
    height: 90px;
}

.category-wrapper p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden; 
}
.category-wrapper { 
    min-height: 151px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.category-wrapper:hover ,
.category-wrapper:focus,
.category-wrapper:active {
    box-shadow: 1px 1px 6px 2px #e32a2a29;
}

.category-wrapper img ,
.category-wrapper p {
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}

.category-wrapper:hover img ,
.category-wrapper:focus img,
.category-wrapper:active img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.category-wrapper:hover p,
.category-wrapper:focus p,
.category-wrapper:active p { 
    text-shadow: #BCA38B;
    color: var(--third-color);
}
.category-main-wrapper {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
}

.category-main-wrapper::-webkit-scrollbar {
    display: none;
}

.side-header-top {
    background-color: var(--third-color);
}
 
.custom-hover-shadow:hover { 
  border-color: var(--third-color);
}

.custom-hover-shadow img ,
.custom-hover-shadow {
    border: 1px solid #d1d1d1;
}

/* Product Css */
.product-card {
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 15px;
    text-align: center;
    justify-content: space-between;
}

.product-card img {
    width: 100%;
    border-radius: 6px;
    height: 270px;
    border: 1px solid #ddd;
    object-fit: cover;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.product-card:hover {
    box-shadow: 0 2px 7px rgba(244, 57, 32, 0.2);
    border: 1px solid var(--primary-color);
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}

.product-card:hover img {
     border: 1px solid var(--primary-color);
}

.product-card:hover h3 {
    color: var(--third-color);
}

.product-card h3 {
    margin: 10px 0;
    font-size: 18px;
}

.product-card p {
    font-size: 14px;
    color: #555;
      display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product-card .cart-btn.add-to-cart {
    width: 100%;
}
.price {
    margin: 10px 0;
    font-size: 16px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-left: 10px;
}
 /* Common Button  */
.cart-btn {
    position: relative;
    text-align: center;
    text-transform: capitalize;
    padding: 10px 18px;
    font: 16px;
    font-weight: 600;
    color: var(--bs-white); 
    background-color:  rgb(220, 102, 38);     
    outline: none;
    display: inline-flex;
    gap: 5px;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    overflow: hidden;
    z-index: 1;
}

.cart-btn::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 0%;
    width: 100%;
    background-color: var(--primary-color);
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    z-index: -1;
}

.cart-btn:hover::before,
.cart-btn:focus::before {
    height: 100%;
}

.cart-btn:hover,
.cart-btn:focus {
    color: var(--bs-white);
}

/* .btn-transparant {
    background-color: transparent;
} */
  
.custom-border {
    border-style: dashed;
    border-color: var(--bs-white);
    border-width: 3px;
}
 
.glow {
  animation: move 5s linear infinite;
  offset-path: rect(0% auto 100% auto);
  background: radial-gradient(#fff, #f1f5f9, transparent);
}

@keyframes move {
  0% {
    offset-distance: 0%;
  }

  100% {
    offset-distance: 100%;
  }
}
 
/* about Us */
.about-us-content {
    padding: 50px 0;
}
.terms-box h1 {
    font-size: 35px;
    margin-bottom: 15px;
}
.terms-box h2 {
    margin-bottom: 15px;
    color: var(--third-color); 
}
.terms-box h2 span {
      font-size: 24px !important ;
      font-weight: 600 !important;
}
.terms-box p:not(:last-child) {
    margin-bottom: 15px;
}

.terms-box ul li { 
    margin-bottom: 10px;
}

.terms-box ul {
    margin-bottom: 15px !important;
    list-style: inherit;
     margin-left: 15px !important;
}

/* footer */
.footer-main {
    background-color: var(--secondary-color);
}

/* Contact Us */
.Social-Share hr {
    margin: 20px 0;
}

.contact-details {
    background-color: var(--secondary-color);
}

.payment-type-single {
    border-bottom: 1px solid var(--bs-black);
    padding: 10px 0;
}
 
/* how-it-work */
.how-it-work-section {
    background-image: url('https://avatars.mds.yandex.net/get-altay/11004775/2a0000018be70a003b3d235aa36f7e986ac0/XXXL');
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover !important;
}

.work-card:hover {
    box-shadow: 0 2px 7px rgba(42, 56, 166, 0.2);
    border: 1px solid var(--primary-color);
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}
.work-card:hover h4 {
    color: var(--third-color);
}
.how-it-work-overlay {
    position: absolute;
    background: rgb(0 0 0 / 73%) none repeat scroll 0 0;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.how-it-work-content {
    z-index: 5;
    width: 85%;
    margin: 0 auto;
    position: relative;
    padding: 50px 0;
}

.how-it-work-content h3 {
    color: var(--bs-white);
}

.book-a-table-main {
    background-image: url('https://up2client.com/envato/bermiz-restaurant/main-file/assets/images/menupage-1/Reservation-1.png');
    padding: 70px 0;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

.book-a-table-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgb(11 19 21 / 80%);
}

.book-a-table-content {
    position: relative;
    z-index: 2;
}

.book-a-table-content h2 {
    color: var(--bs-white);
    text-align: center;
    font-size: 40px; 
}

.book-a-table-content p {
    color: var(--bs-white);
    font-size: 18px;
    line-height: 1.5;
    margin-top: 8px;
}

.book-a-table-content p span {
    color: var(--primary-color);
    font-weight: bold;
}

.custom-design-input {
    border: 1px solid #FFDE9F !important;
    background-color: transparent;
    color: #FFF;
    font-size: 16px;
    font-family: Lexend;
    line-height: 10px;
    padding: 10px 15px;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
/* nice slect css  */
.nice-select {
    border: 1px solid #FFDE9F !important;
    background-color: transparent !important;
    color: #FFF !important;
    font-size: 16px !important;
    font-family: Lexend !important;
    line-height: 20px !important;
    padding:10px 15px !important;
    width: 100% !important;
    height: auto !important; 
}

.nice-select .nice-select-dropdown {
    right: 0;
    border: 1px solid #d1d1d1 !important;
    background-color: #838383 !important;  
}

.nice-select:focus {
  outline: none;
  border-color: #ef4444; 
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color:var(--third-color) !important;
    font-weight: 400 !important;
}

.nice-select:after {
    height: 7px !important;
    width: 7px !important;
    border-bottom: 2px solid #ffffff !important;
    border-right: 2px solid #ffffff !important;
}

p:empty {
    display: none;
}

.product-des p {
    margin: 10px 0;
}

.input-design-icon {
    padding-right: 20px;
    color: var(--bs-white) !important;
}

.custom-design-input option {
    background-color: var(--bs-black);
}

.book-a-table-form-wrapper {
    width: 100%;
}

.drawer-close-btn {  
    color: lightslategray;
    font-size: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0px 3px 10px 1px rgb(0 0 0 / 10%);
    font-weight: 800;
}

.responsive-custom-menu a {
    color: var(--bs-black);
    font-weight: 600;
    font-size: 14px;
}

.area-address p:not(:last-child) ,
.address-block p:not(:last-child) {
    margin-bottom: 6px !important;
}

.address-block h3 {
    margin-bottom: 15px;
}

.profile-img-head {
    height: 40px;
    width: 40px;
}

.profile-content {
    font-size: 14px;
}

.profile-dropdown-menu a:hover {
    background-color: var(--primary-color) !important;
    color: var(--bs-white) !important;
}

.order-dtl-p p {
    margin-bottom: 5px !important;
}

@media (max-width : 1024px) { 
    .how-it-work-content { 
        width: 60%; 
    }
    .main-banner {
        padding: 100px 0px 140px;
        min-height: 400px;
    }
}

@media (max-width : 992px) { 

    .book-a-table-content h2 {
        font-size: 25px;
    }
}

@media (max-width : 767px) {

    .how-it-work-section {  
        background-size: 200%;
    }
    .how-it-work-content { 
        width: 90%; 
    }

    .terms-box h1 {
        font-size: 25px;
    } 

    .product-card {
        padding: 15px;
    }
}

@media (max-width : 568px) { 
 
    .profile-content {
        display: none;
    }
    .profile-img-head {
        height: 30px;
        width: 30px;
    }
    #profileImage {
        font-size: 12px;
    }
    .footer-responsive {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }

    .time-count-responsive {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px !important;
    }
 
    .book-a-table-main { 
        padding: 40px 0;  
    }

    .responsive-header-content p {
        font-size: 14px;
    }

    .header-logo {
        width: 70px !important;
    } 

    .how-it-work-content { 
        width: 100%; 
        padding: 40px 0px;
    }
    .subscribe-mail {
        max-width: 100px;
    } 
    .main-banner {
        padding: 70px 0 70px;  
    }
    /* about us section  */
    .terms-box h2 { 
        margin-bottom: 12px; 
    }
    .terms-box h2 span {
        font-size: 18px !important;
        font-weight: 500 !important;
    }
    .terms-box p {
        font-size: 14px;
    } 
    .terms-box h1 {
        font-size: 20px;
    } 
    /* book table section  */
    .book-a-table-content p { 
        font-size: 15px;  
    }

    .order-dtl-p p ,
    .order-dtl-p ul li span {
        font-size: 14px !important;
    }

    .cart-btn { 
        font-size: 14px;
    }
}
@media (max-width : 425px) { 

    .product-card-wrapper {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }
}

@media (min-width : 1024px) {
    .responsive-header-main {
        display: none;
    }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.profile-dropdown-wrapper a,
.profile-dropdown-wrapper button {
    color: var(--bs-black) !important;
}

#custom-open-modal {
    display: flex;
    border-radius: 20px;
    align-items: center;
    margin-left: 20px;
}
 
.like-btn {  
    background-color:  rgb(220, 102, 38);
    width: 50px;
    height: 100%; 
    padding: 10px;
} 
 .veg-btn {
    position: absolute;
    top: 20px;
    left: 20px;
 }
.veg-btn img {
    width: 16px;
    height: 16px;
    border-radius: 0;
}

.modal {
    z-index: 99;
}

.error {
  font-size: 13px;   /* smaller text */
  color: #fd143a;    /* red color */
  margin-top: 4px;   /* spacing from input */
  display: block;    /* always separate line */
}

.relative.rounded-md label.error {
  position: absolute;
  bottom: -18px;  /* puts error below without increasing height */
  left: 0;
  font-size: 13px;
  margin: 26px;
  padding-left: 100px;
}

.col-span-full label.error {
    padding-top: 10px !important;
}

.terms-box ol {
    margin: 10px 0 !important;
}

#LocationModal .deliveryPickup.active, #LocationModal .deliveryPickup:hover{
    border-bottom: 2px solid var(--third-color) !important;
    color: var(--third-color) !important;
}

@media screen and (max-width: 769px) {
    .outlet-select select {
        width: 100% !important;
        margin: 5px 0;
    }
}

.order-details-container { 
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.order-details-container h1 {
    text-align: center;
    color: #333;
}

.order-section, 
.items-section, 
.payment-section, 
.store-section, 
.delivery-section,
.map-section {
    margin-bottom: 25px;
}

.order-section h2 {
    margin-top: 0;
}

.items-section ul {
    list-style: none;
    padding: 0;
}

.items-section ul li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.total {
    margin-top: 10px;
    font-size: 1.1em;
    color: #222;
}

.payment-section h3,
.store-section h3,
.delivery-section h3,
.map-section h3 {
    margin-bottom: 10px;
    color: #444;
}

.loader {
    height: 5px;
    width: 100%;
    --c:no-repeat linear-gradient(var(--secondary-color) 0 0);
    background: var(--c),var(--c),var(--primary-color);
    background-size: 60% 100%;
    animation: l16 3s infinite;
}
@keyframes l16 {
    0%   {background-position:-150% 0,-150% 0}
    66%  {background-position: 250% 0,-150% 0}
    100% {background-position: 250% 0, 250% 0}
} 

.container {
    min-width: 100% !important;
} 

.product-card-cart-btn, .wishlist-cart-btn{
    cursor: pointer;
}