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

@font-face {
    font-family: 'Melodrama';
    src: url('/new-design/fonts/melo-drama/Melodrama-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DMSans';
    src: url('/new-design/fonts/dm-sans/static/DMSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html::-webkit-scrollbar:horizontal {
  display: none;
}

html {
  overflow-x: hidden; 
  
  overflow-y: auto;   
}

html {
  -ms-overflow-x: hidden; 
  -ms-overflow-y: auto;   
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Melodrama', sans-serif;
    font-weight: 600; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
}
html {
  scroll-behavior: smooth;
}

/* Body content */
body, p, li, span, a {
    font-family: 'DMSans', sans-serif;
    font-weight: 400; 
    line-height: 1.6; 
}

body{
    background-color: #1C1612 !important;
}

/* scroll to top start */
/* Scrool To Top */
#scrollup{
    width: 45px;
    height: 45px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    overflow: hidden;
    z-index: 999;
}
.scroll-to-top{
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #e79434;
    font-size: 15px;
    padding: 0;
    line-height: 40px;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transform: translateY(150%);
    transition: all 0.3s ease-in-out;
}
#scrollup.show{ opacity: 1; }
#scrollup.show .scroll-to-top{
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}
.scroll-to-top:hover{
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}
.scroll-to-top:focus{
    outline: none;
}
/* scroll to top end */

/* loader start */

/* Preloader */

.handle-preloader{
    /* visibility: hidden; */
	background-color:#202020;
}

.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader-close{
  position: fixed;
  z-index: 99999999;
  font-size: 18px;
  background: #fff;
  width: 30px;
  height: 30px;
  color:#000000;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
  right: 15px;
  top: 15px;
  border-radius: 0%;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner{
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 150px;
  margin: 0 auto 45px auto;
  width: 150px;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top:0;
  position: absolute;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading{
  font-weight: 500;
  letter-spacing: 15px;
  display: inline-block;
  position: relative;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  
  -webkit-text-stroke-color: rgba(17, 17, 17, 0.5); 
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {animation-delay: 0.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {animation-delay: 0.4s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {animation-delay: 0.6s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {animation-delay: 0.8s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before { animation-delay: 1s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before { animation-delay: 1.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before { animation-delay: 1.4s;}
.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading{
  
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  color: #111111;
}

.handle-preloader .animation-preloader .spinner{
  border: 3px solid #ffffff;
  border-top-color: rgba(17, 17, 17, 1); 
}

/* AnimaciÃƒÆ’Ã‚Â³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}
@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .handle-preloader .animation-preloader .txt-loading .letters-loading {font-size: 30px; letter-spacing: 10px;}
}


/* loader end */


/* sidebar start */
.l-sidebar {
  position: fixed;
  top: 0;
  right: 0px;
  width: 17%;
  height: 100%;
  background-color: #1C1612 ;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  visibility: hidden; /* instead of display */
}
.anim-explode{
     position: absolute;
    width: 500%;
    height: 500%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    overflow: visible;
}
/* Open state */
.l-sidebar.open {
  transform: translateX(0);
  visibility: visible;
}
.l-menu h2{
    color: #ffffff;
    text-align: center;
}
.menu-heading{
    padding: 13px;
    background-color: #B58C67;
}
.side-items{
    background-color: #1C1612;
    padding-left: 0px;
}

.single-side-item{
    border-bottom: 1px solid #B58C67;
}
.single-side-item a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    width: 100%;
    color: #d5cdcd;
}
.single-side-item a span{
    display: flex;
    align-items: center;
    gap: 5px;
    color: #d5cdcd;
}
.single-side-item{
    padding: 10px;
    /*display: flex;*/
}
.connect-head{
    color: white;
    font-size: 16px;
    font-weight: lighter;
    background-color: #B58C67;
    width: 100%;
    justify-content: center;
    display: flex;
    padding: 10px;
    padding-left: 0px !important;
}
.single-side-item a i{
        color: #bd1531;
    font-size: 20px;
}

.height-100 {
    height: 100vh
}
/* sidebar end */
/* top head start */
.top-head{
    background-position: center;
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
    background-image: url("/new-design/images/home-assets/banner-home-new.jpeg");
    height: 684px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.inner-page-nav{
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: max-content !important;
}
.headings-sec{
    color: #ddd3d3;
}
.headings-sec h1{
    font-size: 2rem;
}
.main-nav-bar{
    width: 100%;
}
.main-divide-nav{
    display: flex;
}
.main-nav-logo img{
    width:118px;
    height: 84px;
}
.center-nav{
    width: max-content;
}
.left-nav{
    height: 50px;
    width: 100%;
    border-bottom: 1px solid #FFFFFF;
}
.left-nav ul li{
    color: #FFFFFF;
}
.left-nav ul li a{
    text-decoration: none;
    color: white;
}
.left-nav ul{
    list-style: none;
    display: flex;
    gap: 15px;
    align-items: center;
}
.main-nav-logo{
    padding: 10px;
}
.banner-heading-custom{
    left: 10%;
    top: 40%;
    position: relative;
    padding: 10px;  
}
.right-nav{
    height: 50px;
    width: 100%;
    border-bottom: 1px solid #FFFFFF;
    display: flex;
    justify-content: end;
    align-items: center;
    padding-right: 20px;
}
.right-nav ul{
    display: flex;
    gap: 15px;
    align-items: center;
    list-style: none;
}
.right-nav ul li a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.right-nav ul li a{
    text-decoration: none;
    color: #FFFFFF;
}
.main-divide-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.book-btn{
    background-color: #BB822C;
    padding: 10px 20px 10px 20px;
}
.menu-btn{
    border-left: 1px solid #FFFFFF;
}
.other-pg{
    border-left: none;
}
.hr-rot{
    rotate: 90deg;
    color: white;
}
.main-home-banner{
    color: #FFFFFF;
}
.main-home-banner h5{
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 1%;
}
.main-home-banner h1{
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 1%;
}
.headings-sec{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.bottom-logos{
    display: flex;
    justify-content: space-between;
    padding:5px;
    margin-bottom: 30px;
}
.follow-group{
    display: flex;
    rotate: 90deg;
    gap: 10px;
    justify-content: center;
    align-items: center;
    top: -70px;
    left: -155px;
    position: relative;
}
.follow-group img{
    margin-top: -7px;
}
.center-logos{
    display: flex;
    gap: 30px;
}
.follow-group hr{
    margin-bottom: -20px;
    width: 60px;
    height: 45px;
}
.follow-group , .whatsapp-icon{
    width: 25%;
}
.whatsapp-icon{
    display: flex;
    justify-content: end;
}
.whatsapp-icon img{
    margin-right: 20px;
}

/* top-head-end */

/* category home styling */
.category-head{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    margin-top: 75px;
    margin-bottom: 50px;
    color: #FFFFFF;
    overflow: hidden;
}
.category-wrapper {
    width: 100%;
    margin-top: 75px;
    margin-bottom: 50px;
}

.swiper-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.category-card {
    display: flex !important;
    text-transform: uppercase;
    justify-content: center !important;
    align-items: center !important;
    height: 330px !important;
    background-size: cover;
    width: 250px !important;
}

.border-card {
    display: flex;
    justify-content: center;
    align-items: end;
    border: 1px solid transparent;
    border-image: linear-gradient(to bottom, #B58C67, transparent) 1;
    width: 230px;
    height: 310px;
}

.text-uppercase {
    text-transform: uppercase;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); 
    z-index: 10; 
    color: #B58C67 !important;
    border-radius: 50%;
    padding: 10px;
    background-color: white;
    font-size: 10px; 
}

.swiper-button-next {
    right: 10px; 
}

.swiper-button-prev {
    left: 10px; 
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #B58C67;
    color: white !important;
    border-radius: 50%;
}

.swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5; 
}
.swiper-navigation-icon{
    height: 70% !important;
}
/* category home styling end */

/* welcome text start */
.welcome-wrapper{
    display: flex;
    width: 100%;
    margin-bottom: 80px;
    justify-content: center;
    position: relative;
    align-items: center;
}
.middle-welcome-section{
    display: flex;
    background:url('/new-design/images/home-assets/box image-01.jpeg');
    background-size: cover;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    padding: 150px;
    padding-top: 80px;
    padding-bottom: 80px;
    height: 750px;
    width: 686px;
    position: relative;
}
.middle-welcome-section p,span{
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    
}
.welcome-short{
    display: flex;
    color: #BB822C;
    gap: 25px;
    padding-left: 0px;
    margin-bottom: 0px;
}
.welcome-short li{
    font-size: 15px;
    text-transform: uppercase;
}
.go-to-menu{
    color: white;
    border: 1px solid #BB822C;
    padding: 15px;
    text-decoration: none;
}
.go-to-menu:hover{
    background-color: #BB822C;
    color: white;
    border: 1px solid #FFFFFF;
    transition: 0.3s ease-in;
}
.second-absolute, .first-absolute{
    position:absolute;
    z-index: 5;
}
.first-absolute{
    left: 0;
    width: max-content;
}
.second-absolute{
    right: 0;
    bottom: 20px;
    width: max-content;
}
/* welcome text end */

/* dinning experience start */
.main-exp-box{
    height: 800px;
    background: linear-gradient(to top, #1C1612 40%, transparent 70%), url('/new-design/images/home-assets/Dinning-Background-Image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 80px;

}
.main-exp-box{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
}
.sec-title{
    display: flex;
    justify-content: center;
    color: white;
}
.sec-title h2{
    font-weight: 600;
}
.experience-card{
    height: 400px !important;
    background-size: cover;
    width: 368px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-right: 0px !important;
}
.experience-border{
    height: 90%;
    width: 90%;
    border: 1px solid transparent;
    border-image: linear-gradient(to bottom, #B58C67, transparent) 1;
}
.custom-experience-wrap{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.experience-border{
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    transition: background 0.6s ease, backdrop-filter 0.6s ease;
}
.experience-border:hover{
    backdrop-filter: blur(10px);
}
.exp-title{
    text-transform: uppercase;
}
.experience-border:hover .exp-hidden-sec{
    display: block;
    height: 100%;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.experience-border:hover .main-card-title{
    display: none;
}
.experience-border .exp-hidden-sec{
    display: none;
    padding: 20px;
    transition: 0.6s ease;
}
.main-card-title{
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.6s ease;
}
.exp-desc{
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    text-align: center;
}
.exp-hidden-sec a{
    background-color: #BB822C;
    width: max-content;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    transition: 0.6s ease;
    border-radius: 2px;
}
.exp-hidden-sec a:hover{
background-color: #1C1612;
color: white;
}
.experience-wrapper{
    width: 100%;
    /* padding: 50px; */
    overflow: hidden;
}
.experience-navigate-prev,.experience-navigate-next{
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 10 !important;
    color: #B58C67 !important;
    border-radius: 50%;
    padding: 10px;
    background-color: white;
    font-size: 10px;
}
.swiper-custom{
    position: relative;
}
/* dinning experience end */

/* home menu start */
.tabs {
  width: min(100%, min-content);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.custom-overflow-hidden{
    overflow: hidden !important;
}

[role='tablist'] {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  width: max-content;
  border-bottom: 1px solid #BB822C;
}

[role='tab'] {
    border: 0px;
  flex: 1 0 auto;
  padding: 10px 10px;
  font-weight: 600;
  background-color: transparent;
  font-size: 14px;
  text-transform: uppercase;
  color: white;
  transition: background 0.15s ease-in-out;
}

[role='tab']:hover {
  cursor: pointer;
  color: white;
}

[role='tab'][aria-selected='true'] {
   color: white;
  position: relative;
  
  &:after {
    content: '';
    display: block;
    width: 100%;
    border-top: 4px solid #BB822C;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
  }
}

[role='tabpanel'] {
  min-height: 300px;
  border: 0px;
  padding: 40px;
  margin-top: -2px;
  background-color: transparent;
  position: relative;
  z-index: 2;
}

[role='tabpanel']:not([tabindex]) {
  display: none;
}

.tabpanel-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.img-placeholder {
  position: relative;
  margin: 15px 0 0 10px;
  width: 100%;
  max-width: 250px;
  
  .backboard {
    width: 100%;
    height: 150px;
    border: 5px solid black;
    border-radius: 20px;
    position: absolute;
    top: -15px;
    left: -10px;
  }
  
  .content {
    width: 100%;
    height: 150px;
    background: var(--pinkish-gray);
    border: 5px solid black;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    overflow: hidden;
  }
  
  .sun {
    width: 35px;
    height: 35px;
    border: inherit;
    border-radius: 50%;
    position: absolute;
    top: 5%;
    right: 10%;
  }
  
  .hill {
    width: 100px;
    height: 100px;
    background: var(--pinkish-gray);
    border: inherit;
    transform-origin: center;
    rotate: 45deg;
    position: absolute;
    top: calc(100% - 50px);
    
    &.taller {
      width: 250px;
      height: 250px;
    }
    
    &.right {
      right: 0;
    }
  }
}

.eyebrow {
  color: var(--purple);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 5px;
}

.heading {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

@media (min-width: 660px) {
  [role='tab'] {
    flex: unset;
  }
  
  [role='tabpanel'] {
    border-radius: 0 15px 15px;
  }
}

@media (min-width: 768px) {
  .tabpanel-content {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
  
  .content-img {
    flex: 0 0 200px;
  }
  
  .heading {
    font-size: 2rem;
  }
}

.home-menu{
    background-color: #302117;
}
.menu-sec-title{
    text-align: center;
    padding: 50px;
}
.menu-sec-title h2{
    font-weight: 600;
    line-height: 36px;
    text-transform: uppercase;
}
.home-menu-display-img{
    width: 556px;
    height:480px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu-home-items{
    width: 556px;
    height: 464px;
}
.main-border-card{
    display: flex;
    justify-content: center;
    align-items: end;
    border: 1px solid transparent;
    border-image: linear-gradient(to bottom, #B58C67, transparent) 1;
    width: 90%;
    height: 90%;
}
.menu-order-img img{
    width: 80px;
    height: 80px;
}
.custom-flex-item-menu-desc{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.home-menu-item-desc{
    display: flex;
    flex-direction: column;
}
.content-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.items-center{
    display: flex;
    align-items: center;
    gap: 10px;
}
.main-items-column{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.go-to-menu-2{
    color: white;
    border: 1px solid #BB822C;
    padding: 10px;
    text-decoration: none;
    transition: 0.4s ease-in;
}
.title-span{
    text-transform: uppercase;
}
.go-to-menu-2:hover{
    color: white;
    background-color: #BB822C;
}
/* home menu end */

/* video home start */
.main-video {
  background: 
    linear-gradient(rgba(14, 12, 12, 0.6), rgba(31, 17, 8, 0.6)), 
    url('/new-design/images/home-assets/Video-Background-Image.jpg') center center/cover no-repeat;
  position: relative;
  height: 400px;
  display: flex;
  /* margin-top: 50px; */
  justify-content: center;
  align-items: center;
}


.play-btn img {
  
  transition: transform 0.3s ease;
}

.play-btn img:hover {
  transform: scale(1.1);
}
/* video home end */

/* insta start */
.instagram-section {
    text-align: center;
    margin-top: 50px;
}
.instagram-section h2,{
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
}
.testimonial-sec h2 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
     text-align: center;
}
.image-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.image-item {
    width: 23%;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
}

.image-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.image-item p {
    font-size: 18px;
    margin-top: 10px;
    font-weight: bold;
    color: #fff;
}

.social-icons {
    margin-top: 30px;
}

.social-icons{
    margin-top: 100px;
}
@media (max-width: 768px) {
    .image-item {
        width: 48%;
    }
}

@media (max-width: 480px) {
    .image-item {
        width: 100%;
    }
}
.image-item{
    width: 233px !important;
    height: 233px !important;
    overflow: visible;
}
.image-item img{
    width: 233px !important;
    height: 233px !important;
}
.img-1 img{
    rotate: 4.98deg;
    overflow: visible;
}
.img-3 img{
    rotate: 5.08deg;
    overflow: visible;
}
.img-4 img{
    rotate: -0.09deg;
    overflow: visible;
}
.img-2 img{
    rotate: 0.48deg;
    overflow: visible;
}
/* insta end */

/* testimonail start */
.testimonial-main{
    width: 100%;
    height: 450px;
    margin-top: 50px;
    background-color: #302117;
}
.testimonial{
    width: 100%;
}
.testimonial{
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}
.mark-box{
    background-color: transparent;

}
.quote{
    width: 70%;
}
.quote i{
    font-weight: 300;
    font-size: 30px;
    text-align: center;
}
.name span{
    margin-top: 20px;
    font-size: 18px;
    font-style: bold;
    color: #BB822C;
}
.mark{
    font-weight: 900;
    font-size: 80px;
    color: #BB822C !important;
    background-color: transparent !important;
}
/* testimonail start */

/* footer */
.footer {
     color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.footer-item {
    max-width: 300px;
}

.footer-item h3 {
    opacity: 50%;
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;  /* Gold color for headings */
}

.footer-item p {
    font-size: 14px;
    line-height: 1.6;
    margin: 5px 0;
}

.footer-bottom {
    font-size: 14px;
    color: #aaa;
}

.footer-bottom p {
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
}
.footer-logo{
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-logo hr{
    width: 40%;
}
.custom-order-right{
    padding-right: 10px;
 border-right: 1px solid white;
}



/* menu page start */
.custom-menu-banner-size img{
width: 100%;
height: 100%;
}

.banner-next,
.banner-previous {
    position: absolute;
    top: 65% !important;
    transform: translateY(-50%); 
    z-index: 10; 
    color: #B58C67 !important;
    border-radius: 50%;
    padding: 10px;
    margin: 20px;
    border: 1px solid #BB822C;
    background-color: #1C1612;
    font-size: 10px; 
}

.banner-next {
    right: 10px; 
}

.banner-previous {
    left: 10px; 
}

.banner-previous:hover,
.banner-next:hover {
    background-color: #B58C67;
    color: white !important;
    border-radius: 50%;
}
.inner-page-nav .main-nav-bar .left-nav{
    border-bottom: none;
    
}
.inner-page-nav .main-nav-bar .left-nav ul{
    margin-bottom: 0px;
    height: 100%;
    
}
.inner-page-nav .main-nav-bar .right-nav{
    border-bottom: none;
}
.inner-page-nav .main-nav-bar .right-nav ul{
    margin-bottom: 0px;
    height: 100%;
}
.main-tab-category{
    position: sticky !important;
    top: 0px;
    z-index: 999;
    background-color: #1C1612 !important;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style:none;
    background: transparent;
    height: 80px;
    display: flex !important;
    align-items: center !important;
}
.main-tab-category::-webkit-scrollbar {
  display: none; /* Hide scrollbar (Chrome, Safari) */
}
.our-menu-tab-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow-x: auto;
    white-space: nowrap;
}

.custom-menu-tab ul {
    width: max-content;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.custom-menu-tab ul::-webkit-scrollbar {
    display: none;
}

.our-menu-tab-nav ul {
	width: 100%;
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 9px;
    padding: 5px 40px;
    margin: 0;
    background-color:#1c1612;
    border: none;
    color: #fff !important;
    border-radius: 100px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.our-menu-tab-nav ul:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 10%;
    border-radius: 30px;
    z-index: 0;
}

.our-menu-tab-nav ul li {
    position: relative;
    text-align: center;
    flex-shrink: 0;
}

.our-menu-tab-nav ul li:last-child {
    padding-right: 0;
}

.our-menu-tab-nav ul li .nav-link {
    display: block;
    width: 100%;
    background-color: transparent ;
    border: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2em;
    padding: 0;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}

.our-menu-tab-nav ul li .nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -32px;
    border-radius: 50%;
    transform: translateY(-50%);
    height: 8px;
    width: 8px;
}
.scroll-right i, .scroll-left i{
    color: #BB822C !important;
    font-size: larger;
}

.our-menu-tab-nav ul li:last-child .nav-link::before {
    display: none;
}

.our-menu-tab-nav ul li .nav-link.active,
.our-menu-tab-nav ul li .nav-link:hover {
    background-color: transparent;
    }


.scrollable-menu-container {
    z-index: 97;
    top: 0%;
    position: sticky;
    /* padding: 10px; */
    text-align: center;
    overflow: hidden;
}

.scrollable-menu-tabs {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    padding: 0;
    list-style: none;
}

.scrollable-menu-list {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
}
.scrollable-menu-list li a{
    color: #fff;
    text-decoration: none;
}

.scrollable-menu-list::-webkit-scrollbar {
    display: none;
}

.scroll-arrow {
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
    color: #ffffff;
}


.scrollable-menu-item {
    flex-shrink: 0;
}

.scrollable-menu-link {
    display: block;
    width: 100%;
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2em;
    padding: 10px 15px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}

.scrollable-menu-active {
    color: white;
    background: #BB822C;
    border-radius: 10px;
}
.scrollable-menu-link:hover{
    color: #fff;
}
.scrollable-menu-link.active:hover {
    color: #ffffff;
}
/* menu page end */

/* menu styling start */
.product-menu-card{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 270px;
    height: 380px;
}
.tab-main-content{
    display: flex;
}
.left-road,.right-road{
    width: 15%;
}
.pump-abso{
    position: absolute;
    top: 275px;
    left: 4px;
    z-index: 99;
}
.pump-abso-2{
    position: absolute;
    top: 275px;
    right: 4px;
    z-index: 99;
}
.left-road-img{
    bottom: 0;
    height: max-content !important;
    position: sticky;
}
.right-road-img{
    position: sticky;
    top: 0;
    height: max-content !important;
}

.main-menu-main{
    width: 70%;
    display: flex;
    justify-content: center;
}
.main-menu-wrapper {
    display: flex;
    margin-bottom: 30px;
    flex-direction: column;
    gap: 45px;
    width: 100%;
    /* justify-content: center; */
}
.search-bar-custom{
    width: 50%;
    margin-top: 50px;
    display: flex;
    background-color: #FFFFFF;
    border-radius: 120px;
    border: 1px solid #BB822C;
}
.search-bar-custom input{
    border: none;
    width: 100%;
    padding: 20px;
    border-radius: 120px;
    background-color: #FFFFFF;
}
.search-bar-custom img{
margin-right: 20px;
margin-top: 5px;
margin-bottom: 5px;
object-fit: contain;
}
.custom-top-bottom{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.top-pro-sec{
    padding: 10px;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.custom-menu-price{
font-size: 18px;
font-weight: 500;
}
.bg-lack-custom-product{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px 5px 10px;
    background-color: #19160F;
}
.bottom-pro-sec span{
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -1%;
    text-transform: uppercase;
}
.custom-center{
    display: flex;
    justify-content: center;
}

/* road styling start */
.first-car,.second-car,.third-car,.fourth-car,.fifth-car,.sixth-car,.seventh-car,.eight-car,.ninth-car,.tenth-car{
    position: absolute;
    opacity: 1;
    top: -180px !important;
    z-index: 99;
    max-width:55px;
    /* bottom: 0px; */
}
.right-car-1,.right-car-2,.right-car-3,.right-car-4,.right-car-5,.right-car-6,.right-car-7,.right-car-8,.right-car-9,.right-car-10{
    position: absolute;
    opacity: 1;
    max-width:55px;
    z-index: 99;
    rotate: 180deg;
    /* bottom: 0px; */
}
.first-car{
    left: 130px;
}
.second-car{
    left: 130px;
}
.third-car{
    left: 130px;
}
.fourth-car{
    left: 130px;
}
.fifth-car{
    left: 130px;
}
.sixth-car{
    left: 130px;
}
.seventh-car{
    left: 130px;
}
.eight-car{
    left: 130px;
}
.ninth-car{
    left: 130px;
}
.tenth-car{
    left: 130px;
}
.right-car-1{
    left: 30px;
}
.right-car-2{
    left: 20px !important;
}
.right-car-3{
    left: 10px !important;
}
.right-road,.left-road{
    position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
    /* rotate: 180deg; */
    /* height: 100%; */
}
.right-road-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}
.right-road .first-car,.right-road .second-car,.right-road .third-car,.right-road .fourth-car,.right-road .fifth-car{
left: 70px;
}
.car-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.right-car-3,.right-car-1,.right-car-2{
    /* rotate: 180deg !important; */
    /* bottom: 60% !important; */
}
.search-input:focus{
    border: none !important;
    outline: none !important;
}
.search-input:active{
    border: none !important;
    outline: none !important;
}
.search-input:focus-visible{
    border: none !important;
    outline: none !important;
}
.search-input:active{
    border: none !important;
    outline: none !important;
}
.search-input:focus-within{
    border: none !important;
    outline: none !important;
}
.search-input:target{
    border: none !important;
    outline: none !important;
}

.main-tab-category ul{
    margin-bottom: 0px;
}
.left-road-img,.right-road-img{
    height: 100%;
    width: 100%;
}
.product-main-card{
    border:1px solid #BB822C;
    position: relative;
    border-radius: 10px;
    background-color: #f1ddc2;
    width: 220px !important;
    height: 340px !important;
    transition: transform 0.5s ease;
    overflow: hidden; /* important */
}

/* SCALE */
.product-main-card:hover{
    border:2px solid #BB822C;
    cursor: pointer;
    transform: scale(1.1);
}
.line-clamp-2{
    display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  overflow: hidden;
}


.main-product-description{
    background-color: #f1ddc2;
    color: black;
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 50% !important;
}
.main-product-img{
    display:flex;
    justify-content:center;
    height: 50%;
}
.main-product-img img{
    padding:4px;
width: 100%;
/*border-top-left-radius:10px;*/
/*border-top-right-radius:10px;*/
border-radius:10px;
    height: 100%;
}
.main-product-description{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.main-product-img{
width: 220px !important;
    /*height: 180px;*/
}
.main-product-title span{
    font-size: 18px;
    font-weight: 600;
}
.main-product-inner-desc p{
font-size: 14px;
line-height: 20px;
color: #000000;
}
.main-product-price{
    display: flex;
    justify-content: space-between;
}
.main-product-price span{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    line-height: 30px;
}
.main-product-price a{
    border-radius: 4px;
    background-color: #BB822C;
    color: #fff;
    padding: 5px;
    text-decoration: none;
}
.main-item{
    display: flex;
    justify-content: center;
}
/* .main-nav-bar{
    position: sticky;
    top: 0;
    z-index: 99999999;
} */
/* road styling end */
/* .overflow-hide-c{*/
/*    overflow: hidden !important;*/
/*} */
.box-wrap{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.light-dark{
    width: 60px;
    padding: 10px;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    height: max-content;
    position: fixed;
    top: 20%;
    z-index: 999998;
    right: 0;
    background-color: #BB822C;
}
.search-bar-custom{
    width: 70% !important;
}
.light-dark i{
    font-size: 25px;
    transition: linear 90deg ease-in;
    color: #19160F;
}

/* menu styling end */




/* cart page start */
.cart-wrapper{
    margin-top: 80px;
}

.cart-container {
    width: 90%;
      margin: 30px auto;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cart-left {
      flex: 1 1 65%;
    }
.img-section{
    border-radius: 10px;
    /* padding: 5px; */
    background-color: #BB822C;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .cart-right {
        position: relative;
      flex: 1 1 30%;
      background: #302117;
      border-radius: 12px;
      padding: 20px;
      height: fit-content;
    }

    .cart-item {
      background: #302117;
      border-radius: 12px;
      padding:5px;
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
    }

    .cart-item img {
      width: 150px;
      height: 150px;
      border-radius: 8px;
      object-fit: cover;
      overflow: hidden;
      object-position: center;
      object-view-box: inset(-20% -6% -20% -6%);
    }

    .cart-item .item-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      margin-top: 10px;
      margin-left: 15px;
    }
    .item-info span{
        color: white;
    }
    .end-div{
        justify-content: end;
    flex-direction: column;
    display: flex
;
    }

    .cart-item h5 {
      margin: 0;
      font-size: 1rem;
      color: #fff;
    }

    .cart-item p {
      margin: 0;
      font-size: 0.85rem;
      color: #aaa;
    }

    .qty-box {
      display: flex;
      align-items: center;
      gap: 10px;
      height: 60px;
      width: fit-content;
      border-radius: 30px;
      padding: 5px 10px;
    }

    .qty-box button {
      border: none;
      background: #BB822C;
      color: #fff;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      font-size: 18px;
    }
    .page-title{
        margin-top: 10px;
        margin-left: 70px;
    }

    .qty-box span {
      color: #fff;
      font-weight: 600;
      min-width: 25px;
      border: 2px solid #BB822C;
      border-radius: 100px;
      width: 70px;
      text-align: center;
    }

    .price-tag {
      background: #BB822C;
      color: #fff;
      border-radius: 6px;
      padding: 4px 10px;
      font-weight: 600;
    }

    .suggested {
      background: #BB822C;
      color: #fff;
      border-radius: 6px;
      font-size: 0.75rem;
      padding: 2px 8px;
      position: absolute;
      top: 5px;
      right: 5px;
    }

    .add-btn {
      background: #BB822C;
      border: none;
      width: 250px;
      color: #fff;
      border-radius: 8px;
      padding: 8px 20px;
      font-weight: 600;
    }

    .add-btn:hover {
      background: #BB822C;
    }

    .add-more {
      background: #BB822C;
      border: none;
      color: #fff;
      position: relative;
      border-radius: 8px;
      padding: 10px;
      font-weight: 600;
      width: 100%;
      margin-top: 10px;
    }

    .voucher-box {
      border: 2px dashed #aaa;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      margin-bottom: 15px;
    }

    .voucher-box span {
      color: #aaa;
      font-size: 0.9rem;
    }

    .total-section {
      border-top: 1px solid #333;
      padding-top: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 15px;
    }

    .continue-btn {
        text-decoration: none;
      background: #BB822C;
      border: none;
      color: #fff;
      border-radius: 8px;
      padding: 12px;
      font-weight: 600;
      width: 100%;
      display: flex;
      justify-content: space-between;
      margin-top: 15px;
    }

    .continue-btn i {
      margin-left: 8px;
    }
    .price-text{
        color: #aaa !important;
    }
    .item-info ul{
      list-style: none;
      padding-left: 0px;
      color: #aaa;
    }
    .custom-sub-desc{
        display: flex;
        justify-content: space-between;
    }
    .sub-price-tag{
        color: #aaa;
    }
    .bottom-flex{
        align-items: center;
        display: flex;
        justify-content: space-between;
    }
    .voucher-box strong{
        color: #fff;
    }
    .total-section{
        color: #fff;
    }
    .increase .fa-plus{
        background-color: transparent;
        padding: 0;
        margin-left: 0px;
        font-size: 14px;
    }
    .section-title{
        text-transform: uppercase;
    }
/* cart page end */



.form-section {
      background: #141414;
      border-radius: 10px;
      padding: 25px;
      border: 1px solid white;
    }
    .section-title{
        color: white;
    }
    .small{
        color: white;
    }
    .bg-checkout-2 img{
        top: 450px;
        bottom: 0px;
        left: 985px;
    }
    .custom-border{
        background-color: #141414 !important;
        color: white;
    }

    .form-control {
      background: transparent;
      border: 1px solid #555;
      color: #fff !important;
      border-radius: 8px;

    }

    .form-control::placeholder {
      color: rgb(175, 164, 164) !important;
    }

    .form-control:focus {
      box-shadow: none;
      border-color: #BB822C;
    }

    .section-title {
      font-weight: 600;
      font-size: 30px;
      margin-bottom: 20px;
    }

    .order-summary {
      background: #BB822C;
      border-radius: 10px;
      padding: 25px;
    }

    

    .order-item {
        color: white;
      padding-bottom: 8px;
      margin-bottom: 10px;
    }

    .total-section {
      border-top: 1px solid #333;
      margin-top: 15px;
      padding-top: 15px;
    }

    .btn-order {
      background: #BB822C;
      color: #fff;
      font-weight: 600;
      border-radius: 8px;
      width: 100%;
      padding: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .btn-order:hover {
      background: #BB822C;
      color: #fff;
    }

    .payment-section {
      margin-top: 20px;
    }

    .payment-option {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px;
      background-color: #202020;
      color: #fff;
    }

    .fa-circle-dot {
      color: #BB822C;
    }

    .fa-plus {
      background: #BB822C;
      color: #fff;
      border-radius: 50%;
      padding: 4px;
      font-size: 10px;
      margin-left: 5px;
    }

    .order-details-toggle {
      cursor: pointer;
    }

    .hidden {
      display: none;
    }
    .checkout-main{
        margin-top: 100px;
    }
    .custom-border{
        padding: 15px !important;
    }
    .total-checkout{
        margin-top: 40px;
        background-color: #202020;
        border-radius: 15px;
    }
    .first-border,.second-border{
        border-bottom: 1px solid #BB822C;
    }
    .first-border{
        padding: 10px;
        display: flex;
        justify-content: end;
        color: white;
    }
    .solid-plus-custom{
        display: flex;
        gap: 5px;
        margin-bottom: 0px;
        align-items: center;
    }
    .plus-icon-custom-2 i{
      background-color: transparent !important;
      border: 1px solid white;
      padding: 10px;
    }
    .total-custom-check{
        display: flex;
        justify-content:space-between;
        color: white;
        align-items: center;
        padding: 10px;
    }
    .total-custom-check p{
        margin-bottom: 0;
    }
    .third-border a{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        background-color: #BB822C;
        color: white;
        text-decoration: none;
    }
    .payment-section{
        margin-bottom: 50px;
    }
    .payment-option{
        border-radius: 10px;
    }
    .bg-checkout-1{
        width: 91%;
    }
    .bg-checkout-1 img{
        top: 500px;
    }
    .bg-cart-1{
        width: 90%;
    }
    .bg-cart-1 img{
        top: 500px;
    }
    .bg-cart-2{
        width: 90%;
    }
    .bg-cart-2 img{
        top: 280px;
    }
/* checkout-page end */



/* thankyoupage start */

.order-status-header {
            font-size: 36px;
            text-align: center;
            font-weight: bold;
            margin-bottom: 40px;
        }

        .order-card {
            margin-top: 20px;
            background-color: #202020;
            border-radius: 15px;
            padding: 10px;
            position: relative;
        }

        .order-card .row {
            margin-bottom: 20px;
        }

        .order-card .col {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .order-details {
            color: white;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .order-details-icon {
            font-size: 24px;
        }

        .order-info {
            font-size: 16px;
        }

        .order-info .text-right {
            font-weight: bold;
        }

        
        
        .total {
            background-color: #BB822C;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            font-size: 20px;
            margin-top: 30px;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            margin-top: 30px;
        }

        .cta-buttons a {
            text-decoration: none;
            font-size: 18px;
            color: #fff;
            padding: 10px 20px;
            border-radius: 30px;
            display:flex;
            justify-content: center;
            align-items: center;
        }
        .cta-buttons p{
            color: white;
            font-weight: 100;
            font-size: 15px;
        }

        

        .phone-number {
            font-size: 20px;
            font-weight: bold;
        }
        .order-status-header{
            margin-top: 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .order-status-header .head-img{
            background-color: #BB822C;
            padding: 25px;
            border-radius: 20px;
            /* margin-right: 120px; */
        }
        .order-status-header .head-img img{
            width: 135px;
            height: 135px;
        }
        .main-info-wrapper .row .col-lg-4{
            padding-right: 5px !important;
            padding-left: 5px !important;
            background-color: #BB822C;
        }
        .custom-thankyou{
            display: flex;
            position: relative;
            height: 100px;
            justify-content: center;
            align-items: center;
            gap: 30px;
            width: 33% !important;
            border-radius: 15px;
        }
        .order-details-icon img{
            width: 70px;
            height: 70px;
        }
        .order-info{
            display: flex;
            flex-direction: column;
        }
        .order-info span{
            font-weight: 800;
        }
        .custom-border-bottom-info{
            color: white;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid #BB822C;
        }
        .custom-flex-column-grid{
            display: flex;
            flex-direction: column;
        }
        .custom-flex-column-grid span{
            font-weight: normal;
        }
        .custom-again{
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .custom-again span img{
         width: 25px;
         height: 25px;
        }
        .telephone{
            position: relative;
            background-color: #BB822C;
            width: 300px;
            border-radius: 4px !important;
        }
        .custom-bottom-space{
            margin-bottom: 100px;
        }
        .custom-container-w{
            max-width: 1100px !important;
        }
        .bg-thankyou-1 {
    left: 50%;
    width: max-content;
}
        .bg-thankyou-1 img{
        top: 650px;
        }
        .bg-thankyou-2{
width: max-content;
        }
        .bg-thankyou-2 img{
          left: 850px;
          bottom: -600px;
        }
        .custom-border-bottom-info span input[type="radio"] {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 3px solid #333;
            background-color: #fff;
            transition: all 0.3s ease;
        }
        .custom-border-bottom-info span input[type="radio"]:checked {
            background-color: #BB822C !important; 
            color: #BB822C;
            border-color: white;
        }
        .custom-border-bottom-info span{
            display: flex;
            align-items: center;
            gap: 3px;
        }
        
        .payment-option input[type="radio"]:checked {
    background-color: #BB822C !important;
    color: #BB822C;
    border-color: white;
}

.payment-option input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #333;
    background-color: #fff;
    transition: all 0.3s ease;
}

.payment-option input[type="radio"]:checked {
    background-color: #BB822C;
    border-color: #fff;
}


/* thankyoupage end */




/* contact page start */
.top-head-contact{
    background-image: url("/new-design/images/thank-assets/tikka-01.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center 0px;
    height: 484px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
}
.top-head-contact::before{
    content: '';
    height: 485px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0e110d;
    opacity: 80%;
}
.top-head-contact .headings-sec{
    position: relative;
    top: 25%;
}
.main-contact-flex{
    display: flex;
    align-items: center;
}
.main-left-contact{
    display: flex;
    flex-direction: column;
}
.left-sec-1{
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: white;
}
.text-custom-decorate{
    /* color: #aaa; */
    font-size: 30px;
    font-family:'Melodrama' ;
    color: #BB822C;
}
.left-sec-2 a{
    text-decoration: none;
    color: #aaa;
}
.left-sec-2{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.social-icons-list{
    display: flex;
    gap: 20px;
    margin-left: 0px;
    padding-left: 0px;
}
.social-icons-list li {
    list-style: none;
    margin-left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid #555;
    transition: all 0.4s ease-in-out; /* smooth transition */
}

.social-icons-list li:hover {
    background-color: #BB822C;
    border: 1px solid #FFFFFF;
    color: #fff;
}

.social-icons-list li a{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.main-form-sec{
    background-color: #1F2120;
    color: #fff;
    border-radius: 20px;
}
.main-form-sec form{
    padding: 20px;
}
.custom-input{
    background-color: transparent;
    border: 1px solid #313331;
    width: 100%;
    padding: 8px;
    color: #fff;
    border-radius: 8px;
}
.submit-btn{
    border-radius: 30px;
    width: 100%;
    background-color: #1C1612 !important;
    display: flex;
    text-decoration: none;
    color: white;
    padding: 10px;
    border: 1px solid #313331;
    text-align: center;
    justify-content: center;
}
.google-map-iframe, .google-map-iframe iframe {
    height: 600px;
    width: 100%;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}


/* about page start */
.top-head-about{
    background-image: url("/new-design/images/thank-assets/karahi-01.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position:-250px -100px;
    height: 484px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
}
.top-head-about::before{
    content: '';
    height: 485px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0e110d;
    opacity: 80%;
}
.top-head-about .headings-sec{
    position: relative;
    top: 25%;
}
.about-first{
    background-color: #302117;
    padding: 40px;
}
.custom-word-space{
    margin-bottom: 20px !important;
}
.img-section-about{
    display: flex;
    justify-content: center;
    
}
.custom-about-sec-para{
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* about page end */

/* live-bits-sub-cart */
.livebits-subcart{
    border-radius: 20px;
    width: 30%;
    position: fixed;
    background-color: #BB822C;
    color: #ffffff;
    z-index: 1000;
    bottom: -15px;
    left: 36%;
    height: 75px;
    font-size: 30px;
    cursor: pointer;
    display: none;
}

.sub-cart ul{
    font-size: 20px;
    padding: 14px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    list-style: none;
    justify-content: space-between;
}
.sub-cart .sub-menu-circle{
    border: 1px solid;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    /* padding: 8px; */
}

.mt-custom{
    margin-top: 10px;
}

.custom-padding{
    padding: 30px 0;
}


.mb-60{
    margin-bottom: 80px;
}
.custom-btn-style{
    float: right;
}
.mt-10{
    margin-top: 10px;
}
.payment-method a{
margin-top: 20px;
}

.custom-total{
    margin-bottom: 30px;
}
#total-box{
    border-bottom: none;
}
#total-cart-img{
    width: 50%;
}
.style-end{
    display: flex;
    justify-content: space-between;
}


.top-head-cart{
    background-image: url("../../images/thank-assets/karahi-01.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position:-250px -100px;
    height: 284px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
}
.top-head-cart::before{
    content: '';
    height: 285px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0e110d;
    opacity: 80%;
}
.top-head-cart .headings-sec{
    position: relative;
    top: 25%;
}

/* live-bits-sub-cart */
/*add to cart button*/
.cart-count{
position: absolute;
    top: 0px;
    animation: bounce 0.6s ease infinite alternate !important;
    right: 8px;
    background: #bd1531;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 6px;
    min-width: 18px;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);

}





/* cta modal start */
.cta-overlay {
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    overflow-y: auto;
    overflow-x: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cta-overlay.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cta-overlay::-webkit-scrollbar {
    display: none;
}

.cta {
    display: flex;
    gap: 40px;
    width: 90%;
    max-width: 1200px;
    margin: 45px auto;
    position: relative;
    background: transparent;
}

.first-half {
    flex: 1;
    background: transparent;
}

.product-cta {
    display: flex;
    justify-content: space-between;
    background-color: #202020;
    align-items: center;
    border-radius: 15px;
    padding: 10px;
    gap: 20px;
}

.product-first {
    background-color: #bb822c;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-first img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    display: block;
}

.product-second {
    flex: 1;
}

.product-second .product-title {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    margin: 0;
}

.product-third .product-price {
    background-color: #bd1531;
    color: white;
    border-radius: 3px;
    padding: 8px 15px;
    font-weight: bold;
    white-space: nowrap;
}

.second-half {
    background-color: #202020;
    padding: 15px;
    color: white;
    width: 300px;
    border-radius: 15px;
    flex-shrink: 0;
}

.add-sec {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment-sec input {
    background-color: #333;
    border: 1px solid #444;
    padding: 10px;
    width: 100%;
    color: white;
    border-radius: 5px;
}

.comment-sec input::placeholder {
    color: #aaa;
}

.custom-total-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    margin-top: 10px;
}

.total-price {
    font-weight: bold;
    font-size: 18px;
    color: #bb822c;
}

.add-cart-btn-model {
    width: 100%;
    background-color: #bb822c;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.add-cart-btn-model:hover:not(:disabled) {
    background-color: #a0122a;
}

.add-cart-btn-model:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.extras-sec {
    background-color: #202020;
    border-radius: 15px;
    margin-top: 16px;
    padding: 15px;
}

.extra-main h3 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 18px;
}

.extra-pro-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.extra-products {
    background-color: #333;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 10px;
    min-width: 120px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.extra-products.selected {
    border-color: #bd1531;
    background-color: rgba(189, 21, 49, 0.2);
}

.extra-products:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.extra-products img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 5px;
}

.extra-title {
    color: #fff;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.extra-price {
    color: #bd1531;
    font-size: 12px;
}

.options-sec {
    background-color: #202020;
    border-radius: 15px;
    padding: 15px;
    margin-top: 15px;
}

.options-title {
    color: white;
    font-weight: bold;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

/* .total-options-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.total-options-wrapper li {
    background-color: #333;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.total-options-wrapper li.selected {
    border-color: #bd1531;
    background-color: rgba(189, 21, 49, 0.2);
}

.total-options-wrapper .single-option {
    text-decoration: none;
    color: white;
    display: block;
} */

.option-title {
    font-size: 14px;
    margin-bottom: 5px;
}

.price-title {
    color: #bb822c;
    font-size: 12px;
}

.cross-modal {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 10000;
}


.cross-modal:hover {
    background-color: #BB822C;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .cta {
        flex-direction: column;
        width: 95%;
    }
    
    .second-half {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .product-first img {
        width: 150px;
        height: 150px;
    }
    
    .extra-pro-wrapper {
        justify-content: center;
    }
}
.total-options-wrapper ul li .single-option{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border: 1px solid #555;
    border-radius: 20px;
    cursor: pointer;
    padding: 10px;
    text-decoration: none;
    color: #fff;
}
.total-options-wrapper ul{
    list-style:none;
}
/* cta modal end */





/* Remove bullets/dots from all ul li in sidebar */
.l-sidebar ul,
.l-sidebar .side-items,
.l-sidebar .submenu-list {
    list-style: none !important;
    padding-left: 0 !important;
}

.l-sidebar li,
.l-sidebar .single-side-item,
.l-sidebar .submenu-item {
    list-style: none !important;
    margin-left: 0 !important;
}

/* Ensure no bullets appear before any list items */
.l-sidebar ul li::before,
.l-sidebar .side-items li::before,
.l-sidebar .submenu-list li::before {
    content: none !important;
}
/* Submenu dropdown */
.submenu-dropdown {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin-top: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.menu-with-submenu.active .submenu-dropdown {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
}

.submenu-list {
    list-style: none !important;
    padding: 10px 0;
    margin: 0;
}

.submenu-item {
    margin: 0;
}

.submenu-link {
    display: block;
    padding: 10px 25px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    border-left: 3px solid transparent;
}

.submenu-link:hover {
    background-color: rgba(189, 21, 49, 0.08);
    color: #bd1531; /* Your theme color */
    border-left-color: #bd1531;
    padding-left: 30px;
}

.banner-swiper{
    overflow:hidden;
}

.iframe-custom{
    width:1020px !important;
    height:315px !important;
}
#homepage-video{
    justify-content:center;
    
}
.custom-mb-sm{
    margin-bottom:35px !important;
}
































