* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif !important;
}

a {
  text-decoration: none;
}

body {
  padding: 0rem;
}

:root {
  --bg-color: #fefefe;
  --theme-color: #412893;
  --category-color: #F8FF35;
  --red-color: #D93331;
  --green-color: #3AAE4D;
  --text-dark: #212529;
  --border-color: #E9EAEB;
  --black-color: #000;
  --light-text: #5E5E5E;
  --box-shadow: #00000026;
}

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



/* @font-face {
  font-family: "Manrope", sans-serif;
  src: url(../font/Manrope-Medium.ttf);
} */

@font-face {
  font-family: "Rubik", sans-serif;
  src: url(../font/Rubik-Regular.ttf);
}



/* mobile frame */
.mobile-wrapper {
  max-width: 420px;
  margin: auto;
}

.main-wrapper {
  background-color: var(--bg-color);
}

.section-wrapper {
  padding: 0 20px 0;
  margin-bottom: 3.3rem;
  background-color: var(--bg-color);
}

/* .section-col {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
} */

/* header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 10px 20px;
  background-color: var(--theme-color);
}

.header .img-1 {
  width: 60px;
  height: 40px;
}

.header .img-2 {
  width: 100px;
  height: 30px;
}

/* search */
.search-col {
  position: sticky;
  top: 0;
  padding: 10px 16px;
  z-index: 999;

  background-color: var(--bg-color);
}

.search-box {
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  border: 2px solid var(--border-color);
  align-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

.search-box svg {
  width: 25px;
  fill: #000;
}

.search-box input {
  border: none;
  outline: none;
  margin-left: 10px;
  width: 100%;
  font-weight: 500;
}


/* category */
.category-col {
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
}

.category a {
  color: #212529;
}

.item a {
  color: #212529;
}

.category-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 10px 4px 5px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-left: 0.6rem;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}


.category {
  min-width: 96px;
  background: #fff;
  padding: 18px 5px 20px;
  border-radius: 200px;
  text-align: center;
  position: relative;
  box-shadow: 0px 0px 10px 0px var(--box-shadow);
}

.category-page .category {
  height: 100%;
}




.category img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}


.category span {
  text-transform: capitalize;
  display: block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--theme-color);
}

/* .category.active::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: #ff6a00;
} */

.category.active::after {

  content: "";
  position: absolute;
  padding: 18px 7px 20px;
  border-radius: 200px;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  top: 0;
  left: 0;
  margin-top: 2px;
  /* z-index: 999; */
  border-bottom: 4px solid var(--theme-color);

}

.category-box {
  margin-top: 20px;
}



/***************************** filter start ************************/
.filter-bar {
  background-color: #ffffff;
  text-align: center;
  border-radius: 8px;
  border: 2px solid var(--border-color);
  will-change: transform;
  transition: transform .25s ease, box-shadow .25s ease;
  padding: 12px;
}

.filter-btn {
  font-size: 14px;
  background: transparent;
  border: none;
  color: var(--black-color);
  font-weight: 600;

}


.filter-1 {
  margin-top: -0.1rem;
  margin-right: 0.5rem;
  width: 12px;
}

.filter-2 {
  margin-top: -0.1rem;
  margin-left: 0.5rem;
  width: 10px;
}

.filter-content {
  display: none;
}

.filter-content.active {
  display: block;
}






/* custom switch */
.switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.switch input {
  display: none;
}

.switch span {
  width: 38px;
  height: 20px;
  background: #ccc;
  border-radius: 20px;
  position: relative;
}


.switch span:after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.25s ease;
}


.blue span:after {
  background-image: url("../imges/jain.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 70px;
}

.green span:after {
  background-image: url("../imges/veg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 70px;
}

.red span:after {
  background-image: url("../imges/non-veg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 70px;
}


/* .green span:after,
.red span:after {
  background-image: none;
} */

.switch input:checked+span:after {
  left: 20px;
}


.blue input:checked+span {
  background: #2d5bff;
}

.green input:checked+span {
  background: var(--green-color);
}

.red input:checked+span {
  background: var(--red-color);
}



/* titles */
.section-title {
  font-weight: 700;
  padding: 15px 0px 15px;
  font-size: 16px;
  color: var(--theme-color);
  margin-bottom: 0;
}


/* RECOOMNDED CSS START */
.food-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.food-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.food-card a {
  color: var(--text-dark);
}

.card-body {
  padding: 10px;
}

.card-body h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.card-body p {
  margin: 0;
  font-size: 12px;
  color: #5E5E5E;
  font-weight: 400;
}

.food-scroll-wrapper {
  overflow: hidden;
}

.food-scroll {
  overflow-x: auto;
  scroll-behavior: smooth;
}

.food-scroll::-webkit-scrollbar {
  display: none;
}

.food-card {
  border-radius: 10px;
}

.category-text {
  position: absolute;
  margin: 8px;
  bottom: 0;
  border-radius: 8px;
  color: #fff;
  font-size: 8px;
}

.category-text h5 span {
  background-color: var(--theme-color);
  padding: 8px 4px;
  border-radius: 6px 6px 6px 0px;
  font-size: 14px;
}


.category-text p {
  background-color: var(--black-color);
  padding: 4px;
  border-radius: 0px 6px 6px 0px;
  font-size: 10px;
  margin-top: -0.05rem;
}

/* DOTS */
.scroll-dots {
  text-align: center;
  margin-top: 12px;
}

.scroll-dots .dot {
  height: 14px;
  width: 14px;
  margin: 0 5px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid var(--theme-color);
}

.scroll-dots .dot.active {
  background: var(--theme-color);
  transform: scale(1.3);
}


/* badges */
.badge-open,
.badge-close {
  position: absolute;
  margin: 8px;
  padding: 3px 8px;
  right: 0;
  border-radius: 8px;
  color: #fff;
  font-size: 8px;
}



.badge-open {
  background: var(--green-color);
}

.badge-close {
  background: var(--red-color);
}

/* explore */

.explore-scroll {
  overflow-x: auto;
  scroll-behavior: smooth;
}

.explore-scroll::-webkit-scrollbar {
  display: none;
}


.explore-item {
  text-align: center;
  position: relative;
}

.explore-item-img {
  position: relative;
}

.explore-item-img::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 90%;
  height: 85%;
  border: 1px solid #ffffff;
  border-radius: 35px;
  pointer-events: none;

}

/* image wrapper look */
.explore-item img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 35px;
  /* pill shape */
  padding: 3px;
  /* inner space */
  background: #fff;
  /* white border */
  /* box-shadow:
    0 0 0 2px #fff,
    /* inner white ring
    0 0 0 3px #e5e5e5; */
}

/* text */
.explore-item span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
}


/******************************************** DEAT START  */

.deal .food-card img {
  width: 100%;
  height: 115px;
}

/*************************************** DEAT END */


/* social */
.social {
  text-align: center;
  margin-bottom: 10px;
}

.social img {
  padding: 0px 1px;
}

.social i {
  font-size: 22px;
  margin: 0 8px;
}

.powered {
  text-align: center;
  font-size: 13px;
  margin-top: 6px;
}

.powered a {
  color: var(--black-color) !important;
}

/* bottom nav */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 420px;
  margin: auto;
  background: #fff;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, .08);
  color: #ff6a00;
  z-index: 999;
  height: 60px;
}

.bottom-nav div {
  text-align: center;
  font-size: 13px;
}

.bottom-nav p {
  color: #000;
}


.bottom-nav .active p {
  color: var(--theme-color);
}

.active svg {
  fill: var(--theme-color) !important;
}

@media (max-width:768px) {
  .category span {
    font-size: 14px;
  }
}

.bottom-nav svg path {
  fill: #000000;
}

.bottom-nav .active svg path {
  fill: var(--theme-color);
}


/* AREA & ZONES START */

.area-zons-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.area-zons-card a {
  display: block;
  position: relative;
  text-decoration: none;
}

.area-zons-card img {
  width: 100%;
  height: 80px;
  /* apne hisab se */
  object-fit: cover;
  display: block;
  border-radius: 5px;
}

/* Gradient Overlay */
.area-zons-card a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(65, 40, 147, 0.7) 18.47%, rgba(65, 40, 147, 0) 52.26%);

  border-radius: 5px;
}

.area-zons-card-text {
  position: absolute;
  bottom: 3px;
  left: 0px;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
}



/* AREA & ZONES START */


/* card start */
.bottom-food-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.bottom-food-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.botttom-food-card a {
  color: var(--text-dark);
}

.bottom-category-text {
  position: absolute;
  margin: 8px;
  bottom: 0;
  border-radius: 8px;
  color: #fff;
  font-size: 8px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-radius: 0px 0px 8px 8px;
  padding: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.bottom-category-none-premium-text {
  border-radius: 8px;
}


.bottom-food-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.bottom-food-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 18px;
}

.bottom-category-text h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color);
}

.bottom-category-text p {
  margin: 2px 0 0;
  font-size: 10px;
  color: var(--light-text);
}

.bottom-premium-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  padding: 8px;
  background: linear-gradient(90deg, #412893 43.27%, rgba(255, 255, 255, 0) 100%);
  color: #fff;
  margin: 8px;
  border-radius: 8px 8px 0px 0px;
}

.bottom-premium-text h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.bottom-premium-text p {
  margin: 3px 0 0;
  font-size: 10px;
  font-weight: 600;
}

/* card end */



/* card-5 */
.food-card-5-new {
  position: relative;
  border-radius: 60px 60px 0px 0px;
  overflow: hidden;
}

.food-card-5-new img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.food-card-5-new a {
  color: var(--black-color);
}

.food-card-5-new a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(65, 40, 147, 0.7) 18.47%, rgba(65, 40, 147, 0) 52.26%);
}

.food-card-text {
  position: absolute;
  bottom: 3px;
  left: 0px;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
  font-family: "Rubik", sans-serif !important;
}

/* 
.food-card-5-new p {
  background-color: white;
  padding: 7px 4px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 2px solid var(--border-color);
  border-left: 2px solid var(--border-color);
  border-right: 2px solid var(--border-color);
} */

.recommended-scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 6px;
}

.recommended-scroll::-webkit-scrollbar {
  display: none;
}

.recommended-scroll .col-3 {
  flex: 0 0 auto;
}

.recommended-scroll {
  scroll-snap-type: x mandatory;
}

.recommended-scroll .col-3 {
  scroll-snap-align: center;
}

.recommended-text {
  margin-top: -0.3rem;
}



/* filter offcanvas css start */

.offcanvas-bottom {
  max-width: 420px;
  margin: auto;
}

.offcanvas-body {
  padding: 0rem 1rem;
  overflow-y: auto;
}

/* .offcanvas-header .btn-close {
  position: absolute;
  top: -40px;
  background-color: var(--theme-color);
  right: 0;
  left: 0;
  text-align: center;
  padding: .5rem .5rem;
  margin: 0 auto;
  border-radius: 100px;
  opacity: 1 !important;
  background-image: url(./assest/imges/close-btn.svg) !important;
} */

.filter-offcanvas {
  border-radius: 15px 15px 0 0;
  display: flex;
  flex-direction: column;
  height: auto !important;
}

.filter-offcanvas .offcanvas-body {
  padding: 0rem 1rem 1.5rem;
  overflow-y: auto;
  flex: 1;
}

.filter-offcanvas .offcanvas-title {
  color: var(--theme-color);
  font-weight: 600;
}

.filter-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #F0F0F0;

}

.filter-left li {
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400
}

.filter-left {
  border-top: 2px solid var(--border-color);
  border-right: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  padding-left: 0rem;
  padding-right: 0rem;

}

.filter-left li.active {
  background: #ffffff;
  color: var(--black-color);
  font-weight: 400;
  position: relative;
}

.filter-left li.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 41px;
  width: 2px;
  background-color: var(--theme-color);
}

/* input[type="radio"] {
  accent-color: var(--theme-color);
  border: 2px solid var(--theme-color);
  position: relative;
  top: 2px;
  -webkit-appearance: none;
} */

.filter-content input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #B7B1B1;
  /* outer purple ring */
  border-radius: 50%;
  position: relative;
  top: -1px;
  cursor: pointer;
  margin-right: 8px;
  vertical-align: middle;
  background: #fff;
}

/* Inner Circle (default grey look) */
.filter-content input[type="radio"]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Checked State */
.filter-content input[type="radio"]:checked {
  border-color: var(--theme-color);
}

/* Checked Inner Purple Dot */
.filter-content input[type="radio"]:checked::after {
  background: var(--theme-color);
}

/* Label Click Friendly */
.filter-content label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}





input[type="checkbox"] {
  accent-color: var(--theme-color);
  border: 2px solid var(--theme-color);
  position: relative;
  top: 2px;
}

.filter-right label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
}

.filter-right {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-top: 2px solid var(--border-color);
  border-left: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
}

.filter-footer {
  background: #fff;
  padding: 12px;
  display: flex;
  gap: 10px;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.08);
}

.clear-btn {
  width: 50%;
  border: 1px solid var(--theme-color);
  background: #fff;
  color: var(--theme-color);
  padding: 10px 20px;
  border-radius: 8px;
}

.apply-btn {
  width: 50%;
  border: none;
  background: var(--theme-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .filter-offcanvas {
    border-radius: 20px 20px 0 0;
  }

}


/* filter offcanvas css end */



.filter-bar.is-sticky {
  position: fixed;
  top: 60px;
  z-index: 999;
  width: 100%;
  max-width: 385px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px;
  transition: 0.1s;
}

/* menu item page css */

.section-col h5 {
  font-size: 16px;
  font-weight: 600;
}


.menu-item-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 8px 8px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #eeeeee;
}

.menu-card-left h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--theme-color);
}

.menu-card-left h6 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #000;
}

.menu-card-left p {
  font-size: 12px;
  color: var(--black-color);
  margin: 0;
  line-height: 1.4;
}


.menu-card-right {
  text-align: center;
  position: relative;
}


.menu-card-right img {
  width: 100%;
  height: 113px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 0 auto 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.menu-card-right button {
  position: absolute;
  bottom: 13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--theme-color);
  color: #fff;
  border: none;
  padding: 4px 20px;
  font-size: 12px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}


.menu-card-right p {
  font-size: 11px;
  color: #8a8a8a;
  margin: 2px 0 0;
  position: relative;
  top: 5px;
  text-transform: capitalize;
}

/* menu offcanvas start */
.menu-offcanvas {
  border-radius: 15px 15px 0 0;
  height: auto !important;
  display: flex;
  flex-direction: column;
}


.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem;
}

.menu-title h6 {
  margin: 0;
  font-weight: 600;
  color: var(--theme-color);
}

.menu-title span {
  font-size: 13px;
}

.menu-close {
  position: absolute;
  background: var(--theme-color);
  top: -45px;
  left: 0;
  right: 0;
  color: #fff;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin: 0 auto;
  font-size: 1.5rem;
  font-weight: 700;
}


.menu-tabs {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-bottom: 2px solid var(--border-color);
}

.tab-btn {
  flex: 1;
  border: 1px solid transparent;
  background: #fff;
  color: var(--black-color);
  padding: 6px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.tab-btn.active {
  background: var(--theme-color);
  color: #fff;
}


.menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
}

.tab-content {
  display: none;
  font-size: 14px;
}

.tab-content p {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.tab-content h6 {
  font-weight: 600;
  color: var(--theme-color);
}

.tab-content.active {
  display: block;
}

.menu-footer {
  padding: 12px;
  background: #fff;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.08);
}

.cancel-btn {
  width: 100%;
  border: 1px solid var(--theme-color);
  background: #fff;
  color: var(--theme-color);
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
}

/* modify */
.modifier-group {
  margin-bottom: 15px;
}

.modifier-head {
  background: #FFE3D7;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  position: relative;
}

.modifier-head .required {
  color: red;
  margin-left: 6px;
}

.modifier-head .optional {
  color: #333;
  margin-left: 6px;
}

.modifier-head .arrow {
  position: absolute;
  right: 12px;
  top: 8px;
  width: 26px;
  height: 26px;
  background: var(--black-color);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

/* WHITE ARROW */
.modifier-head .arrow::after {
  content: "";
  position: absolute;

  top: 53%;
  left: 50%;

  width: 8px;
  height: 8px;

  border-left: 2px solid #fff;
  border-top: 2px solid #fff;

  transform: translate(-50%, -50%) rotate(45deg);
  /* UP */
  transition: 0.3s;
}


/* CLOSED STATE → DOWN ARROW */
.modifier-group.closed .arrow::after {
  transform: translate(-50%, -50%) rotate(-135deg);
  top: 48%;
}

.modifier-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}


.mod-card {
  font-weight: 500;
  background: #f2f2f2;
  padding: 14px 8px;
  text-align: center;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.mod-card span {
  display: block;
  margin-top: 6px;
  color: var(--theme-color);
  font-weight: 600;
  font-size: 14px;
}

/* DROPDOWN TOGGLE */
.modifier-group.closed .modifier-items {
  display: none;
}

.arrow {
  cursor: pointer;
  transition: 0.3s;
}

/* inquary css start */

.inquiry-col {
  display: flex;
  gap: 8px;
  padding: 15px 16px;
  border-bottom: 2px solid var(--border-color);
}

.inquiry-col h5 {
  font-size: 20px;
  color: var(--theme-color);
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0rem;
}

.inquiry-offcanvas {
  flex-grow: unset !important;
  height: auto !important;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.inquiry-body {
  padding: 15px 16px;
}

.inquiry-title {
  color: var(--theme-color);
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
}

.inquiry-body label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.inquiry-body input {
  font-size: 14px;
  background-color: #f6f6f6;
}

.inquiry-body input:focus {
  color: var(--black-color);
  background-color: #fff;
  border-color: var(--theme-color);
  outline: 0;
  box-shadow: none;
}

.inquiry-close {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--theme-color);
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 20px;
}

.inquiry-footer {
  display: flex;
  padding: 12px;
  background: #fff;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.08);
  gap: 10px;

}

.clear-btn {
  flex: 1;
  border: 2px solid var(--theme-color);
  background: #fff;
  color: var(--theme-color);
  border-radius: 10px;
  padding: 10px;
  font-weight: 700;
}

.apply-btn {
  flex: 1;
  background: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-weight: 700;
}

/* apply inquary form  */
.otp-offcanvas {
  height: auto !important;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.otp-close {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--theme-color);
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 20px;
}

.otp-body {
  padding: 20px;
  text-align: center;
}

.otp-title {
  display: flex;
  gap: 8px;
  padding: 15px 16px;
  border-bottom: 2px solid var(--border-color);
}

.otp-title h5 {
  font-size: 20px;
  color: var(--theme-color);
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0rem;
}

.otp-boxes {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.otp-boxes input {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  border: none;
  background: #eee;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}

.otp-boxes input:focus,
.otp-boxes input:focus-visible {
  outline: none;
  border: 2px solid var(--theme-color) !important;
  -webkit-appearance: none;
}

.otp-footer {
  padding: 12px;
  background: #fff;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.08);
  gap: 10px;
  display: flex;
}

.verify-btn {
  width: 100%;
  background: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-weight: 600;
}

.resend-text {
  text-align: center;
  margin-top: 12px;
  color: var(--theme-color);
  font-weight: 600;
}

.resend-text span {
  color: var(--black-color);
  font-weight: 500;
}




/* media quary */





.filter-bar.sticky-active {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  max-width: 388px;
  width: 100%;
  margin: 0 auto;
  z-index: 999;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  background: #fff;
}



/* Spacer */
#filterSpacer {
  height: 0;
}

/* owl curosual button */

.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 5px 7px;
  background: transparent;
  display: block;
  transition: opacity .2s ease;
  border-radius: 30px;
  border: 2px solid var(--theme-color);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--theme-color);
}

.footer-auto.fixed-footer {
  position: fixed;
  bottom: 60px;
  left: 0;
  right: 0;
  max-width: 420px;
  margin: auto;
  background: #fff;
  z-index: 99;
}



@media screen and (min-width: 768px) {
  .category-text p {
    margin-top: -0.05rem;
  }
}

@media screen and (max-width: 592px) {

  /*  .filter-bar.sticky-active {
    max-width: 355px;
  }*/

  .search-col {
    padding: 10px 16px;
    background-color: var(--bg-color);
    z-index: 999;
  }

  /* jab sticky ho */
  .search-col.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }


}

.search-input::placeholder {
  color: #000000;
  font-weight: 400;
}