/* Basic css start */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-outfit-medium: 'Outfit-Medium', sans-serif;
  --font-outfit-light: 'Outfit-Light', sans-serif;
  --font-raleway-medium: 'Raleway-Medium', sans-serif;
  --font-raleway-regular: 'Raleway-Regular', sans-serif;
  --font-size-base: 16px;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-body: #F8F5F2;
  --color-background: #E6D5C3;
  --color-heading: #3A1E14;
  --color-button: #8B4A26;
  --transition-fast: 0.2s ease-in-out;
}

@font-face {
  font-family: 'Outfit-Bold';
  src: url('../assets/fonts/Outfit-Bold.woff2') format('woff2'),
    url('../assets/fonts/Outfit-Bold.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit-Medium';
  src: url('../assets/fonts/Outfit-Medium.woff2') format('woff2'),
    url('../assets/fonts/Outfit-Medium.woff') format('woff');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit-Light';
  src: url('../assets/fonts/Outfit-Light.woff2') format('woff2'),
    url('../assets/fonts/Outfit-Light.woff') format('woff');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Raleway-Medium';
  src: url('../assets/fonts/Raleway-Medium.woff2') format('woff2'),
    url('../assets/fonts/Raleway-Medium.woff') format('woff');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Raleway-Regular';
  src: url('../assets/fonts/Raleway-Regular.woff2') format('woff2'),
    url('../assets/fonts/Raleway-Regular.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Raleway-Light';
  src: url('../assets/fonts/Raleway-Light.ttf') format('woff2'),
    url('../assets/fonts/Raleway-Light.ttf') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'Ergisa-Regular';
  src: url('../assets/fonts/Ergisa-Regular.otf') format('woff2'),
    url('../assets/fonts/Ergisa-Regular.otf') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'Raleway-SemiBold';
  src: url('../assets/fonts/Raleway-SemiBold.woff2') format('woff2'),
    url('../assets/fonts/Raleway-SemiBold.woff') format('woff');
  font-weight: 600;
  font-display: swap;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  font-family: var(--font-raleway-regular);
  font-size: var(--font-size-base);
  color: var(--color-heading);
  background-color: var(--color-body) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin: 0 0 1em;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: var(--color-button);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover,
a:focus {
  color: var(--color-button);
  outline: none;
}

:focus-visible {
  outline: 1px dashed #888;
  outline-offset: 4px;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.heading {
  font-size: 35px;
  color: var(--color-heading);
  line-height: normal;
  margin: 0 0 35px 0;
  font-family: var(--font-raleway-regular);
}

/* Header section start */
.marquee_list {
  display: inline-block;
  padding: 5px 150px;
  white-space: nowrap;
  font-family: var(--font-raleway-medium);
  text-transform: uppercase;
}

.top_scoll {
  background-color: #FBF0E5;
  display: flex;
}

.top_scroll_icon {
  max-height: 25px;
  margin: 0 10px 0 0;
}

/*  ----------Header section start ---------- */
header {
  background-color: #fff;
  z-index: 500;
  position: sticky;
  top: 0;
  width: 100%;
  left: 0;
}

.header_mainbox {
  padding: 30px 0;
  float: left;
  width: 100%;
  position: relative;
}

.marquee_list {
  display: inline-block;
  padding: 5px 100px;
  white-space: nowrap;
  font-family: var(--font-raleway-medium);
  text-transform: uppercase;
}

.top_scoll {
  background-color: #fbf0e5;
}

.header_logobox {
  float: left;
  width: 190px;
}

.header_menubox_main {
  float: right;
  margin: 15px 0 0 0;
}

.header_menubox ul {
  float: left;
}

.header_menubox ul li {
  float: left;
}

.header_menubox li a {
  float: left;
  width: auto;
  border-radius: 100px;
  line-height: normal;
  padding: 10px 12px;
  color: #3a1e14;
  font-size: 14px;
  border: 1px solid #fff;
}

.header_menubox li a:hover {
  border-radius: 100px;
  border: 1px solid #8B4A26;
}

.header_menubox li::after {
  content: "/";
  margin: 7px 0 0 0;
  float: left;
}

.header_menubox li:last-child::after {
  display: none;
}

.header_login_box {
  float: right;
  margin: 13px 0 0 0;
  display: flex;
}

.mobile_menu_heading {
  display: none;
}

.mobile_menu_close {
  display: none;
}

/*  ----------Header section end ----------  */


/* ----------HAMBURGER-GIFTNOW-MAINBOX-START--------- */
.giftnow_hamburger_menu {
  position: absolute;
  margin: 15px 0 0 -70px;
  max-width: 24px;
  left: 0;
  cursor: pointer;
}

.hamburger_gift_mainbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 100vh;
  overflow-y: scroll;
  z-index: 500;
  margin: 0 0 0 -100%;
  background-color: #fff;
  padding: 70px 40px 40px 40px;
  text-align: left;
  transition-duration: 0.3s;
  box-shadow: 0 0 30px 0px #0000000f;
  transition-duration: 0.3s;
}

.hamburger_gift_mainbox_open {
  margin: 0;
}

.giftnow_heading2 {
  background-color: #E6D5C3;
  color: #3A1E14;
  width: auto;
  float: left;
  font-size: 14px;
  padding: 4px 15px;
  border-radius: 100px;
  font-family: Raleway-Medium;
}

.giftnow_list {
  width: 90px;
  float: left;
  margin: 0 1% 0 0;
}

.giftnow_list input {
  display: none;
}

.giftnow_list input[type="radio"]:checked+label {
  background-color: #F8F5F2;
}

.giftnow_list label {
  float: left;
  width: 100%;
  margin: 0 0px 10px 0;
  text-align: center;
  cursor: pointer;
  transition-duration: 0.3s;
  border-radius: 10px;
  padding: 8px 10px 5px 10px;
}

.giftnow_list label:hover {
  background-color: #F8F5F2;
}

.giftnow_list img {
  max-height: 35px;
}

.giftnow_list span {
  width: 100%;
  float: left;
  margin: 9px 0 0 0;
  font-size: 13px;
}

.giftnow_yeardropdown select {
  background-color: #fff;
  border: 1px solid #D6D6D6;
  /* font-family: Outfit-Medium; */
  border-radius: 6px;
  padding: 5px 10px;
  line-height: normal;
  margin: 0 10px;
}

/* ----------HAMBURGER-GIFTNOW-MAINBOX-END--------- */
/* ----------TOP_ICON-BOX-START--------- */
.search_box {
  background-color: #fff;
  position: absolute;
  right: 0;
  width: 480px;
  margin: 30px -7px 0 -261px;
  padding: 0px 6px;
  border-radius: 10px;
  height: 0;
  transition-duration: 0.3s;
  overflow: hidden;
}

.search_box_open {
  height: 57px;
  padding: 6px;
  overflow: visible;
}

.search_box input {
  background-color: #fff;
  float: left;
  width: 77%;
  border: 1px solid #8b4a26;
  border-radius: 10px;
  padding: 10px 20px;
}

.search_box .gobtn {
  background-color: #8b4a26;
  float: right;
  width: 20%;
  border-radius: 10px;
  color: #fff;
  border: 0;
  transition-duration: 0.3s;
}

.search_box .gobtn:hover {
  background-color: #3a1e14;
}

.search_close {
  width: auto;
  border-radius: 99px;
  border: 1px solid #83726c;
  text-align: center;
  font-size: 15px;
  line-height: normal;
  background-color: #fff;
  padding: 0px 5px 2px 6px;
  cursor: pointer;
  position: absolute;
  right: 0;
  margin: -25px -7px 0 0;
}

.top_icon {
  border: 1px solid #8b4a26;
  border-radius: 8px;
  padding: 7px;
  position: relative;
  float: left;
  margin: 0 0 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.top_icon img {
  max-height: 21px;
  max-width: 21px;
}

.top_icon a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 6px 7px;
  cursor: pointer;
}

.total_count {
  position: absolute;
  background-color: #8b4a26;
  color: #fff;
  line-height: normal;
  padding: 4px 5px 4px 5px;
  border-radius: 100%;
  margin: -18px 0 0 -4px;
  font-size: 10px;
  text-align: center;
  width: 20px;
  height: 20px;
}

/* ----------TOP_ICON-BOX-END--------- */

/* ----------BANNER-START--------- */
.banner_list {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.banner_leftbox {
  width: 100%;
  color: #fff;
  /* line-height: normal; */
}

.banner_text1 {
  padding: 0 0 40px 0;
  font-size: 61px;
  font-family: Raleway-SemiBold;
  color: #513315;
  line-height: normal;
  position: relative;
  /* top: 20%; */
}


.giftnow_btn {
  width: fit-content;
  color: #513315;
  position: relative;
  font-size: 25px;
  padding: 10px 40px;
  line-height: normal;
  text-align: center;
  transition-duration: 0.3s !important;
  transition: inherit;
  margin: 0;
  background-color: #fff;
  border-radius: 100px;
  text-transform: uppercase;
  font-family: Raleway-SemiBold;
  box-shadow: 10px 11px 10px #0000000f;
  display: inline-block;
}

.giftnow_btn:hover {
  margin: 0 0 0 5px;
}

.banner_list img {
  display: none !important;
}

/* .giftnow_btn::before {
  content: "";
  background-image: url("../assets/images/giftnow_line.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
}

.giftnow_btn::after {
  content: "";
  background-image: url("../assets/images/giftnow_line.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
} */




/* ----------BANNER-END--------- */


/* Banner section start */

.home_banner_mainbox .owl-nav {
  margin: -200px 0 0 0;
  /* position: absolute; */
  width: 100%;
  left: 0;
  right: 0;
  display: block;
}

/* Banner section ends */
/* Home USP section start */
.home_usp_section {
  margin: -34px 0 0 0;
  z-index: 10;
  position: relative;
}

.home_usp_mainbox {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.home_usp_listing {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 4px 14px 0 #0000000D;
  transition-duration: 0.5s;
}

.home_usp_listing:hover {
  transform: scale(1.04);
}

.home_usp_heading {
  text-transform: uppercase;
  color: var(--color-heading);
}

.home_usp_subheading {
  font-size: 13px;
}

.home_usp_icon {
  display: flex;
  justify-content: end;
}

/* Home USP section ends */
/* Home story section start */
.home_story_section {
  /*padding: 100px 0 0 0;*/
}

.home_story_mainbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.home_story_rightbox {
  width: 100%;
  height: 100%;
  /* background-color: var(--color-button); */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  position: relative;
}

.home_story_rightbox video {
  width: 100%;
  border-radius: 0;
  margin: -30px 0 0 0;
}

/* Home story section ends */

/* Occations section start */
.occation_listing a {
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
  align-items: center;
  padding: 25px;
  background-color: var(--color-white);
  border-radius: 20px;
  position: relative;
  transition-duration: 0.5s;
}

.occation_listing {
  transition-duration: 0.7s;
  margin: 10px;
}

.occation_listing:hover {
  transform: scale(1.1);
}

.occation_section {
  padding: 60px 0;
  /*margin: 100px 0 0 0;*/
  background-color: var(--color-background);
}

.occation_section .heading {
  margin: 0 0 25px 0;
}


/* .occasion_list_icon {
  width: 80px;
  height: 80px;
}

.occasion_list_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
} */

.occasion_list_name {
  font-size: 18px;
  color: var(--color-heading);
  font-family: var(--font-raleway-medium);
}

.occation_section .owl-nav,
.product_listing_section .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.occation_section .owl-prev,
.product_listing_section .owl-prev {
  margin: 0 0 0 -60px;
}

.occation_section .owl-next,
.product_listing_section .owl-next {
  margin: 0 -60px 0 0;
}

/* Occations section ends */
/* Discount image section start */
.discount_img_section {
  padding: 100px 0 0 0;
}

/* Discount image section ends  */
/* Video section start  */
.video_section {
  padding: 100px 0 0 0;
}

.video_mainbox img {
  width: 100%;
}

/* Video section ends  */
/* Testiomonial section start  */

.testiomonial_section {
  padding: 100px 0;
}

.testimonial_star_mainbox {
  display: flex;
  gap: 8px;
}

.testimonial_namebox {
  font-family: 'Raleway-Medium';
  font-size: 18px;
  margin: 25px 0 5px 0;
  color: var(--color-heading);
}

.testiomonial_listing {
  padding: 40px;
  background-color: var(--color-white);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.owl-home_testimonials .owl-dot span {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-color: var(--color-background);
  border-radius: 50%;
}

.owl-home_testimonials .owl-dots {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 40px 0 0 0;
}

.owl-home_testimonials .owl-dot.active span {
  background-color: var(--color-button);
}

.owl-home_testimonials .owl-stage {
  display: flex;
}

.owl-home_testimonials .owl-item {
  display: flex;
}

.owl-home_testimonials .owl-item .item {
  width: 100%;
}

/* Testiomonial section ends  */
/* Footer section start  */
footer {
  padding: 60px;
  position: relative;
  display: grid;
  grid-template-columns: 0.63fr 0.5fr 1fr;

  &>* {
    position: relative;
    z-index: 10;
  }
}

footer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url("../assets/images/home/footer-background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.footer_contact_listing {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  line-height: normal;
  gap: 20px;
}

.footer_contact_listing:not(:last-child) {
  margin: 0 0 20px 0;
}

.footer_firstbox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer_contact_listing a {
  color: var(--color-white);
}

.footer_social_listing_mainbox ul {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer_heaingbox {
  font-size: 24px;
  color: var(--color-white);
  padding: 0px 0px 10px 10px;
  margin: 0 0 20px 0;
  border-bottom: 1px dashed var(--color-white);
  width: 55%;
}

.footer_quick_link_listing ul li {
  position: relative;
  padding: 0 0 10px 25px;
}

.footer_quick_link_listing ul li:last-child {
  padding: 0 0 0 25px;
}

.footer_quick_link_listing ul li::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  left: 0;
  top: 10px;
  background-image: url("../assets/images/home/quick-link-arrow.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer_quick_link_listing ul li a {
  color: var(--color-white);
}

.play_app_store_btn_box {
  display: flex;
  gap: 15px;
  margin: 30px 0 30px 0;
  padding: 0 0 0 9px;
  justify-content: center;
}

.play_store_btn a,
.app_store_btn a {
  display: inline-block;
  width: 150px;
  height: 50px;
}

.play_store_btn a img,
.app_store_btn a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer_quick_link_mainbox,
.footer_social_listing_mainbox {
  padding: 0 0 0 10px;
}

.footer_thirdbox {
  justify-self: center;
}

.footer_thirdbox .footer_heaingbox {
  width: 100%;
  text-align: center;
  padding: 0 0 10px 0;
}

.offer_section {
  padding: 100px 0 0 0;
}

.offer_section .item img {
  border-radius: 20px;
}

.footer_payment_listing_mainbox ul {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin: 30px 0 0 0px;
  justify-content: center;
}

.footer_payment_listing_mainbox ul li a {
  padding: 2px 10px 4px 10px;
  border-radius: 8px;
  background-color: #fff;
  line-height: normal;
}

.footer_payment_listing_mainbox ul li a img {
  max-width: 24px;
  max-height: 15px;
  line-height: normal;
}

/* Footer section ends  */
/* Offer section start */
.offer_section .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.offer_section .owl-prev {
  margin: 0 0 0 -30px;
  filter: drop-shadow(4px 4px 8px #ccc);
}

.offer_section .owl-next {
  margin: 0 -30px 0 0;
  filter: drop-shadow(4px 4px 8px #ccc);
}

/* Offer section ends  */
/* categories section start  */
.categories_section {
  padding: 100px 0 0 0;
}

.categories_mainbox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  overflow: hidden;
  max-height: none;
  /* JS sets this */
  transition: max-height 0.5s cubic-bezier(.22, .9, .3, 1);
}

.categories_listing {
  /* aspect-ratio: 3 / 4; */
  background: #fff;
  border-radius: 120px 120px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px 10px 20px 10px;
  text-align: center;
  transition: opacity 0.9s ease, transform 260ms ease;
}

.categories_listing .categories_imgbox img {
  transition-duration: 0.5s;
}

.categories_listing:hover .categories_imgbox img {
  transform: scale(1.05);

}

.categories_listing:hover .categories_heading {
  color: var(--color-button);
}

.categories_listing.hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.categories_readmore_box {
  margin: 28px auto 0;
  cursor: pointer;
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: transform 300ms ease;
}

.categories_readmore_box svg {
  display: block;
  transition: transform 300ms ease;
}

.categories_readmore_box.expanded svg {
  transform: rotate(180deg);
}

/* rotate up */

.categories_imgbox img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.categories_heading {
  font-size: 18px;
  /* font-family: 'Raleway-Medium'; */
  margin: 40px 0 0 0;
  text-transform: uppercase;
  color: var(--color-heading);
  transition-duration: 0.5s;
}

/* categories section ends  */
/* Product listing section start  */
.product_listing_mainbox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.product_listing_section {
  padding: 100px 0 0 0;
  display: grid;

  &>* {
    grid-area: 1/1;
  }
}

.view_all_box {
  text-align: end;
  height: fit-content;
}

.product_listing_image_box {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 100% 100% 0 0;
  overflow: hidden;
  background-color: var(--color-background);
}

.product_listing_image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.products_heading {
  font-size: 18px;
  font-family: 'Raleway-Medium';
  color: var(--color-heading);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product_listing_content_cox {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0 0 0;
}

.product_price_box {
  font-size: 18px;
  font-family: var(--font-outfit-medium);
  /* color: var(--color-black); */
}

.product_price_box span {
  text-decoration: line-through;
  margin: 0 0 0 5px;
  font-size: 16px;
}

.product_delivery_box {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: normal;
  color: var(--color-button);
  justify-content: center;
  font-family: var(--font-raleway-medium);
  text-transform: uppercase;
}

.product_listing_buy_now_box {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 6px 0;
  font-size: 16px;
  background-color: var(--color-button);
  font-family: var(--font-raleway-medium);
  color: var(--color-white);
}

.product_listing {
  display: grid;

  &>* {
    grid-area: 1/1;
  }
}

.product_listing_whishlist_box {
  width: fit-content;
  height: fit-content;
  justify-self: end;
  /* margin: 0 20px 0px 0; */
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.5s;
  position: relative;
  z-index: 10;
}

.product_listing_offer_box {
  width: 42px;
  height: fit-content;
  background-color: var(--color-button);
  aspect-ratio: 1;
  clip-path: polygon(97.93% 64.25%, 86.24% 74.96%, 80.4% 89.7%, 64.64% 91.49%, 51.26% 99.98%, 37.46% 92.17%, 21.64% 91.18%, 15.06% 76.75%, 2.85% 66.64%, 6.01% 51.11%, 2.07% 35.75%, 13.76% 25.04%, 19.6% 10.3%, 35.36% 8.51%, 48.74% 0.02%, 62.54% 7.83%, 78.36% 8.82%, 84.94% 23.25%, 97.15% 33.36%, 93.99% 48.89%);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 15px;
}

/* .product_listing_offer_box:hover {
  animation: pulsate-fwd 0.5s ease-in-out both;
}

@keyframes pulsate-fwd {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
} */




.product_listing_offer_content {
  color: var(--color-white);
  font-size: 12px;
  font-family: 'Outfit-Bold';
  line-height: 1;
}

.product_listing_offer_off {
  font-size: 10px;
  font-family: 'Outfit-Medium';
  color: var(--color-white);
  line-height: 1;
}

.product_listing_whishlist_box.new_wishlist_page {
  opacity: 1;
  visibility: visible;
}

.product_listing_image_mainbox {
  position: relative;
  overflow: hidden;
}

.product_listing_buy_now_box {
  position: absolute;
  bottom: -20%;
  width: 100%;
  transition-duration: 0.5s;
  cursor: pointer;
}

.product_listing:hover .product_listing_buy_now_box {
  bottom: 0;
}

.product_listing:hover .product_listing_whishlist_box {
  opacity: 1;
  visibility: visible;
}

.product_listing_view_all_box a {
  display: inline-block;
  font-family: var(--font-raleway-medium);
  color: var(--color-black);
  padding: 6px 20px;
  border-radius: 40px;
  border: 1px solid #F0CFC4;
  background-color: var(--color-white);
  font-size: 14px;
  position: relative;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.product_listing_view_all_box a:hover {
  color: var(--color-white);
  background-color: var(--color-button);
}

.product_listing_whishlist_box .product_wishlist img:hover,
.new_product_details_wishlist div img:hover {
  animation: wobble-hor-bottom 0.8s ease-in-out both;
}

@keyframes wobble-hor-bottom {
  0%, 100% {
    transform: translateX(0);
    transform-origin: 50% 50%;
  }

  15% {
    transform: translateX(-4px) rotate(-3deg);
  }

  30% {
    transform: translateX(3px) rotate(3deg);
  }

  45% {
    transform: translateX(-2px) rotate(-2deg);
  }

  60% {
    transform: translateX(2px) rotate(1.5deg);
  }

  75% {
    transform: translateX(-1px) rotate(-1deg);
  }
}


/* Product listing section ends  */
/* Payment page start  */

.new_payment_section {
  padding: 20px 0 0 0;
}

.subheading {
  font-size: 25px;
  color: var(--color-heading);
  margin: 0;
  font-family: var(--font-raleway-medium);
}

.new_payment_contenbox {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}

.new_payment_signin_box a {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 6px;
  font-size: 14px;
  font-family: var(--font-raleway-medium);
  padding: 6px 18px;
  border-radius: 40px;
  background-color: var(--color-button);
  color: var(--color-white);
  width: fit-content;
  transition: transform 0.5s ease;
}

.new_payment_signin_box a:hover {
  transform: translateX(5px);
}

.new_payment_list_headingbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 10px 0;
  margin: 0 0 30px 0;
  border-bottom: 1px solid #D9D9D9;
}

.new_payment_form_listing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 10px;
}

.form_group_full_size {
  grid-column: 1/3;
}

.form_group .form-control,
.form_group .form-select {
  padding: 10px 12px;
  font-size: 1rem;
  color: var(--color-heading);
  border: 1px solid #D6D6D6;
  border-radius: 12px;
  background-color: transparent;
}

.form_group textarea::placeholder,
.form_group input::placeholder,
.form_group select::placeholder {
  color: var(--color-heading);
}

.new_payment_leftbox {
  padding: 40px 80px 40px 0;
  background-color: #fff;
  border-radius: 0 40px 0 0;
  border-top: 1px solid #D6D6D6;
  border-right: 1px solid #D6D6D6;
}

.select_map_btn .new_payment_signin_box a {
  background-color: var(--color-background);
  color: var(--color-heading);
}

.two_form_group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.delivery_date_calender_iconbox {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.new_payment_wrapper {
  display: grid;

  &>* {
    grid-area: 1/1;
  }
}

.new_payment_background_box {
  display: grid;
  grid-template-columns: 25vw 1fr;
}

.new_payment_background_left {
  background-color: #fff;
  border-top: 1px solid #D6D6D6;
}

.payment_product_imgbox {
  width: 60px;
  height: 60px;
  background-color: var(--color-background);
  border-radius: 6px;
}

.payment_product_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
}

.payment_products_listing {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 30px;
  align-items: center;
}

.payment_product_name {
  font-size: 14px;
  font-family: var(--font-raleway-medium);
  margin: 0 0 5px 0;
}

.payment_product_qty_box {
  background-color: #fff;
  width: fit-content;
  padding: 4px 15px;
  border-radius: 8px;
  font-family: 'Raleway-Medium';
  font-size: 12px;
  border: 1px solid #D9D9D9;
}

.payment_product_price_box {
  font-family: var(--font-outfit-medium);
  /* color: var(--color-black); */
  font-size: 14px;
}

.new_payment_right_firstbox {
  margin: 0 0 40px 0;
}

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

.new_payment_rightbox {
  padding: 30px 0 0 100px;
  width: 100%;
  overflow: hidden;
}

.new_payment_right_secondbox .subheading {
  margin: 0 0 20px 0;
}

.new_payment_right_secondbox .form_group .form-control {
  background-color: var(--color-white);
}

.new_payment_right_thirdbox_first {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.new_payment_right_thirdbox_first .form-control.apply_btn {
  background-color: var(--color-background);
  color: var(--color-white);
  font-family: var(--font-raleway-medium);
}

.new_payment_right_thirdbox_first .form-control {
  background-color: var(--color-white);
}

.payment_price_listing {
  display: flex;
  justify-content: space-between;
}

.new_payment_right_thirdbox_second {
  margin: 15px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment_price_list_price {
  font-family: var(--font-outfit-medium);
  /* color: var(--color-black); */
}

.new_payment_right_thirdbox_third {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.new_payment_right_total_heading {
  font-size: 20px;
}

.new_payment_right_total_price {
  font-family: var(--font-outfit-medium);
  font-size: 20px;
  /* color: var(--color-black); */
}

.new_payment_right_thirdbox {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #D9D9D9;
  margin: 10px 0 0 0;
}

.payment-options {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.payment-radio {
  flex: 1;
  border-radius: 40px;
  padding: 8px 25px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--color-button);
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  opacity: 0.5;
  font-family: var(--font-raleway-medium);
}

.payment-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.payment-radio .radio-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.payment-radio span {
  color: var(--color-white);
}

.payment-radio input[type="radio"]:checked+.radio-icon+span,
.payment-radio input[type="radio"]:checked~span {
  color: var(--color-white);
}

.payment-radio:has(input[type="radio"]:checked) {
  opacity: 1;
}


/* Card details (hidden by default) */
.card-details {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.card-type-options {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.card-type-options label {
  font-size: 14px;
  cursor: pointer;
}

.card-info input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.card-extra {
  display: flex;
  gap: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.new_payment_right_fourthbox {
  margin: 40px 0 0 0;
}

/* ----- */

.option input[type="radio"] {
  cursor: pointer;
}

.option .active-option {
  display: none;
}

.option.active .active-option {
  display: block;
  margin: 10px 21px;
  padding: 10px;
}

/* ----- */

.new_payment_right_fifthbox a {
  border-radius: 40px;
  padding: 10px 25px;
  text-align: center;
  background: var(--color-button);
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  color: var(--color-white);
  font-family: var(--font-raleway-medium);
  transition: transform 0.5s ease;
}

.new_payment_right_fifthbox a:hover {
  transform: translateX(5px);
}

.new_payment_right_fifthbox.m_new_new_payment_right_fifthbox a {
  background-color: transparent;
  border: 1px solid var(--color-button);
  color: var(--color-button);
  text-transform: uppercase;
}

.new_payment_right_fifthbox {
  margin: 40px 0;
}

.new_payment_sticky_box {
  position: sticky;
  top: 180px;
}

/* Payment page ends  */

/* Product details page start */
.product_modal_firstbox {
  display: flex;
  justify-content: space-between;
}

.product_modal_heading {
  font-size: 25px;
  margin: 0;
  color: var(--color-heading);
  font-weight: 400;
}

.product_modal_heading span {
  font-family: var(--font-outfit-medium);
  font-weight: 500;
}

/* .product_modal_secondbox {
  margin: 40px 0 0 0;
} */

.new_swiper_wraper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100%;
  white-space: nowrap;
  scroll-behavior: smooth;
  height: 250px;
  padding-right: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-background) var(--color-body);
}

.product_popup_main .modal-body {
  padding: 20px 30px;
  background-color: var(--color-body);
  border-radius: 30px;
}

.product_popup_main .modal-content {
  border-radius: 50px;
}

.add_on_popup_viewbtn a {
  display: inline-block;
  width: fit-content;
  padding: 4px 15px;
  background-color: var(--color-button);
  color: var(--color-white);
  font-family: var(--font-raleway-medium);
  font-size: 14px;
  border-radius: 10px;
}

.add_on_popup_img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 100% 100% 0 0;
  overflow: hidden;
  background-color: var(--color-background);
}

.add_on_popup_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100% 100% 0 0;
}

.pop_up_btn_box {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.add_on_popup_listing {
  display: grid;

  &>* {
    grid-area: 1/1;
  }
}

.new_payment_list_content .owl-carousel .owl-stage-outer {
  padding: 40px 0;
}

.add_on_popup_viewbtn {
  position: relative;
  z-index: 10;
  align-self: end;
  justify-self: center;
  margin: 0px 0 -10px 0;
}

/* .product_modal_thirdbox .new_payment_right_fifthbox a img {
  max-width: 35px;
} */

.popup_model_btn_icon_box {
  width: 35px;
  height: 30px;
}

.popup_model_btn_icon_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.new_payment_right_diffenrent_btn a {
  background-color: #FAD19E;
  color: var(--color-black);
  text-transform: uppercase;
}

.add_on_popup_price_box {
  text-align: center;
  margin: 15px 0 0 0;
  font-family: var(--font-outfit-medium);
}

.product_detail_add_to_cart_box {
  /* margin: 60px 0 0 0; */
  margin: 40px 0 0 0;
}

.product_detail_add_to_cart_box button {
  border-radius: 40px;
  padding: 10px 25px;
  text-align: center;
  background: var(--color-button);
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  color: var(--color-white);
  font-family: var(--font-raleway-medium);
  text-transform: uppercase;
  transition-duration: 0.5s;
}

.product_detail_add_to_cart_box button:hover {
  transform: translateX(5px);
}

.product_detail_add_to_cart_box button img {
  max-width: 30px;
}

.new_product_detail_price_firstbox .home_product_price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.new_product_detail_price_firstbox .home_product_price span {
  font-size: 30px;
  text-decoration: line-through;
  font-family: var(--font-outfit-medium);
}

.new_product_details_page_mainbox .xzoom {
  -webkit-box-shadow: unset;
  -moz-box-shadow: unset;
  box-shadow: unset;
  border-radius: 100% 100% 0 0;
}

.product-details-leftbox {
  position: relative;
}

.new_product_details_wishlist {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 20px 0 0;
}

.product_listing_offer_box_product_details {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 20px;
}

.new_product_details_page_mainbox .xactive {
  -webkit-box-shadow: unset;
  -moz-box-shadow: unset;
  box-shadow: unset;
  border: 0;
}

.new_product_details_page_mainbox .xzoom-thumbs a {
  display: inline-block;
  width: 80px;
  height: 80px;
}

.new_product_details_page_mainbox .xzoom-thumbs a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.new_product_details_page_mainbox .xzoom-gallery {
  border: 0;
}

.new_product_details_page_mainbox .xzoom-thumbs {
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 10px 0 0 0;
  flex-wrap: wrap;
}

.product_details_imagebox {
  width: 500px;
  height: 500px;
}

.product_details_imagebox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
}

.new_details_varient_mainbox {
  grid-column: 1/-1;
  grid-row: 1/2;
}

/* ---Details radio btn start---- */
.select_varient_list input[type="radio"] {
  display: none;
}

.select_varient_list label {
  gap: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
  transition: border-color .25s ease, transform .18s ease;
  /* overflow: hidden; */
}

.select_varient_list label:before {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: block;
  transform: scale(0);
  transition: transform .25s ease, background .25s ease, color .25s ease;
  z-index: 2;
  color: #fff;
  text-align: center;
  line-height: 25px;
  font-weight: 700;
}

.select_varient_list .varient_img {
  width: 90px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}

.select_varient_list label img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform .2s ease, box-shadow .2s ease;
  z-index: 1;
  display: block;
  border-radius: 12px;
}

.select_varient_list input[type="radio"]:checked+label {
  border: 1px solid #d9d9d9;
  border-radius: 12px;
}

.select_varient_list input[type="radio"]:checked+label:before {
  content: "✓";
  background-color: var(--color-background);
  color: #fff;
  transform: scale(1);
}

/* --  */
.egg_box input[type="radio"] {
  display: none;
}

.egg_box label {
  gap: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
  transition: border-color .25s ease, transform .18s ease;
  overflow: hidden;
}

.egg_box input[type="radio"]:checked+label {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 5px;
}

/* ---Details radio btn ends---- */

.new_details_varient_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.new_details_varient_mainbox .varient_text {
  font-family: var(--font-outfit-light);
}

.new_details_varient_mainbox .varient_price {
  font-family: var(--font-outfit-medium);
  font-size: 18px;
}

.new_details_varient_wraper {
  padding: 20px;
  border-radius: 12px;
  background-color: var(--color-white);
}

.details_egg_mainbox {
  grid-column: 1/-1;
  grid-row: 2/3;
}

.new_details_varient_mainbox .new_payment_list_headingbox {
  margin: 0 0 20px 0;
}

.new_details_varient_mainbox .subheading,
.details_egg_mainbox .subheading {
  font-size: 18px;
}

.egg_box {
  display: flex;
  gap: 20px;
  align-items: center;
}

.flavour_heading {
  font-size: 18px;
}

.new_payment_list_headingbox .subheading {
  font-size: 18px;
}

.details_nonveg label img,
.details_veg label img {
  max-width: 16px;
}

.details_egg_mainbox .egg_box label img {
  max-width: 16px;
}

.owl-addon_popup .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.owl-addon_popup .owl-prev {
  margin: 0 0 0 -40px;
}

.owl-addon_popup .owl-next {
  margin: 0 -40px 0 0;
}

/* Product details page ends  */
/* Product listing page start  */
.page_product_listing_section {
  padding: 20px 0;
  /* border-bottom: 1px solid #E6DED6; */
}

.page_product_listing_icon {
  border-radius: 100%;
  background-color: var(--color-white);
  aspect-ratio: 1/1;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page_product_listing_icon img {
  height: 50px;
  object-fit: contain;
}

.new_occasion_slider_listing label {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.new_occasion_slider_icon {
  border-radius: 100%;
  background-color: var(--color-white);
  aspect-ratio: 1/1;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.new_occasion_slider_listing .new_occasion_slider_icon img {
  transition-duration: 0.5s;
}

.new_occasion_slider_listing:hover .new_occasion_slider_icon img {
  transform: scale(1.1);
}

.new_occasion_slider_listing:hover .page_product_listing_heading {
  color: var(--color-button);
}

.page_product_listing_list .page_product_listing_icon img {
  transition-duration: 0.5s;
}

.page_product_listing_list:hover .page_product_listing_icon img {
  transform: scale(1.1);
}

.page_product_listing_list:hover .page_product_listing_heading {
  color: var(--color-button);
}

.new_occasion_slider_icon img {
  height: 60px;
  object-fit: contain;
}

.page_product_listing_heading {
  font-size: 14px;
  text-align: center;
  font-family: var(--font-raleway-medium);
  color: var(--color-heading);
  margin: 10px 0 0 0;
  transition-duration: 0.5s;
  /* display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; */
}

.page_product_listing_list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page_product_listing_section .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.page_product_listing_section .owl-prev {
  margin: 0 0 0 -60px;
}

.page_product_listing_section .owl-next {
  margin: 0 -60px 0 0;
}

.page_product_filter_mainbox {
  display: flex;
  justify-content: space-between;
}

.page_product_filter_leftbox {
  display: flex;
  gap: 10px;
  align-items: center;
}

.page_product_filter_selects {
  display: flex;
  gap: 15px;
}

.page_product_list_filte_section .form_group .form-select {
  padding: 5px 12px;
  font-size: 1rem;
  color: var(--color-heading);
  border: 1px solid #D6D6D6;
  border-radius: 12px;
  background-color: transparent;
  width: 150px;
}

.page_product_filter_rightbox {
  display: flex;
  gap: 15px;
  align-items: center;
}

.sort_box {
  display: flex;
  gap: 15px;
  align-items: center;
}

.page_product_filter_heading {
  display: flex;
  gap: 10px;
  align-items: center;
}

.page_product_list_filte_section {
  background-color: var(--color-white);
  padding: 15px 0;
}

.product_listing_section.inner_product_listing_section {
  padding: 0 0 100px 0;
}

.new_product_list_section {
  padding: 100px 0 0 0;
}

.discount_text {
  display: none;
}

/* Product listing page ends  */
/* Product details page start  */
.product_details_frequently_section {
  padding: 100px 0;
}

.new_product_details_headingbox .heading {
  padding: 0 0 20px 0;
  border-bottom: 1px solid #d9d9d9;
}

.new_product_details_mainbox {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  padding: 100px 0 0 0;
}

.new_product_details_rightbox {
  padding: 0 0 0 100px;
}

.new_product_details_faq_box {
  margin: 40px 0 0 0;
}

.new_product_details_faq_box .accordion-button {
  font-size: 18px;
  color: var(--color-heading);
  background-color: var(--color-body);
  font-family: var(--font-raleway-medium);
  border-bottom: 1px solid #d9d9d9;
  padding: 20px 10px;
  cursor: pointer;
}

.new_product_details_faq_box .accordion-item {
  color: var(--color-heading);
  background-color: var(--color-body);
  border: 0;
}

.new_product_details_faq_box .accordion-button:not(.collapsed) {
  color: var(--color-heading);
  background-color: var(--color-body);
  box-shadow: unset;
}

.new_product_details_faq_box .accordion-button::after {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23212529' viewBox='0 0 16 16'%3e%3cpath d='M8 1a.5.5 0 0 1 .5.5V7.5H14a.5.5 0 0 1 0 1H8.5V14a.5.5 0 0 1-1 0V8.5H2a.5.5 0 0 1 0-1h5.5V1.5A.5.5 0 0 1 8 1z'/%3e%3c/svg%3e") no-repeat center;
}

.new_product_details_faq_box .accordion-button:not(.collapsed)::after {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23212529' viewBox='0 0 16 16'%3e%3cpath d='M2 7.5a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5z'/%3e%3c/svg%3e") no-repeat center;
}

.new_product_details_faq_box .accordion-body {
  padding: 20px 10px;
}

.details_price_box.new_product_detail_price_mainbox {
  display: grid;
  grid-template-columns: auto auto 1fr;
  column-gap: 40px;
  row-gap: 20px;
  align-items: center;
}

.new_product_detail_price_firstbox .currency_text {
  font-size: 30px;
  font-family: var(--font-outfit-medium);
}

.new_addcard_btn {
  border: 1px solid var(--color-black);
  font-size: 18px;
  border-radius: 8px;
  width: fit-content;
}

.new_addcard_btn button,
.new_addcard_btn span {
  color: var(--color-heading);
  font-size: 18px;
}

.new_product_detail_price_thirdbox .earliest_text {
  padding: 8px 8px 8px 15px;
  background-color: var(--color-white);
  border-radius: 8px;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 40px;
}

.new_product_detail_price_thirdbox .earliest_text span {
  font-family: var(--font-raleway-medium);
  background-color: var(--color-background);
  border-radius: 6px;
  padding: 5px 10px;
}

/* Product details page ends  */
/* Add on popup page start  */
/* Add on popup page ends  */

/* ------------SWAPNIL-CODE-START---------- */

/* ----------ADDRESS-START--------- */

.current_address_box span {
  font-family: 'Raleway-Medium';
  padding: 0 0 0px 0;
  float: left;
  width: 100%;
  color: #3A1E14;
}

.current_address_box_list input {
  display: none;
}

.current_address_box_list label {
  opacity: 1;
  width: 100%;
  cursor: pointer;
  background-color: #FFFFFF;
  padding: 20px 20px;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 5px 5px 10px #F4F4F4;
  border: 1px solid #E8E3CD;
  min-height: 330px;
  position: relative;
}

.current_address_box_list {
  position: relative;
}

.current_address_box_list::after {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 80px;
  height: 90px;
  content: "";
  background-image: url(../assets/images/special_days/show-address.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  opacity: 0.2;
}

.current_address_box_list input[type="radio"]:checked~label {
  opacity: 1;
  background-color: #fff;
}

.current_address_box_list .addresscard_heading {
  font-size: 18px;
  font-family: 'Raleway-Medium';
  color: #8B4A26;
  font-weight: bold;
}

.current_address_box_list p {
  margin: 0px 0px 5px 0px;
  display: flex;
  gap: 10px;
  font-size: 13px;
}

.current_address_box_list p b {
  font-weight: bolder;
  width: 100%;
}

.address_heading {
  position: absolute;
  top: 0;
  background-color: #8B4A26;
  line-height: normal;
  color: #fff;
  padding: 6px 18px;
  border-radius: 40px;
  margin: -10px 0 0 -10px;
}

.new_address_btn {
  background-image: url(images/address/location_icon.png);
  background-repeat: no-repeat;
  background-position: 16px center;
  background-size: 15px;
  padding: 15px 20px 15px 40px;
  background-color: #8B4A26;
  color: #fff;
  border-radius: 110px;
  font-size: 19px;
}

.new_address_btn:hover {
  background-color: #3A1E14;
  color: #fff;
}

.edit_icon_box {
  position: absolute;
  top: 0;
  right: 0;
  margin: 8px 10px 0 0;
  width: auto;
  transition-duration: 0.3s;
  opacity: 0;
}

.current_address_box_list:hover .edit_icon_box {
  opacity: 1;
}

.edit_address_icon {
  position: relative;
  right: 0;
  top: 0;
  padding: 0 6px;
  float: right;
}

.edit_address_icon img {
  max-width: 20px;
}

.current_address_box_list input[type="radio"]:checked~label .edit_icon_box {
  opacity: 1;
}

.address_right_productshow_box {
  background-color: #F8F3D4;
  border-radius: 10px;
  margin: 0 0 7px 0;
  padding: 5px 10px 5px 0px;
  float: left;
  width: 100%;
  font-size: 14px;
  text-align: left;
  box-shadow: 0 3px 0 #ECE4AF;
}

.address_right_productshow_img {
  float: left;
  width: 70px;
  text-align: center;
}

.address_right_productshow_img img {
  max-height: 40px;
  max-width: 100%;
  border-radius: 6px;
}

.address_right_productshow_heading {
  float: left;
  padding: 8px 0 0 10px;
  width: 60%;
}

.address_right_productshow_qyt {
  float: right;
  margin: 8px 0 0 0;
  font-weight: bold;
}

/* ----------ADDRESS-END--------- */

/* ----------NEW-ADDRESS-START--------- */
.label_heading {
  font-size: 16px;
}

.input_text,
.input_textarea,
.input_select {
  border: 1px solid #7b7875;
  width: 100%;
  line-height: normal;
  padding: 10px;
  font-size: 15px;
  background-color: transparent;
  border-radius: 6px;
  /* box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1); */
  min-height: 40px;
  height: 40px;
}

.personal_details_box {
  padding: 20px 10px 20px 0px;
  line-height: normal;
  float: left;
  border-bottom: 1px dashed #0d0d0d;
  margin: 0 0 10px 0;
  border-top: 1px dashed #0d0d0d;
}

.personal_details_box input {
  background-color: #f2f1ec;
  border: 0;
  line-height: normal;
  padding: 11px 20px 11px 20px;
  border-radius: 10px;
  margin: 0 15px 0 0;
}

.address_type_box input {
  display: none;
}

.address_type_box label {
  /* background-image: url(images/address/address_type_tick.png);
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 16px; */
  line-height: normal;
  padding: 10px 20px;
  margin: 0 10px 0 0;
  border-radius: 10px;
  border: 1px solid #d2d2d2;
  cursor: pointer;
  transition-duration: 0.3s;
  font-size: 14px;
}

.address_type_box label:hover {
  box-shadow: 2px 3px 9px #e8e8e8;
}

.address_type_box input[type="radio"]:checked+label {
  /* background-image: url(images/address/address_type_tick_active.png); */
  background-color: #f03613;
  border: 1px solid #f03613;
  color: #fff;
}

/* ----------NEW-ADDRESS-END--------- */


/* ----------CART-MAINBOX-START--------- */
.cart_mainbox {
  position: fixed;
  top: 0;
  right: 0;
  width: 26%;
  height: fit-content;
  z-index: 500;
  background-color: #fff;
  padding: 40px 20px 20px 20px;
  text-align: left;
  margin: 0 -100% 0 0px;
  transition-duration: 0.3s;
  border-bottom: 1px solid var(--color-background);
}

.cart_mainbox_open {
  margin: 0;
}

.cart_close {
  position: absolute;
  right: 0;
  top: 0;
  margin: 10px 20px 0 0;
  font-size: 25px;
  line-height: normal;
  cursor: pointer;
}

.qty_whitebox {
  border: 1px solid #D9D9D9;
  display: flex;
  justify-content: center;
  border-radius: 7px;
  font-weight: bold;
  width: 80px;
  padding: 4px 0;
}

.qty_minus {
  font-size: 12px;
  padding: 0 6px;
  cursor: pointer;
}

.qty_text {
  font-size: 13px;
}

.qty_plus {
  font-size: 12px;
  padding: 0 6px;
  cursor: pointer;
}

.qty_price {
  font-family: Outfit-SemiBold;
}

.cart_list_close {
  background-color: #F8F5F2;
  /* position: absolute;
  right: 0;
  top: 0; */
  line-height: normal;
  padding: 1px 7px 4px 7px;
  border-radius: 4px;
  cursor: pointer;
}

.cart_subtotal {
  font-family: Outfit-Medium;
  font-size: 25px;
}

/* ----------CART-MAINBOX-END--------- */


.my_about_product_listing {
  display: grid;

  &>* {
    grid-area: 1/1;
  }
}

.my_about_product_listing .product_wishlist {
  width: fit-content;
  height: fit-content;
  justify-self: end;
  position: relative;
  z-index: 10;
}

.product_wishlist a img {
  cursor: pointer;
}

body:has(.wishlist_mainbox) .product_listing_mainbox {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 30px;
}

.my_new_wishlist_section {
  padding: 100px 0;
}

.my_product_details_price_mainbox {
  display: flex;
  gap: 30px;
  align-items: center;
}

.varient_price {
  font-family: var(--font-outfit-medium);
}

.new_occation_listing_heading_section {
  padding: 100px 0 0 0;
}

/* Occation radio btn start */

/* hide native radio, but keep it active */
.new_occasion_slider_listing input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.new_occasion_slider_mainbox .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.new_occasion_slider_mainbox .owl-prev {
  margin: 0px 0px 0px -60px;
}

.new_occasion_slider_mainbox .owl-next {
  margin: 0px -60px 0px 0px;
}

.new_maincategory_box {
  padding: 20px 0;
  border-bottom: 1px solid #E6DED6;
}

.subcat_list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 10px;
  flex-wrap: wrap;
}

.sub-cat-main {
  padding: 4px 0;
  background-color: var(--color-background);
}

/* Occation radio btn ends  */

.product-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  row-gap: 60px;
  column-gap: 40px;
}

.by_type_heading {
  font-family: var(--font-raleway-medium);
}

/* By type radio btn start */

.new_by_type_listing {
  display: flex;
  align-items: center;
}

.new_by_type_listing input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.new_by_type_listing label {
  position: relative;
  cursor: pointer;
  font-size: 12px;
}

.new_by_type_listing label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid var(--color-heading);
  padding: 5px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.new_by_type_listing input:checked+label:after {
  content: '';
  display: flex;
  position: absolute;
  top: 0px;
  left: 5px;
  width: 6px;
  height: 12px;
  border: solid var(--color-heading);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  justify-content: center;
  align-items: center;
}

/* By type radio btn ends  */

.new_by_type_listing:not(:last-child) {
  margin: 0 10px 0 0;
}

.white_sort_by {
  white-space: nowrap;
}

/* -----------------ADDRESS-LIST-START------------- */
.address_mainbox {
  /* clear: both; */
  /* float: left; */
  width: 100%;
  max-height: 153px;
  min-height: 80px;
  overflow-y: auto;
  direction: ltr;
  scrollbar-color: #e6d5c3 #f8f5f2;
  scrollbar-width: thin;
}

.address_list {
  width: 48%;
  float: left;
  margin: 0 2% 5px 0;
}

.address_list input {
  display: none;
}

.address_list label {
  background-image: url(images/address_list_location_icon.png);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 13px 12px;
  width: 100%;
  background-color: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  font-size: 13px;
  cursor: pointer;
  line-height: normal;
  position: relative;
  padding: 5px 20px 5px 40px;
}

.address_list input[type="radio"]:checked~label {
  background-color: #F8F5F2;
}

.address_list label:hover {
  background-color: #F8F5F2;
}

.address_list .address-type {
  width: 100%;
  font-size: 15px;
  font-weight: bold;
  margin: 0 0 1px 0;
}

.address_list .address-location {
  width: 100%;
  height: 16px;
  overflow: hidden;
  position: relative;
}

.address_info {
  width: 16px;
  position: absolute;
  right: 0;
  top: 0;
  height: 16px;
  border: 1px solid #ccc;
  border-radius: 100px;
  text-align: center;
  margin: 3px 3px 0 0;
  line-height: normal;
}

.address_info img {
  max-height: 9px;
  margin: -2px 0 0 0;
}

.address_popup {
  position: absolute;
  background-color: #f8f5f2;
  z-index: 5;
  padding: 0;
  border-radius: 8px;
  border: 0;
  right: 0;
  top: 0;
  margin: 24px 4px 0 0;
  transition-duration: 0.3s;
  height: 0;
  overflow: hidden;
}

.address_popup_open {
  height: auto;
  padding: 10px;
  border: 1px solid #d5d1ce;
  overflow: visible;
}

/* .address_popup_close {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #f8f5f2;
  z-index: 5;
  padding: 1px 0 0 0;
  border-radius: 48px;
  border: 1px solid #d5d1ce;
  width: 20px;
  height: 20px;
  text-align: center;
  margin: -23px -3px 0 0;
} */

/* -----------------ADDRESS-LIST-END------------- */

.top_scroll {
  background-color: #FBF0E5;
  overflow: hidden;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marquee_content {
  display: flex;
  align-items: center;
  /* animation will be set/controlled by JS via CSS variables */
  will-change: transform;
  transform: translate3d(0, 0, 0);
  /* GPU accel */
}

/* items shouldn't flex or shrink */
.marquee_content>.marquee_list {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 5px 100px;
  white-space: nowrap;
  font-family: var(--font-raleway-medium);
  text-transform: uppercase;
}

/* icon sizing (set explicit sizes to avoid layout shift) */
.top_scroll_icon {
  width: 25px;
  height: 25px;
  /* set explicit height */
  object-fit: contain;
  margin-right: 10px;
  display: inline-block;
}

/* animation uses CSS variables set by JS:
   --marquee-distance: px to translate (positive number)
   --marquee-duration: duration in seconds
*/
.marquee_content[data-animate="true"] {
  animation-name: marqueeMove;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: var(--marquee-duration, 20s);
}

/* keyframes translate by the exact distance measured by JS */
@keyframes marqueeMove {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(calc(var(--marquee-distance) * -1), 0, 0);
  }
}

/* pause on hover */
.marquee:hover .marquee_content[data-animate="true"] {
  animation-play-state: paused;
}

/* -----------FAQ-START--------- */
.faq_mainbox .acc_list {
  float: left;
  width: 100%;
  margin: 0 0 10px 0;
}

.faq_mainbox .toggle {
  position: relative;
  float: left;
  width: 100%;
  background-color: #fffbfa;
  border-radius: 6px;
  padding: 12px 20px 10px 20px;
  line-height: normal;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  border: 1px solid #e1cac5;
}

.faq_mainbox .order_accor_list .toggle {
  background-color: #e6d5c3;
}

.faq_mainbox .voucher_accor_list .toggle {
  background-color: #fff3e1;
}

.faq_mainbox .toggle::before {
  content: "Q";
  position: relative;
  left: 0;
  top: 0;
  font-family: Metropolis-Bold;
  font-size: 18px;
  margin: 0 7px 0 -10px;
  color: #8b4a26;
}

.faq_mainbox .toggle::after {
  content: "";
  background-image: url(images/black_arrow.png);
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
  height: 10px;
  background-position: center;
  background-size: contain;
  transform: rotate(90deg);
  margin: 13px 10px 0 0;
}

.faq_mainbox .toggle:focus {
  color: #8b4a26;
}

.faq_mainbox .inner {
  float: left;
  width: 100%;
  padding: 10px 20px;
  font-size: 13px;
}

.faq_mainbox .accordion {
  float: left;
  width: 100%;
  border-radius: 10px;
}

/* -----------FAQ-END--------- */

.details_usp_listing {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 15px;
  align-items: center;
}

.details_usp_mainbox {
  margin: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.details_usp_heading {
  font-family: var(--font-raleway-medium);
  font-size: 18px;
}

/* .my_cart_btn {
  font-size: 14px;
  font-family: var(--font-raleway-medium);
  padding: 15px 30px;
  border-radius: 40px;
  background-color: var(--color-button);
  color: var(--color-white);
  width: fit-content;
} */

.my_cart_btn {
  font-size: 14px;
  font-family: var(--font-raleway-medium);
  padding: 10px 30px;
  border-radius: 40px;
  background-color: var(--color-button);
  color: var(--color-white);
  width: 100%;
  display: inline-block;
  text-align: center;
  transition: transform 0.5s ease;
}

.my_cart_btn:hover {
  transform: translateX(5px);
}

.my_cart_btn:hover {
  color: var(--color-white);
}

.my_product_image_main_box {
  display: grid;
}

.my_product_image_main_box>* {
  grid-area: 1/1;
}

.my_product_hover_image {
  opacity: 0;
  transition-duration: 0.9s;
}

.my_product_main_image {
  transition-duration: 0.9s;
}

.my_product_image_main_box:hover .my_product_hover_image {
  opacity: 1;
  transform: scale(1.03);
}

.my_product_image_main_box:hover .my_product_main_image {
  opacity: 0;
}

.banner_section .owl-carousel_homebanner {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.banner_section .owl-carousel_homebanner.is-ready {
  opacity: 1;
}

.banner_small_mobile_imgbox {
  width: 100%;
  height: 180px;
}

.banner_small_mobile_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.my_new_filterbox {
  padding: 100px 0 0 0;
}

.cart_mainbox {
  max-height: 100vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-background) var(--color-white);
}

.my-swal-button {
  padding: 5px 30px;
  border-radius: 40px;
  font-size: var(--font-raleway-medium);
  background-color: var(--color-button);
  margin: 0;
}

.my-swal-button:hover {
  background-color: var(--color-button);
}

.my-swal-title {
  font-family: var(--font-raleway-regular);
  font-size: 18px;
  color: var(--color-heading);
  font-weight: 400;
  padding: 0;
}

.swal2-html-container {
  font-size: 14px;
  font-family: var(--font-raleway-regular);
  color: var(--color-heading);
  padding: 0;
}

.my-swal-popup {
  padding: 20px;
  border-radius: 20px;
}

.new_payment_coupons_offer_mainbox {
  margin: 40px 0 40px 0;
  /* padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid #D9D9D9;
  background-color: #fff; */
}

.new_payment_wallet_mainbox {
  padding: 10px 20px;
  background-color: var(--color-white);
  border-radius: 12px;
  border: 1px solid #d9d9d9;
}

.new_payment_wallet_mainbox .payment_price_list_name {
  color: var(--color-heading);
}

.new_payment_wallet_mainbox .payment_price_list_name span {
  font-family: var(--font-outfit-medium);
}

.new_payment_wallet_mainbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #8B4A26;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  background-color: #fff;
}

.new_payment_wallet_mainbox input[type="checkbox"]:checked {
  background-color: #8B4A26;
  border-color: #8B4A26;
}

.new_payment_wallet_mainbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.my_add_onns_mainbox {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 30px;
}

.product_modal_secondbox .swiper-button-next,
.product_modal_secondbox .swiper-button-prev {
  background: none;
  position: relative;
}

.product_modal_secondbox .swiper-button-next::after,
.product_modal_secondbox .swiper-button-prev::after {
  display: none;
}

.my_swipper_new_btn {
  display: flex;
  flex-direction: row-reverse;
  margin: 30px 0 0 0;
  justify-content: center;
  gap: 40px;
}

.flavour_box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0 0 0;
}

.flavour_box select {
  width: fit-content;
}

.form-control.invalid_icon_shift.is-invalid {
  background-position: 86%;
}

.my_cart_btn_with_line {
  text-decoration: underline;
  font-family: var(--font-raleway-medium);
  font-size: 14px;
  transition: transform 0.5s ease;
  display: inline-block;
}

.my_cart_btn_with_line:hover {
  transform: translateX(5px);
}

.m_new_cart_mainbox {
  display: grid;
  grid-template-columns: 70px 1fr 20px;
  gap: 15px;
}

.m_new_cart_content_firstbox {
  font-size: 14px;
}

.m_new_cart_content_secondbox {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.m_new_cart_contentbox {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: space-between;
}

.heading.m_new_cart_heading {
  font-size: 25px;
}

.m_new_cart_btn_mainbox {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.m_new_cart_btn_mainbox:last-child {
  text-align: center;
}

.new_banner_listing {
  display: grid;

  &>* {
    grid-area: 1/1;
  }
}

.new_banner_listing .container {
  align-self: center;
}

[data-aos="fade-up"] {
  opacity: 0 !important;
  transform: translateY(15px) !important;
  transition-property: opacity, transform !important;
  transition-duration: 600ms !important;
  transition-timing-function: ease-out !important;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Hamberger menu start */
.my_hamberger_mainbox .offcanvas {
  width: 38vw;
}

.my_hamberger_mainbox .offcanvas-header {
  padding: 0 0 20px 0;
  margin: 30px 60px 20px 30px;
  border-bottom: 1px solid #D9D9D9;
}

.my_hamberger_mainbox .offcanvas-body {
  padding: 0 30px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-background) var(--color-white);
}

.my_hamberger_mainbox .offcanvas-title {
  color: var(--color-heading);
  font-family: var(--font-raleway-medium);
  line-height: normal;
  font-size: 25px;
}

.my_hamberger_mainbox .hamberger_search_group {
  display: grid;
  grid-template-columns: 1fr 40px;
  gap: 15px;
}

.my_hamberger_mainbox button.hamberger_search_btn {
  width: 40px;
  height: 40px;
  border: 1px solid #CFC0B7;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.my_hamberger_mainbox .hamberger_search_group .form-control {
  border: 1px solid #CFC0B7;
  border-radius: 60px;
}

.my_hamberger_mainbox .hamberger_search_group .form-control::placeholder {
  color: #B99F84;
  opacity: 1;
}

.my_hamberger_mainbox .hamberger_search_group .form-control:focus {
  box-shadow: unset;
}

.hamberger_occation_img {
  width: 100%;
  aspect-ratio: 1/1;
  grid-area: stack;
  border-radius: 100% 100% 0 0;
}

.hamberger_occation_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 100% 100% 0 0;
}

.hamberger_occation_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hamberger_occation_ovrlay {
  width: 100%;
  height: 100%;
  background-color: #0000007d;
  grid-area: stack;
  border-radius: 100% 100% 0 0;
  display: none;
}

.hamberger_occation_listing {
  display: grid;
  grid-template-areas: "stack";
  cursor: pointer;
}

.hamberger_occation_content {
  grid-area: stack;
  width: fit-content;
  height: fit-content;
  align-self: end;
  justify-self: center;
  color: var(--color-white);
  font-family: var(--font-raleway-medium);
  padding: 4px 4px 4px 4px;
  font-size: 16px;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8),
    -1px -1px 10px rgba(0, 0, 0, 0.8),
    0 0 2px rgba(0, 0, 0, 0.8);
}

.hamberger_combos_name {
  font-size: 14px;
  line-height: normal;
}

.hamberger_combos_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hamberger_combos_icon {
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.hamberger_combos_icon img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.hamberger_combos_listing {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 7px 15px;
  border-radius: 12px;
  border: 1px solid #E6D5C3;
  background-color: #F8F5F2;
}

.hamberger_reminder_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hamberger_reminder_listing {
  display: grid;
  grid-template-areas: "stack";
}

.hamberger_reminder_img {
  grid-area: stack;
  width: 100%;
  aspect-ratio: 5/2;
}

.hamberger_reminder_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.hamberger_reminder_overlay {
  grid-area: stack;
  background-color: #0000007d;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  display: none;
}

.hamberger_reminder_content {
  grid-area: stack;
  z-index: 1;
  font-size: 18px;
  align-self: end;
  justify-self: center;
  text-align: center;
  color: var(--color-white);
  font-family: 'Raleway-Medium';
  line-height: normal;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8), -1px -1px 10px rgba(0, 0, 0, 0.8), 0 0 2px rgba(0, 0, 0, 0.8);
}

.hamberger_reminder_content span {
  font-family: 'Raleway-SemiBold';
  color: #FFCE9D;
}

.offcanvus_recipient_mainbox {
  position: fixed;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 999;
  width: 38vw;
  height: 100%;
  transform: translateX(-100%);
  transition-duration: 0.3s;
  z-index: 999999;
}

.offcanvus_recipient_mainbox.hamberger_active {
  transform: translateX(0);
  transition-duration: 0.3s;
}

.recepient_back_icon {
  cursor: pointer;
}

.hamberger_container {
  display: grid;
  grid-template-areas: "stack";
}

input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  grid-area: stack;
  align-self: center;
  width: 100%;
  outline: none;
  position: relative;
  top: 5px;
  /* transform: translateY(-50%); */
  /* margin: auto; */
  /* top: 9px; */
  /* bottom: 0; */
  background-color: transparent;
  pointer-events: none;
}

.slider-track {
  width: 100%;
  height: 5px;
  align-self: center;
  grid-area: stack;
  /* position: absolute; */
  /* margin: auto; */
  /* top: 0; */
  /* bottom: 0; */
  border-radius: 5px;
}

input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 5px;
}

input[type="range"]::-moz-range-track {
  -moz-appearance: none;
  height: 5px;
}

input[type="range"]::-ms-track {
  appearance: none;
  height: 5px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 12px;
  width: 12px;
  background-color: var(--color-button);
  cursor: pointer;
  margin-top: -9px;
  pointer-events: auto;
  border-radius: 50%;
}

input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 1.7em;
  width: 1.7em;
  cursor: pointer;
  border-radius: 50%;
  background-color: #3264fe;
  pointer-events: auto;
  border: none;
}

input[type="range"]::-ms-thumb {
  appearance: none;
  height: 1.7em;
  width: 1.7em;
  cursor: pointer;
  border-radius: 50%;
  background-color: #3264fe;
  pointer-events: auto;
}

input[type="range"]:active::-webkit-slider-thumb {
  background-color: #ffffff;
  border: 1px solid #3264fe;
}

.values {
  /* background-color: #3264fe;
  width: 32%;
  position: relative;
  margin: auto;
  padding: 10px 0;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
  font-size: 25px;
  color: #ffffff; */
  font-size: 18px;
  font-family: var(--font-outfit-medium);
}

.hamberger_wrapper {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
}

.hamberger_parent_filters_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hamberger_parent_filters_listing {
  display: flex;
  flex-direction: column;
  justify-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  align-items: center;
  border-radius: 100% 100% 0 0;
  justify-content: center;
  transition-duration: 0.5s;
}

.hamberger_parent_filters_listing:hover {
  background-color: #F8F5F2;
}

.hamberger_parent_filters_name {
  font-family: var(--font-raleway-medium);
  color: var(--color-heading);
  text-align: center;
  font-size: 14px;
  line-height: normal;
}

.hamberger_wrapper_name {
  font-size: 18px;
  font-family: var(--font-outfit-medium);
}

.hamberger_parent_filters_icon {
  display: flex;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.hamberger_parent_filters_icon img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: center;
}

.offcanvus_celebrate_mainbox .hamberger_parent_filters_icon {
  width: 40px;
  height: 40px;
}

.offcanvus_celebrate_mainbox .hamberger_parent_filters_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 0;
}

/* Hamberger menu ends  */

.new_payment_main .new_payment_list_headingbox .subheading {
  font-size: 25px;
}

.coming_soon_mainbox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vh;
}

.coming_soon_mainbox h1 {
  font-family: 'Raleway-SemiBold';
  font-size: 40px;
  margin: 0;
}

.byyu_timeslote_box_heading {
  margin: 0 0 10px 12px;
}

.byyu_timeslote_box {
  margin: 20px 0px 0 0;
}

.time-slot-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #D6D6D6;
  border-radius: 12px;
  cursor: pointer;
}

.time-slot-group label span {
  font-size: 14px;
}

.time-slot-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.time-slot-group input[type="radio"] {
  accent-color: var(--color-button);
}

.time-slot-group label:has(input[type="radio"]:checked) {
  background: #F8F5F2;
}

.time-slot-group label:has(input[type="radio"]:checked) span {
  color: var(--color-button);
}

.flat_offer_listing {
  display: grid;
  grid-template-areas: "stack";
  flex: 0 0 auto;
  background: var(--color-white);
  border-radius: 12px;
  filter: drop-shadow(0px 0px 10px rgba(222, 222, 222, 0.3));
  position: relative;
  border: 1px solid transparent;
  cursor: pointer;
}

.address_popup_close svg {
  cursor: pointer;
}

.offer-radio {
  display: none;
}

.flat_offer_listing:has(.offer-radio:checked) {
  border: 1px solid #F5E4D3;
  background-color: #fff6ed4a;
}

.flate_info_iconbox {
  grid-area: stack;
  justify-self: end;
  align-self: start;
  background-color: var(--color-white);
  border-radius: 100%;
  z-index: 10;
  border: 1px solid var(--color-button);
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px 4px 0 0;
  cursor: pointer;
}

.flat_offer_contentbox {
  grid-area: stack;
  padding: 6px 10px;
}

.flat_offer_mainbox {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 20px;
  scroll-behavior: smooth;
  margin: 20px 0 0 0;
}

.flat_offer_mainbox::-webkit-scrollbar {
  height: 4px;
}

.flat_offer_mainbox::-webkit-scrollbar-thumb {
  background: #BD7A56;
  border-radius: 20px;
}

.flat_offer_mainbox::-webkit-scrollbar-track {
  background: #F2E5D8;
  border-radius: 20px;
}

.flat_offer_heading {
  font-family: var(--font-outfit-medium);
  text-align: center;
  font-size: 14px;
}

.flat_offer_subheading {
  font-family: var(--font-outfit-medium);
  text-align: center;
  font-size: 12px;
}

.flat_offer_para {
  font-size: 12px;
  text-align: center;
  font-family: 'Outfit-Light';
}

.view_coupon_btnbox {
  text-align: end;
  margin: 0 0 20px 0;
}

.view_coupon_btnbox a {
  color: var(--color-heading);
  font-family: 'Outfit-Light';
  text-decoration: underline;
}

.flat_offer_mainbox {
  display: none;
}

.popup {
  position: absolute;
  display: none;
  padding: 10px;
  background: #fff;
  border-radius: 6px;
  z-index: 10;
  font-size: 12px;
  max-width: 220px;
  border: 1px solid #F5E4D3;
  box-shadow: 0px 0px 12px #d6d6d66e;
}

/* New product listing filter start */
.aa_product_listing {
  display: grid;
  grid-template-columns: 15vw 1fr;
  gap: 80px;
}

.aa_product_listing_leftbox {
    background-color: #fff;
    position: sticky;
    top: 160px;
    padding: 0 20px 0 0;
    max-height: calc(100vh - 160px);
    display: flex;
    flex-direction: column;
}

.aa_product_listing_all_checkbox_mainbox {
    overflow-y: auto;
    /* height: 70vh; */
    flex: 1;
}



.aa_product_listing_all_checkbox_mainbox::-webkit-scrollbar {
  width: 2px;
}

.aa_product_listing_all_checkbox_mainbox::-webkit-scrollbar-thumb {
  background: #F2E5D8;
  border-radius: 20px;
}

.aa_product_listing_all_checkbox_mainbox::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 20px;
}

.aa_product_listing_leftbox_wraper {
  box-shadow: 4px 0px 20px -10px #d6d6d685;
  padding: 40px 10px 40px 0;
}

.aa_product_listing_mainbox {
  display: grid;
  grid-template-areas: "stack";
}

.aa_product_listing_backgroundbox {
  grid-area: stack;
}

.aa_product_listing_mainbox .container {
  grid-area: stack;
}

.aa_product_listing_backgroundbox {
  display: grid;
  grid-template-columns: 18vw 1fr;
}

.aa_product_listing_background_left {
  background-color: var(--color-white);
  width: 100%;
  height: 100%;
}

.aa_product_listing_firstbox {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #DFDAD5;
}

.aa_product_listing_clear_btnbox {
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.aa_product_listing_clear_icon {
  display: flex;
  height: 100%;
  align-items: center;
}

.aa_product_listing_clear_content {
  font-size: 14px;
}

.aa_product_listing_heading {
  font-family: var(--font-outfit-medium);
  font-size: 24px;
  line-height: normal;
}

.aa_product_listing_secondbox .hamberger_wrapper {
  grid-template-columns: auto auto;
  row-gap: 10px;
  align-items: center;
}

.aa_product_listing_secondbox .values {
  grid-column: 2/3;
  grid-row: 1/2;
  justify-self: end;
  font-size: 12px;
}

.aa_product_listing_secondbox .hamberger_container {
  grid-column: 1/3;
}

.aa_product_listing_secondbox {
  margin: 20px 0 40px 0;
}

.aa_product_listing_secondbox .hamberger_wrapper_name {
  font-size: 14px;
}

.aa_product_checkbox_heading {
  font-family: 'Raleway-SemiBold';
  margin: 0 0 6px 0;
}

.aa_product_listing_checkbox .form-check-input[type=checkbox] {
  border-radius: 4px;
}

.aa_product_listing_checkbox .form-check-input {
  border: 1px solid #F0DECD;
}

.aa_product_listing_checkbox .form-check-input:checked {
  background-color: var(--color-white);
  border-color: var(--color-button);
}

.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%238B4A26' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.aa_product_listing_checkbox_list .form-check input,
.aa_product_listing_checkbox_list .form-check label {
  cursor: pointer;
}

.aa_product_listing_checkbox .form-check-input:focus {
  box-shadow: unset;
}

.aa_product_listing_checkbox:not(:first-child) {
  margin: 20px 0 0 0;
}

.aa_product_listing_checkbox label {
  font-size: 14px;
}

.aa_product_listing_right_headingbox {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.aa_product_listing_rightbox {
  /* padding: 40px 0 0 0; */
}

.my__bredcrumb_box {
  padding: 10px 0 20px 0;
}

.page_product_filter_rightbox_new {
  display: grid;
  grid-template-areas: "stack";
  background-color: #fff;
  border-radius: 6px;
}

.sort_iconbox {
  grid-area: stack;
  align-self: center;
  margin: 0 0 0 10px;
}

.page_product_filter_rightbox_new .form_group {
  grid-area: stack;
}

.page_product_filter_rightbox_new .form-select {
  padding: 4px 12px 4px 35px;
  border: 1px solid #F5E4D3;
  border-radius: 6px;
}

.page_product_filter_rightbox_new .form-select:focus {
  box-shadow: unset;
}

.aa_filter_selected_box_name {
  font-size: 12px;
  color: #5C5C5C;
  font-family: 'Outfit-Light';
}

.aa_filter_selected_box {
  display: flex;
  gap: 10px;
  margin: 15px 0 0 0;
  flex-wrap: wrap;
}

.aa_filter_selected_box_listing {
  display: grid;
  grid-template-columns: 1fr 14px;
  gap: 10px;
  align-items: center;
  background-color: #fff;
  border-radius: 6px;
  padding: 2px 4px 2px 16px;
}

.aa_filter_selected_box_icon {
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
}

.aa_product_listing_rightbox .heading {
  margin: 0 0 0 0;
}

.aa_product_listing_rightbox #productData {
  margin: 40px 0 0 0;
}

/* .aa_sub_categories_mainbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
} */

/* .aa_sub_categories_listing_mainbox {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
} */

.aa_sub_categories_listing_mainbox .form-check {
  padding: 0;
  position: relative;
}

.aa_sub_categories_listing_mainbox .form-check .form-check-input {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

.aa_sub_categories_listing_mainbox .checkbox_circle {
  width: 14px;
  height: 14px;
  border: 1px solid #C2A799;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aa_sub_categories_listing_mainbox .checkbox_circle svg {
  display: none;
}

.aa_sub_categories_listing_mainbox .form-check-label {
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  padding: 3px 10px 3px 10px;
  border: 1px solid #F5E4D3;
  border-radius: 40px;
  background-color: var(--color-white);
  cursor: pointer;
}

.aa_sub_categories_listing_mainbox .form-check-input:checked+.form-check-label .checkbox_circle {
  border: 1px solid var(--color-button);
}

.aa_sub_categories_listing_mainbox .form-check-input:checked+.form-check-label .checkbox_circle svg {
  display: block;
}

.aa_sub_categories_listing_mainbox .form-check-input:checked+.form-check-label {
  border-color: var(--color-button);
}

.aa_sub_categories_section {
  padding: 10px 0;
  background-color: #FEFBF7;
  border-bottom: 1px solid #F5E4D3;
}

.checkbox_name {
  font-size: 14px;
}

.aa_sub_categories_heading {
  font-family: 'Raleway-SemiBold';
}

.aa_sub_categories_mainbox {
  position: relative;
}

.aa_sub_categories_section .swiper {
  width: 100%;
}

.aa_sub_categories_section .swiper-slide {
  width: auto !important;
  flex-shrink: 0;
  white-space: nowrap;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.aa_sub_categories_section .swiper-button-next::after,
.aa_sub_categories_section .swiper-button-prev::after {
  display: none;
}

.aa_sub_categories_section .swiper-button-next svg,
.aa_sub_categories_section .swiper-button-prev svg {
  width: 16px !important;
  height: 16px !important;
}

.aa_sub_categories_section .swiper-button-prev,
.aa_sub_categories_section .swiper-rtl .swiper-button-next {
  left: -40px !important;
}

.aa_sub_categories_section .swiper-button-next,
.aa_sub_categories_section .swiper-rtl .swiper-button-prev {
  right: -40px !important;
}

/* New product listing filter ends  */
.aa_product_listing_leftbox_wraper {
  background: #fff;
}

.nr_filter_iconbox {
  display: none;
}

.nr_filter_close_button,
.aa_apply_filter_btn {
  display: none;
}

.hi_user_iconbox {
  position: relative;
}


.hi_user_box {
  position: absolute;
  right: -46px;
  top: -11px;
  width: 55px;
  text-align: center;
  border: 1px solid #F4E2D1;
  padding: 2px 4px;
  background-color: #FBF0E5;
  font-size: 10px;
  border-radius: 40px;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiB4PSIwIiB5PSIwIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiIHhtbDpzcGFjZT0icHJlc2VydmUiIGNsYXNzPSIiPjxnPjxnIGZpbGw9IiMwMDAiPjxjaXJjbGUgY3g9IjEyIiBjeT0iMTciIHI9IjEiIHRyYW5zZm9ybT0icm90YXRlKDE4MCAxMiAxNykiIGZpbGw9IiM4YjRhMjYiIG9wYWNpdHk9IjEiIGRhdGEtb3JpZ2luYWw9IiMwMDAwMDAiPjwvY2lyY2xlPjxwYXRoIGQ9Ik0xMS4yNSAxNGEuNzUuNzUgMCAwIDAgMS41IDB6bTEuNS03YS43NS43NSAwIDAgMC0xLjUgMHptOC41IDVBOS4yNSA5LjI1IDAgMCAxIDEyIDIxLjI1djEuNWM1LjkzNyAwIDEwLjc1LTQuODEzIDEwLjc1LTEwLjc1ek0xMiAyMS4yNUE5LjI1IDkuMjUgMCAwIDEgMi43NSAxMmgtMS41YzAgNS45MzcgNC44MTMgMTAuNzUgMTAuNzUgMTAuNzV6TTIuNzUgMTJBOS4yNSA5LjI1IDAgMCAxIDEyIDIuNzV2LTEuNUM2LjA2MyAxLjI1IDEuMjUgNi4wNjMgMS4yNSAxMnpNMTIgMi43NUE5LjI1IDkuMjUgMCAwIDEgMjEuMjUgMTJoMS41YzAtNS45MzctNC44MTMtMTAuNzUtMTAuNzUtMTAuNzV6TTEyLjc1IDE0VjdoLTEuNXY3eiIgZmlsbD0iIzhiNGEyNiIgb3BhY2l0eT0iMSIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCI+PC9wYXRoPjwvZz48L2c+PC9zdmc+");
}

.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"],
.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"),
    url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiB4PSIwIiB5PSIwIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiIHhtbDpzcGFjZT0icHJlc2VydmUiIGNsYXNzPSIiPjxnPjxnIGZpbGw9IiMwMDAiPjxjaXJjbGUgY3g9IjEyIiBjeT0iMTciIHI9IjEiIHRyYW5zZm9ybT0icm90YXRlKDE4MCAxMiAxNykiIGZpbGw9IiM4YjRhMjYiIG9wYWNpdHk9IjEiIGRhdGEtb3JpZ2luYWw9IiMwMDAwMDAiPjwvY2lyY2xlPjxwYXRoIGQ9Ik0xMS4yNSAxNGEuNzUuNzUgMCAwIDAgMS41IDB6bTEuNS03YS43NS43NSAwIDAgMC0xLjUgMHptOC41IDVBOS4yNSA5LjI1IDAgMCAxIDEyIDIxLjI1djEuNWM1LjkzNyAwIDEwLjc1LTQuODEzIDEwLjc1LTEwLjc1ek0xMiAyMS4yNUE5LjI1IDkuMjUgMCAwIDEgMi43NSAxMmgtMS41YzAgNS45MzcgNC44MTMgMTAuNzUgMTAuNzUgMTAuNzV6TTIuNzUgMTJBOS4yNSA5LjI1IDAgMCAxIDEyIDIuNzV2LTEuNUM2LjA2MyAxLjI1IDEuMjUgNi4wNjMgMS4yNSAxMnpNMTIgMi43NUE5LjI1IDkuMjUgMCAwIDEgMjEuMjUgMTJoMS41YzAtNS45MzctNC44MTMtMTAuNzUtMTAuNzUtMTAuNzV6TTEyLjc1IDE0VjdoLTEuNXY3eiIgZmlsbD0iIzhiNGEyNiIgb3BhY2l0eT0iMSIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCI+PC9wYXRoPjwvZz48L2c+PC9zdmc+");
}

.new_apply_btn_box_listing_box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.new_apply_btn_mainbox {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.new_apply_btn_box_listing button {
  font-size: 14px;
  font-family: var(--font-raleway-medium);
  padding: 10px 18px;
  background-color: var(--color-button);
  color: var(--color-white);
  border: 0;
  outline: unset;
  height: 100%;
  display: flex;
  border-radius: 12px;
}

.new_apply_btn_box_listing .btn:hover {
  background-color: var(--color-button);
  border-color: unset;
}

.new_apply_btn_box_listing.form_group .form-control {
  background-color: var(--color-white);
  font-family: var(--font-outfit-light);
}

.new_apply_btn_box_listing_first {
  display: grid;

  &>* {
    grid-area: 1/1;
  }
}

.new_apply_btn_box_listing_cross {
  width: fit-content;
  height: fit-content;
  align-self: center;
  justify-self: end;
  margin: 0 12px 0 0;
  cursor: pointer;
  display: none;
}

/* Back to top start */
#backToTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  transform: translateY(-4px);
}

/* Back to top ends */

.my__bredcrumb_box,
.product_details__bredcrum_box {
  font-size: 12px;
}

.my__bredcrumb_box .separator,
.product_details__bredcrum_box .separator {
  padding: 0 8px;
  font-size: 16px;
}

.product_details__bredcrum_box {
  padding: 10px 0 0 0;
}

.new_product_details_share {
  position: absolute;
  top: 0;
  right: 70px;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.insta_feed_section {
  padding: 0 0 100px 0;
}

.customize_message_box {
  margin: 40px 0 0 0;
}

.customize_message_note {
  font-size: 12px;
  color: #8B4A26;
}

.customize_message_box .form_group input {
  max-width: 50%;
  background-color: #FFFFFF;
}

.text__other_message {
  font-size: 14px;
  color: #8B4A26;
}

.new__wallet_outerbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.new__wallet_outerbox .form_group input {
  background-color: #ffffff;
}

.new__loved_mainbox {
display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Media quiry start */
@media screen and (max-width:1440px) {
  .occation_section .owl-next, .product_listing_section .owl-next {
    margin: 0 -50px 0 0;
  }

  .occation_section .owl-prev, .product_listing_section .owl-prev {
    margin: 0 0 0 -50px;
  }

  .giftnow_hamburger_menu {
    margin: 15px 0 0 -40px;
  }

  .page_product_listing_section .owl-prev {
    margin: 0 0 0 -50px;
  }

  .page_product_listing_section .owl-next {
    margin: 0 -50px 0 0;
  }

  .my_hamberger_mainbox .offcanvas,
  .offcanvus_recipient_mainbox {
    width: 40vw;
  }

}

@media screen and (max-width:1400px) {
  :root {
    --font-size-base: 14px;
  }

  .heading {
    font-size: 30px;
    margin: 0 0 30px 0;
  }



  .header_menubox nav ul li:not(:last-child) a::after {
    height: 14px;
  }

  /* .header_searchbox,
  .header_lognibox,
  .header_cartbox {
    width: 42px;
    height: 36px;
  }

  .header_searchbox img,
  .header_lognibox img,
  .header_cartbox img {
    max-width: 18px;
  } */

  /* .occasion_list_icon {
    width: 70px;
    height: 70px;
  } */

  .occasion_list_name,
  .categories_heading,
  .testimonial_namebox,
  .products_heading,
  .product_price_box,
  .new_payment_list_headingbox .subheading,
  .flavour_heading,
  .new_product_details_faq_box .accordion-button {
    font-size: 16px;
  }

  /* .product_listing_image_box {
    height: 250px;
  } */

  .testiomonial_listing {
    padding: 30px;
  }

  .testimonial_namebox {
    margin: 15px 0 5px 0;
  }

  .product_delivery_box div svg {
    width: 20px;
    height: 20px;
  }

  .footer_social_listing_mainbox ul li a svg {
    width: 35px;
    height: 35px;
  }

  .play_store_btn a, .app_store_btn a {
    display: inline-block;
    width: 150px;
    height: 50px;
  }

  .footer_social_listing_mainbox ul {
    justify-content: center;
  }

  .footer_payment_listing_mainbox ul {
    margin: 30px 0 0 0px;
    justify-content: center;
  }

  .product_listing_section .owl-prev {
    margin: 0 0 0 -40px;
  }

  .product_listing_section .owl-next {
    margin: 0 -40px 0 0;
  }

  .page_product_listing_section .owl-prev {
    margin: 0 0 0 -40px;
  }

  .page_product_listing_section .owl-next {
    margin: 0 -40px 0 0;
  }

  .new_product_detail_price_firstbox .currency_text,
  .new_product_detail_price_firstbox .home_product_price span {
    font-size: 25px;
  }

  .new_details_varient_list {
    grid-template-columns: 1fr 1fr;
  }

  .product_detail_add_to_cart_box {
    margin: 40px 0 0 0;
  }

  .new_product_details_faq_box {
    margin: 20px 0 0 0;
  }

  .giftnow_hamburger_menu {
    margin: 0 0 0 -40px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .header_logobox {
    margin: 10px 0 0 0;
    width: 120px;
  }

  .new_occasion_slider_mainbox .owl-prev {
    margin: 0 0 0 -40px;
  }

  .new_occasion_slider_mainbox .owl-next {
    margin: 0 -40px 0 0;
  }

  .product_details_imagebox {
    width: 400px;
    height: 400px;
  }

  .cart_mainbox {
    width: 30%;
  }

  .categories_listing {
    padding: 40px 5px 20px 5px;
  }

  .categories_mainbox {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 30px;
  }

  .product-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    column-gap: 30px;
  }

  .my_hamberger_mainbox .offcanvas-header {
    margin: 40px 30px 20px 30px;
  }

  .my_hamberger_mainbox .offcanvas-body {
    padding: 0 30px 20px 30px;
  }

  .hamberger_occation_content {
    font-size: 14px;
  }

  .product_listing_offer_box {
    margin: 0 0 0 5px;
  }

  .time-slot-group label span {
    font-size: 12px;
  }

  .aa_product_listing_rightbox .product-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .aa_product_listing_heading {
    font-size: 20px;
  }

  .aa_product_listing_clear_content {
    font-size: 12px;
  }

  .aa_product_listing {
    grid-template-columns: 18vw 1fr;
  }

  .new_product_details_wishlist {
    margin: 0;
  }

  .new_product_details_share {
    right: 40px;
  }

}

@media screen and (min-width: 1000px) and (max-width: 1300px) {

  /*  ----------Header section start ---------- */
  .header_logobox {
    /* width: 120px; */
    /* margin: 10px 0 0 0; */
  }

  .header_menubox li a {
    font-size: 12px;
  }

  /*  ----------Header section End ---------- */
}

@media screen and (max-width:1199.98px) {
  .header_menubox nav ul li a {
    padding: 5px 15px;
  }

  .header_login_box {
    gap: 10px;
  }

  .home_usp_mainbox {
    gap: 30px;
  }

  .product_listing_mainbox {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  /* .product_listing_image_box {
    height: 220px;
  } */

  .offer_section .owl-next {
    margin: 0 -20px 0 0;
  }

  .offer_section .owl-prev {
    margin: 0 0 0 -20px;
  }

  .owl-home_testimonials .owl-dot span {
    width: 15px;
    height: 15px;
  }

  .footer_logo img {
    max-width: 150px;
  }

  footer {
    grid-template-columns: 0.6fr 0.8fr 1fr;
  }

  .product_listing_section .owl-nav {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    top: unset;
    transform: unset;
    gap: 20px;
    margin: 20px 0 0 0;
  }

  .product_listing_section .owl-prev,
  .product_listing_section .owl-next {
    margin: 0 0 0 0;
  }

  .page_product_listing_section .owl-nav {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    top: unset;
    transform: unset;
    gap: 20px;
    margin: 20px 0 0 0;
    z-index: 1;
  }

  .page_product_listing_section .owl-prev,
  .page_product_listing_section .owl-next {
    margin: 0 0 0 0;
  }

  .product_details_imagebox {
    width: 400px;
    height: 400px;
  }

  .product_details_imagebox img {
    width: 100% !important;
  }

  .new_product_details_rightbox {
    padding: 0 0 0 50px;
  }

  .product-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  }

  .giftnow_hamburger_menu {
    margin: 15px 0 0 -20px;
    left: 0;
    top: auto;
    transform: unset;
  }

  .header_logobox {
    margin: 10px 0 0 20px;
  }

  .product_listing_section .owl-nav {
    z-index: 1;
  }

  .new_occasion_slider_mainbox .owl-nav {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    top: unset;
    transform: unset;
    gap: 20px;
    margin: 20px 0 0 0;
    z-index: 1;
  }

  body:has(.wishlist_mainbox) .product_listing_mainbox {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 30px;
  }

  .cart_mainbox {
    width: 35%;
  }

  .footer_payment_listing_mainbox ul {
    justify-content: center;
    gap: 15px;
  }

  .footer_social_listing_mainbox ul {
    justify-content: center;
  }

  .my_hamberger_mainbox .offcanvas,
  .offcanvus_recipient_mainbox {
    width: 48vw;
  }

  .my_hamberger_mainbox .offcanvas-header {
    margin: 40px 20px 20px 20px;
  }

  .my_hamberger_mainbox .offcanvas-body {
    padding: 0 20px 20px 20px;
  }

  .aa_product_listing {
    grid-template-columns: 24vw 1fr;
    gap: 40px;
  }

  .aa_sub_categories_section .swiper-button-prev,
  .aa_sub_categories_section .swiper-rtl .swiper-button-next {
    left: -30px !important;
  }

  .aa_sub_categories_section .swiper-button-next,
  .aa_sub_categories_section .swiper-rtl .swiper-button-prev {
    right: -30px !important;
  }

  .hi_user_box {
    position: absolute;
    right: -20px;
    top: -11px;
    width: 42px;
    font-size: 8px;
  }
}

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

  /* ----------BANNER-START--------- */

  .banner_list {
    min-height: 400px;
  }

  .banner_text1 {
    font-size: 41px;
  }

  .giftnow_btn {
    font-size: 21px;
    padding: 8px 20px;
  }

  /* ----------BANNER-END--------- */

  /*  ----------Header section start ---------- */

  /* header {
    position: fixed;
    width: 100%;
    top: 0;
  } */

  /* .home_main {
    padding: 80px 0 0 0;
  } */

  .header_mainbox {
    padding: 20px 0;
  }

  .top_scoll {
    display: none;
  }

  .header_logobox {
    max-width: 150px;
    margin: 0px 0 0 20px !important;
    margin: 0;
    float: none;
  }

  .header_menubox_main {
    margin: 0;
  }

  .mobile_menu_heading {
    display: none;
    /* display: block; */
    position: absolute;
    right: 0;
    top: 50%;
    margin: 0 0px 0 0;
    transform: translateY(-50%);
    /* background-color: #E6D5C3; */
    /* line-height: normal; */
    /* padding: 6px 16px; */
    /* border-radius: 100px; */
    /* text-transform: uppercase; */
    cursor: pointer;
  }

  .mobile_menu_heading img {
    max-width: 24px;
  }

  .mobile_menu_close {
    display: block;
    float: right;
    font-size: 31px;
    position: absolute;
    top: 0;
    cursor: pointer;
    right: 0;
    margin: 20px 20px 0 0;
  }

  .header_menubox {
    position: fixed;
    right: 0;
    top: 0;
    background-color: #fff;
    width: 30%;
    min-width: 300px;
    height: 100%;
    padding: 9% 30px 0 3%;
    margin: 0 -1000px 0 0;
    transition-duration: 0.3s;
  }

  .header_menubox_open {
    margin: 0;
  }

  .header_menubox ul li {
    width: 100%;
  }

  .header_menubox li a {
    width: 100%;
    border-bottom: 1px solid #f2f2f2;
    border-radius: 0;
  }

  .header_menubox li::after {
    display: none;
  }

  /*  ----------Header section end ---------- */


  /* ----------HAMBURGER-GIFTNOW-MAINBOX-START--------- */
  .hamburger_gift_mainbox {
    width: 90%;
  }

  /* ----------HAMBURGER-GIFTNOW-MAINBOX-END--------- */

  /* ----------TOP_ICON-BOX-START--------- */
  .header_login_box {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: var(--color-white);
    left: 0;
    display: flex;
    justify-content: center;
    padding: 15px 0 10px 0;
    gap: 15px;
  }

  .top_icon {
    margin: 0;
    border-radius: 8px;
    /* background-color: var(--color-white); */
    border: 0;
    border: 1px solid var(--color-button);
    /* padding: 6px; */
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .search_box {
    margin: -100px auto 0;
    max-width: 330px;
    left: 0;
    right: 0;
    position: fixed;
  }

  /* ----------TOP_ICON-BOX-END--------- */



  /* Rushikesh Start */

  .home_usp_section {
    margin: 0;
    padding: 40px 0;
    background-color: var(--color-background);
  }

  .home_usp_mainbox {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .categories_mainbox {
    gap: 20px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
  }

  .footer_quick_link_listing ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer_thirdbox {
    justify-self: start;
    grid-column: 1/3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .footer_thirdbox .footer_heaingbox {
    width: 100%;
    grid-column: 1/3;
    padding: 0 0 10px 0;
    text-align: center;
  }

  .occation_section .owl-prev {
    margin: 0 0 0 -33px;
  }

  .occation_section .owl-next {
    margin: 0 -33px 0 0;
  }

  .play_store_btn a,
  .app_store_btn a {
    width: 120px;
    height: 40px;
  }

  .play_app_store_btn_box {
    gap: 10px;
    margin: 0;
    padding: 0;
  }

  .footer_social_listing_mainbox {
    align-self: center;
  }

  .footer_firstbox {
    gap: 20px;
  }

  .footer_payment_listing_mainbox ul {
    justify-content: center;
    margin: 10px 0 0 0;
  }

  .footer_payment_listing_mainbox {
    grid-column: 1/3;
  }

  .new_product_details_mainbox {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product_details_imagebox {
    margin: 0 auto;
    position: relative;
  }

  .new_product_details_page_mainbox .xzoom-thumbs {
    margin: 10px 0 0 0;
  }

  .new_product_details_page_mainbox .xzoom-thumbs a {
    width: 60px;
    height: 60px;
  }

  .new_product_details_rightbox {
    padding: 0;
  }

  footer {
    padding: 60px 60px 80px 60px;
  }

  .page_product_filter_leftbox,
  .page_product_filter_rightbox {
    gap: 6px;
    align-items: flex-start;
    flex-direction: column;
  }

  .product_listing_buy_now_box {
    padding: 4px 0;
    font-size: 16px;
  }

  .giftnow_hamburger_menu {
    margin: 0 0 0 -20px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .by_type_heading {
    font-family: var(--font-raleway-medium);
    margin: 0 0 5px 0;
  }

  /* .new_event_product_main .page_product_filter_selects {
    grid-template-columns: 1fr;
  } */


  .qty_price {
    text-align: end;
  }

  .product-wrapper {
    gap: 20px;
  }

  .total_count {
    margin: -16px 0 0 -2px;
  }

  .total_count {
    margin: -36px 0 0 28px;
  }

  .top_icon a {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .search_box input {
    border-radius: 8px;
    padding: 10px;
  }

  .product_popup_main .modal-body {
    padding: 20px;
  }

  .new_swiper_wraper {
    grid-template-columns: repeat(4, 1fr);
    height: 180px;
  }

  .cart_mainbox {
    width: 45%;
  }

  .pop_up_btn_box {
    justify-content: space-between;
    gap: 0;
  }

  .new_payment_right_fifthbox a {
    padding: 10px 20px;
  }

  .my_hamberger_mainbox .offcanvas,
  .offcanvus_recipient_mainbox {
    width: 65vw;
  }

  .aa_product_listing_backgroundbox {
    display: none;
  }

  .aa_product_listing {
    grid-template-columns: 1fr;
  }

  .aa_product_listing_right_headingbox {
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 20px;
    column-gap: 15px;
  }

  .aa_product_listing_right_headingbox form {
    grid-column: 2/3;
    justify-self: end;
    align-self: center;
  }

  .aa_product_listing_right_headingbox h2 {
    grid-column: 1/3;
    grid-row: 2/3;
  }

  .nr_filter_iconbox {
    display: grid;
    justify-self: end;
    align-self: center;
    cursor: pointer;
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 4px 20px 4px 20px;
    border: 1px solid #F5E4D3;
    border-radius: 6px;
    background-color: #fff;
  }

  .aa_product_listing_rightbox #productData {
    margin: 20px 0 0 0;
  }

  .aa_product_listing_leftbox_wraper {
    box-shadow: unset;
    padding: 30px;
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 999;
    transform: translateX(-100%);
    transition-duration: 0.5s;
  }

  .aa_product_listing_leftbox_wraper.nr_active {
    transform: translateX(0);
  }

  .nr_filter_close_button {
    display: flex;
    justify-content: end;
    width: 100%;
    margin: 0 0 15px 0;
    cursor: pointer;
  }

  .aa_product_listing_leftbox {
    top: 0;
  }

  .aa_product_listing_all_checkbox_mainbox {
    height: 65vh;
  }

  .aa_product_listing_rightbox {
    /* padding: 10px 0 0 0; */
  }

  .my__bredcrumb_box {
    padding: 10px 0 0px 0;
  }

  .home_story_rightbox video {
    margin: 30px 0;
    border-radius: 0px;
    max-width: 90%;
  }

}

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

  .home_usp_mainbox {
    gap: 20px;
  }

  .home_story_mainbox {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home_story_leftbox .heading,
  .home_story_para {
    text-align: center;
  }

  .home_story_leftbox .heading br {
    display: none;
  }

  .home_story_section,
  .categories_section,
  .product_listing_section,
  .offer_section {
    padding: 60px 0 0 0;
  }

  .my_new_wishlist_section {
    padding: 60px 0;
  }

  .occation_section {
    padding: 40px 0;
    margin: 60px 0 0 0;
  }

  .occation_section .owl-nav {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    top: unset;
    transform: unset;
    gap: 20px;
    margin: 20px 0 0 0;
    z-index: 1;
  }

  .occation_section .owl-prev,
  .occation_section .owl-next {
    margin: 0 0 0 0;
  }

  .testiomonial_section {
    padding: 60px 0;
  }

  footer {
    grid-template-columns: 0.6fr 1fr;
  }

  .footer_quick_link_listing ul {
    grid-template-columns: 1fr 0.8fr;
  }

  .footer_social_listing_mainbox {
    grid-column: 1/3;
  }

  .footer_social_listing_mainbox ul {
    justify-content: center;
    margin: 20px 0 0 0;
  }

  .footer_payment_listing_mainbox ul {
    justify-content: center;
    margin: 20px 0 0 0;
  }

  .product_listing_section .heading {
    max-width: 70%;
    text-align: start !important;
  }

  .heading {
    font-size: 22px;
  }

  .product_listing_buy_now_box a {
    padding: 4px 0;
    font-size: 14px;
  }

  .offer_section .owl-nav {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    top: unset;
    transform: unset;
    gap: 20px;
    margin: 20px 0 0 0;
  }

  .offer_section .owl-prev,
  .offer_section .owl-next {
    margin: 0 0 0 0;
  }

  .new_product_details_mainbox {
    padding: 60px 0 0 0;
  }

  .product_listing_section.product_details_frequently_section {
    padding: 60px 0;
  }

  .page_product_filter_selects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .new_product_list_section {
    padding: 60px 0 0 0;
  }

  .product_listing_buy_now_box {
    padding: 2px 0;
    font-size: 14px;
  }

  .cart_mainbox {
    width: 60%;
  }

  .new_occation_listing_heading_section {
    padding: 60px 0 0 0;
  }

  .my_new_filterbox {
    padding: 60px 0 0 0;
  }

  .play_app_store_btn_box {
    grid-column: 1/-1;
  }

  .my_hamberger_mainbox .offcanvas,
  .offcanvus_recipient_mainbox {
    width: 100%;
  }

  .product_listing_offer_box {
    margin: 0 0 0 15px;
  }

  .aa_product_listing_leftbox_wraper {
    width: 80%;
  }

  .hi_user_box {
    right: -25px;
    top: -9px;
    width: 42px;
    font-size: 8px;
  }

  .insta_feed_section {
    padding: 0 0 60px 0;
  }

}

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

  /* ----------BANNER-START--------- */
  .banner_list {
    background-image: none !important;
    min-height: inherit;
  }

  .banner_list img {
    display: block !important;
  }

  .banner_text1 {
    font-size: 18px;
    padding: 0;
  }

  .giftnow_btn {
    margin: 20px 0 0 0;
    float: left;
    font-size: 10px;
  }

  /* ----------BANNER-END--------- */

  .home_usp_heading {
    font-size: 12px;
  }

  .home_usp_subheading {
    font-size: 10px;
  }

  .categories_imgbox img {
    max-height: 100px;
  }

  .categories_readmore_box {
    margin: 20px auto 0;
    width: 25px;
    height: 25px;
  }

  .categories_mainbox {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .categories_heading,
  .products_heading,
  .product_price_box {
    font-size: 14px;
  }



  .product_listing_view_all_box a {
    padding: 4px 15px;
    font-size: 12px;
  }

  /* .product_listing_image_box {
    height: 170px;
  } */

  .product_delivery_box {
    font-size: 12px;
  }



  .footer_secondbox {
    grid-column: 1/3;
  }

  .product_listing_content_cox {
    gap: 4px;
    margin: 15px 0 0 0;
  }

  .product_listing_buy_now_box {
    bottom: -30%;
  }

  .footer_social_listing_mainbox ul li a svg {
    width: 30px;
    height: 30px;
  }

  .my_product_details_price_mainbox {
    gap: 20px;
    justify-content: space-between;
  }

  .new_product_detail_price_firstbox .currency_text,
  .new_product_detail_price_firstbox .home_product_price span {
    font-size: 18px;
  }

  .product_details_imagebox {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
  }

  .new_product_details_mainbox {
    gap: 20px;
  }

  .new_product_details_headingbox .heading {
    margin: 0 0 20px 0;
  }

  .product_detail_add_to_cart_box {
    margin: 20px 0 0 0;
  }

  .new_product_details_page_mainbox .product_listing_section .heading {
    max-width: 100%;
    text-align: start !important;
  }

  .footer_payment_listing_mainbox ul {
    row-gap: 15px;
    column-gap: 10px;
  }

  footer {
    padding: 40px 20px 100px 20px;
  }

  .new_details_varient_list {
    grid-template-columns: 1fr;
  }

  /* .header_logobox {
    max-width: 120px;
} */

  .page_product_list_filte_section .form_group .form-select,
  .new_event_product_main .form-select {
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 8px;
    width: 100px;
  }

  .product-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    row-gap: 30px;
    column-gap: 20px;
  }

  .header_logobox {
    width: 100px;
    margin: 0px auto 0 auto !important;
    /* margin: 0px 0 0 40px !important; */
  }

  /* .occasion_list_icon {
    width: 60px;
    height: 60px;
  } */


  .occation_listing a {
    gap: 20px;
  }

  .new_product_details_wishlist {
    /* margin: 0 10px 0 0; */
  }

  body:has(.wishlist_mainbox) .product_listing_mainbox {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
  }

  .cart_mainbox {
    /* padding: 70px 20px 20px 20px; */
    max-height: 100vh;
    overflow-y: auto;
    width: 100%;
  }

  .my_cart_btn {
    padding: 10px 15px;
    font-size: 13px;
  }

  .new_filter_page_main .page_product_filter_mainbox {
    gap: 30px;
  }

  .occation_section .owl-nav {
    display: none;
  }

  .product_listing_section .owl-nav {
    display: none;
  }

  .occasion_list_name {
    font-size: 10px;
    text-align: center;
    min-height: 24px;
    line-height: normal;
    /* display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; */
  }

  .occation_listing a {
    gap: 10px;
    padding: 5px;
    border-radius: 10px;
  }

  .occasion_list_icon {
    width: 25px;
    height: 25px;
  }

  .occasion_list_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }

  .home_story_rightbox {
    width: 100vw;
    /*margin-left: calc(-.5 * var(--bs-gutter-x));*/
    /*margin-right: calc(-.5 * var(--bs-gutter-x));*/
  }

  .occation_listing {
    margin: 0px;
  }

  .occation_section .heading {
    margin: 0 0 30px 0;
  }

  .occation_listing:hover {
    transform: scale(1);
  }

  .product_detail_add_to_cart_box {
    margin: 0;
    position: fixed;
    bottom: 63px;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #fff;
    z-index: 20;
    padding: 10px 0;
    left: 0;
  }

  .product_detail_add_to_cart_box button {
    font-size: 12px;
  }

  .product_detail_add_to_cart_box button img {
    max-width: 20px;
  }

  .product_wishlist img {
    max-width: 25px;
  }

  .new_occasion_slider_mainbox .owl-nav,
  .page_product_listing_section .owl-nav {
    display: none;
  }

  .page_product_listing_heading {
    /* -webkit-line-clamp: 2; */
  }

  body:has(.new_product_details_page_mainbox) footer {
    padding: 40px 20px 150px 20px;
  }

  .page_product_listing_heading {
    font-size: 14px;
  }

  .my_swipper_new_btn {
    display: none;
  }

  .product_popup_main .modal-body {
    padding: 15px;
    border-radius: 20px;
  }

  .pop_up_btn_box {
    display: flex;
    gap: 20px;
  }

  .page_product_listing_heading {
    margin: 10px 0 0 0;
  }

  .new_occasion_slider_icon {
    padding: 10px;
  }

  .page_product_listing_heading {
    font-size: 12px;
  }

  .new_maincategory_box {
    padding: 10px 0;
  }

  .new_swiper_wraper {
    grid-template-columns: repeat(3, 1fr);
    height: 180px;
  }

  .popup_model_btn_icon_box {
    width: 20px;
    height: 20px;
  }

  .add_on_popup_viewbtn a {
    font-size: 12px;
    border-radius: 8px;
  }

  .new_payment_signin_box.new_payment_signin_box_contact {
    width: 100%;
    display: flex;
    justify-content: end;
  }

  .new_payment_right_fifthbox a {
    padding: 6px 15px;
    gap: 8px;
    font-size: 11px;
  }

  .giftnow_btn:hover {
    margin: 20px 0 0 5px;
  }

  .new_product_detail_price_thirdbox .earliest_text {
    padding: 6px 6px 6px 12px;
    gap: 8px;
    font-size: 12px;
  }

  .new_product_detail_price_firstbox .currency_text {
    font-size: 16px;
  }

  .new_payment_right_fourthbox {
    margin: 0;
    position: fixed;
    bottom: 63px;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #fff;
    z-index: 20;
    padding: 10px 0;
    left: 0;
  }

  /* footer {
    z-index: -1;
  } */

  #place-order-btn div img {
    max-width: 20px;
  }

  #place-order-btn {
    padding: 10px 25px;
    font-size: 12px;
  }

  .giftnow_hamburger_menu {
    margin: 0;
  }

  .hamberger_combos_box {
    grid-template-columns: 1fr;
  }

  .hamberger_reminder_content {
    font-size: 14px;
    margin: 0 0 5px 0;
  }

  .hamberger_occation_content {
    padding: 4px 4px 4px 4px;
    font-size: 12px;
  }

  .hamberger_occation_box {
    gap: 8px;
  }

  .hamberger_wrapper_name,
  .values {
    font-size: 14px;
  }

  .hamberger_parent_filters_box {
    grid-template-columns: repeat(3, 1fr);
  }

  .hamberger_wrapper {
    gap: 10px;
  }

  .my_hamberger_mainbox .hamberger_search_group .form-control {
    font-size: 12px;
  }

  .product_listing_offer_box {
    margin: 0;
  }

  .aa_product_listing_leftbox_wraper {
    width: 100%;
    padding: 20px 8px 20px 20px;
  }

  .swiper_filter_btn_box {
    display: none;
  }

  .aa_product_listing_leftbox {
    padding: 0 8px 0 0;
  }

  .aa_product_listing_rightbox .product-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .aa_product_listing_all_checkbox_mainbox {
    height: 60vh;
  }

  .aa_apply_filter_btn {
    display: flex;
    justify-content: center;
    font-size: 14px;
    padding: 10px 15px;
    line-height: normal;
    font-family: var(--font-raleway-medium);
    background-color: var(--color-button);
    color: var(--color-white);
    text-align: center;
    border-radius: 40px;
    position: fixed;
    bottom: 10px;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
  }

  .new_loved_mainbox {
    display: flex;
    justify-content: space-between;
  }

  /* .new_payment_main .new_payment_list_headingbox .subheading,
  .new_payment_main .subheading {
    font-size: 18px;
}

.new_menu_center {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
} */

  /* .new_menu_center:has(.profile_menu_open) {
  flex-direction: column;
} */

  .new_apply_btn_mainbox {
    gap: 12px;
  }

  #backToTop {
    right: 0px;
    bottom: 70px;
  }

  #backToTop svg {
    width: 35px;
    height: 35px
  }

  .my__bredcrumb_box {
    padding: 0px 0 10px 0;
  }

  .new_product_details_share {
    right: 30px;
  }

  body:has(.new_payment_main) footer {
    z-index: -1;
  }

  .product_listing_offer_box_product_details {
    top: 0px;
  }

  .customize_message_box .form_group input {
    max-width: 100%;
  }
  
  .home_story_rightbox video {
    max-width: 100%;
}
	.new_payment_main .delivery_date_calender_iconbox {
    display: none;
}

}