/*--------------------------------------------------------------
# General  
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
  --primary: #bf1e2e;
  --secondary: #603a16;
  --menuText: #494949;

  --lightDarkLrimary: #67b8ff;
  --textColor: #1f2025;
  --backgroundColor: #ffff;
  --lightText: #515151;
  --darkText: #414141;

  --pageHeadding: "Playfair Display", sans-serif;
  --sectionHedding: "Poppins", sans-serif;
  --paraHadding: "DM Sans", sans-serif;
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--lightPrimary) transparent;
}

body {
  margin: 0 !important;
  /* font-family: var(--bodyFamily); */
  color: var(--lightText);
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--hadingFamily);
} */
/* Page H1 */
h1 {
  font-family: var(--pageHeadding);
}

/* Section headers like h2, h3, etc. */
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--sectionHedding);
}

/* Paragraphs */
p {
  font-family: var(--paraHadding);
  font-size: 1.1rem;
}

h2 {
  font-size: 36px;
  font-weight: 700;
}

dl,
ol,
ul {
  margin: 0;
  padding: 0px;
  list-style-type: none;
}
a,
button {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  outline: none;
  background: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}
input {
  height: 45px;
}

.error,
.required {
  color: red;
}
a {
  color: var(--primary);
  text-decoration: none !important;
}

a:hover {
  color: var(--secondary);
  text-decoration: none !important;
}

section {
  padding: 6rem 0;
}

/*start custom drawer */

.swal2-actions button {
  background-color: var(--primary) !important;
}

/* Mobile Drawer Hidden by Default */
.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.shop-sidebar {
  position: fixed;
  right: -100%;
  top: 0;
  height: 100%;
  width: 80%;
  max-width: 300px;
  background: #fff;
  z-index: 999;
  transition: right 0.3s ease-in-out;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

/* Active classes for overlay and sidebar */
.filteractive .shop-sidebar {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.filteractive .filter-overlay {
  display: block;
}
body.filteractive {
  overflow: hidden;
}

.filter-drawer-header {
  justify-content: space-between;
  position: absolute;
  right: 0;
  top: 12px;
}

/* Desktop View */
@media (min-width: 992px) {
  .shop-sidebar {
    position: static;
    width: 100%;
    height: auto;
    max-width: none;
    box-shadow: none;
    right: 0 !important;
  }

  .filter-overlay {
    display: none !important;
  }
}

/*end custom drawer */

/*Start all button */
.all_btn {
  display: inline-block;
  padding: 7px 20px;
  background-color: var(--primary);
  color: white;
  font-size: 16px;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  transition: background-color 0.3s ease;
}

.all_btn:hover {
  background-color: var(--primary); /* Darker green on hover */
  color: white !important;
}

.navbar_right.shop_now .all_btn {
  padding: 25px 50px;
  background-color: var(--primary);
  color: white;
  border-radius: 0px;
  font-size: 20px;
  position: absolute;
  right: -105px;
}
.navbar_right.shop_now .all_btn i {
  margin-right: 0.3rem;
}

.back-to-top {
  margin: 0 !important;
  padding: 0 !important;
  background: var(--primary);
  height: 0px;
  width: 0px;
  overflow: hidden;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  color: transparent;
  clear: both;
  visibility: hidden;
  position: fixed;
  cursor: pointer;
  display: block;
  border: none;
  right: 50px;
  bottom: 75px;
  font-size: 0px;
  outline: 0 !important;
  z-index: 99;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.back-to-top:hover,
.back-to-top:active,
.back-to-top:focus {
  outline: 0 !important;
}
.back-to-top::before,
.back-to-top::after {
  content: "";
  display: block;
  vertical-align: middle;
  border-bottom: solid 16px white;
  border-left: solid 10px transparent;
  line-height: 0;
  border-right: solid 10px transparent;
  height: 0;
  margin: 14px auto 0;
  width: 0;
  border-radius: 20px;
  visibility: hidden;
}
.back-to-top.show::after,
.back-to-top.show::before {
  visibility: visible;
}
.back-to-top::after {
  border-bottom-color: #fff;
  position: relative;
  top: -24px;
}
.back-to-top.show {
  display: block;
  background: var(--primary);
  color: white;
  font-size: 25px;
  right: 25px;
  bottom: 50px;
  height: 50px;
  width: 50px;
  visibility: visible;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
}
.back-to-top.show:active {
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}

.owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.owl-nav button {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  pointer-events: all;
}

.owl-nav button.owl-prev {
  margin-right: auto;
}

.owl-nav button.owl-next {
  margin-left: auto;
}

.owl-carousel .owl-nav button {
  width: 65px !important;
  height: 65px !important;
  font-size: 4rem !important;
  background: white !important;
  align-items: center !important;
  color: var(--primary) !important;
  justify-content: center !important;
  display: flex !important;
  border-radius: 50% !important;
  border: 1px solid var(--primary) !important;
}
.owl-carousel .owl-nav button span {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -2px;
}

.owl-carousel .owl-nav button:hover {
  background: var(--primary) !important;
  color: white !important;
}
.owl-dots {
  margin-top: -40px !important;
  position: relative;
}
.owl-dots .owl-dot.active span {
  background: var(--primary) !important;
}

.custom-prev,
.custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  z-index: 2;
  cursor: pointer !important;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  border-radius: 50%;
}
.custom-prev i,
.custom-next i {
  font-size: 2.6rem;
}
.custom-next {
  right: 0px; /* Adjust position */
  background: var(--primary);
  color: white;
}

.custom-prev {
  left: 0px;
  background: white !important;
  color: var(--primary);
}

.custom-slider-wrapper .custom-prev {
  left: 205px;
}
.custom-slider-wrapper .custom-next {
  right: 205px;
}

/*End all button */

.main_body {
  padding-top: 80px;
}

@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
@keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.section {
  margin: 0 auto;
  padding: 6rem 0 2rem;
}

/* .container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
} */

.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
  height: auto;
  z-index: 999;
  padding: 10px 0;
  margin: 0 auto;
  background-color: #fff;
}
.darkmode .header {
  background-color: var(--color2);
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  margin: 0 auto;
}
/* .navbar .navbar_left {
  display: flex;
  align-items: center;
  flex: 0 0 17%;
} */
/* @media (max-width: 766px) {
  .navbar .navbar_left {
    flex: 0 0 auto;
  }
} */
.navbar .navbar_center {
  display: flex;
}
@media (max-width: 766px) {
  .navbar .navbar_center {
    flex: 0 0 100%;
    order: 3;
    align-items: center;
  }
}
.navbar .navbar_right {
  display: flex;
  flex: 0 0 17%;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
}
@media (max-width: 766px) {
  .navbar .navbar_right {
    flex: 0 0 auto;
    align-items: center;
  }
}

.brand {
  display: flex;
  align-items: center;
  order: 1;
  width: 265px;
}
.brand svg {
  width: 60px;
  height: 60px;
}

@media (max-width: 992px) {
  .navbar {
    height: 80px;
  }
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 350px;
    max-width: 85%;
    height: 100%;
    z-index: 100;
    overflow: hidden;
    background-color: #fff;
    transform: translate(-100%);
    transition: all 0.4s ease-in-out;
  }
  .menu.is-active {
    transform: translate(0%);
  }
  .darkmode .menu {
    background-color: var(--color2);
  }
}
.menu .menu_header {
  display: none;
  box-shadow: var(--shadow-medium);
}
@media (max-width: 992px) {
  .menu .menu_header {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 4rem;
    z-index: 110;
    visibility: hidden;
    background: transparent;
  }
  .menu .menu_header.is-active {
    visibility: visible;
    background-color: #fff;
  }
  .menu .menu_header.is-active > .menu_arrow {
    display: flex;
  }
  .darkmode .menu .menu_header.is-active {
    background-color: var(--color2);
  }
}
@media (max-width: 992px) {
  .menu .menu_header .menu_arrow {
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 3rem;
  }
  .menu .menu_header .menu_arrow:hover i {
    color: var(--color);
  }
  .menu .menu_header .menu_arrow > i {
    font-size: 1.5rem;
    color: #000;
    transition: all 0.25s ease;
  }
  .darkmode .menu .menu_header .menu_arrow > i {
    color: #fff;
  }
}
@media (max-width: 992px) {
  .menu .menu_header .menu_title {
    cursor: pointer;
    font-weight: 500;
    text-transform: capitalize;
    color: #000;
    transition: all 0.25s ease;
  }
  .menu .menu_header .menu_title:hover {
    color: var(--color);
  }
  .darkmode .menu .menu_header .menu_title {
    color: #fff;
  }
}
@media (max-width: 992px) {
  .menu .menu_inner {
    height: 100%;
    margin-top: -3rem;
    overflow-y: auto;
    overflow-x: hidden;
  }
}
.menu .menu_inner .menu_item {
  position: relative;
  display: inline-block;
  padding-right: 20px;
  padding: 15px;
}
/* .menu .menu_inner .menu_item:last-child {
  padding-right: 0;
} */
.menu .menu_inner .menu_item:hover > .menu_link {
  color: var(--primary);
}
.darkmode .menu .menu_inner .menu_item:hover > .menu_link {
  color: var(--primary);
}
/*
.menu .menu_inner .menu_item {
  position: relative;
}
 .menu .menu_inner .menu_item.menu_dropdown:hover > .submenu {
  top: 75px !important;
  left: 75px !important;
} */
.login_menu .menu_dropdown .menu_link {
  display: flex;
  align-items: center;
  gap: 20px;
  color: black;
}
/* .auth-slider-container {
  width: 100%;
  height: auto;
  position: relative;
}

.auth-slider {
  width: 200%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.auth-slide {
  width: 50%;
  min-width: 100%; 
} */

.auth-slider-container {
  transition: height 0.3s ease;
  overflow: hidden;
}

.auth-slider {
  display: flex;
  width: 100%;
  transition: transform 0.3s ease;
}

.auth-slide {
  width: 50%;
}

@media (max-width: 992px) {
  .menu .menu_inner .menu_item {
    display: block;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .menu .menu_inner .menu_item:hover > .menu_link i {
    transform: rotate(0deg);
  }
}
@media (min-width: 992px) {
  .menu_item.menu_dropdown:hover > .submenu {
    opacity: 1;
    visibility: visible;
    top: 120%;
    /* left: 0; */
    box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
  }
}
.menu .menu_inner .menu_item .menu_link {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-transform: capitalize;
  transition: all 0.25s ease;
}
@media (max-width: 992px) {
  .menu .menu_inner .menu_item .menu_link {
    justify-content: space-between;
    padding: 20px;
  }
}
.menu .menu_inner .menu_item .menu_link > i {
  margin-left: 5px;
  font-size: 1.35rem;
  transform: rotate(360deg);
  transition: 0.35s;
}
@media (max-width: 992px) {
  .menu .menu_inner .menu_item .menu_link > i {
    margin-left: 10px;
    transform: rotate(0deg);
  }
}
.darkmode .menu .menu_inner .menu_item .menu_link {
  color: #fff;
}

.submenu {
  position: absolute;
  z-index: 100;
  top: 110%;
  left: 50%;
  width: 100%;
  height: auto;
  padding: 20px 15px;
  border-radius: 0.25rem;
  border-top: 2px solid var(--color);
  background-color: #fff;
  box-shadow: var(--shadow-medium);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
  transform: translateX(-50%);
}
.darkmode .submenu {
  border-top: 2px solid var(--color);
  background-color: var(--color2);
}
@media (max-width: 992px) {
  .submenu {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    margin: 0;
    padding: 100px 15px 0 15px;
    border-radius: 0;
    border-top: 0;
    box-shadow: none;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    transform: translateX(0%);
  }
  .submenu.is-active {
    display: block;
    height: 90vh;
    padding: 0;
    position: absolute;
    top: -210px;
  }
}
@media (min-width: 992px) {
  .submenu {
    -webkit-animation: none !important;
    animation: none !important;
  }
}
@media (min-width: 992px) {
  .submenu.megamenu_normal {
    left: 65%;
    width: 250px;
    /* width: 100%; */
    height: auto;
    margin: 0 auto;
  }
}
@media (min-width: 767px) {
  .submenu.megamenu_text,
  .submenu.megamenu_image {
    display: flex;
    flex-wrap: wrap;
    max-width: 95%;
    height: auto;
    margin: 0 auto;
  }
}
@media (min-width: 975px) {
  .submenu.megamenu_text,
  .submenu.megamenu_image {
    max-width: 992px;
  }
}
.submenu.megamenu_image .submenu_inner a {
  display: flex;
  flex-flow: column;
  align-items: center;
}
@media (max-width: 766px) {
  .filter-drawer-body {
    padding: 15px;
  }
  .submenu.megamenu_image .submenu_inner a {
    flex-flow: row;
    align-items: center;
    padding-bottom: 20px;
  }
}
.submenu.megamenu_image .submenu_inner a img {
  display: block;
  width: 100%;
  height: 150px;
  margin-bottom: 15px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 766px) {
  .submenu.megamenu_image .submenu_inner a img {
    width: 30%;
    height: 80px;
    margin-bottom: 0;
    margin-right: 15px;
  }
}
.submenu .submenu_inner {
  width: 25%;
  padding: 0 15px;
}
@media (max-width: 766px) {
  .submenu .submenu_inner {
    width: 100%;
    padding: 0;
  }
}
.submenu .submenu_inner .submenu_title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color);
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.darkmode .submenu .submenu_inner .submenu_title {
  color: var(--color);
}
@media (max-width: 766px) {
  .submenu .submenu_list {
    margin-bottom: 20px;
  }
}
.submenu .submenu_list li {
  display: block !important;
  line-height: 1;
  margin: 0 auto;
  padding: 0 !important;
}
.submenu .submenu_list li a {
  display: inline-block !important;
  padding: 10px 0;
  line-height: 1.4;
  text-transform: capitalize;
  color: #000;
  transition: all 0.25s ease-in-out;
  width: 100%;
}
.submenu .submenu_list li a:hover {
  color: var(--color);
}
@media (max-width: 766px) {
  .submenu .submenu_list li a {
    display: block;
  }
}
.darkmode .submenu .submenu_list li a {
  color: #fff;
}
.darkmode .submenu .submenu_list li a:hover {
  color: var(--color);
}

.overlay {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.45s ease-in-out;
  pointer-events: none;
}
@media (max-width: 992px) {
  .overlay {
    cursor: url("https://i.imgur.com/cPh9Zm5.png"), zoom-out;
    pointer-events: visible;
  }
  .overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  width: 25px;
  height: 15px;
  /* margin-right: 15px; */
  opacity: 0;
  visibility: hidden;
  background: transparent;
  display: none;
}
@media (max-width: 992px) {
  .burger {
    opacity: 1;
    visibility: visible;
    display: block !important;
  }
  .navbar_left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .header {
    padding: 0px;
  }
  .navbar_right.shop_now .all_btn {
    padding: 17px 20px;
    font-size: 17px;
  }
}
.burger .burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  opacity: 1;
  border-radius: 15px;
  background: #000;
}
.darkmode .burger .burger-line {
  background: #fff;
}
.burger .burger-line:nth-child(1) {
  top: 0px;
}
.burger .burger-line:nth-child(2) {
  top: 8px;
  /* width: 70%; */
}
.burger .burger-line:nth-child(3) {
  top: 16px;
}

@media (max-width: 1170px) {
  .navbar_right.shop_now .all_btn {
    padding: 10px 25px;
    font-size: 17px;
    right: 0px;
  }
}
@media (max-width: 576px) {
  .header {
    padding: 0 15px;
  }
}
@media (max-width: 540px) {
  .shop_now span {
    display: none;
  }
  .brand {
    width: 220px;
  }
  .navbar {
    height: 67px;
  }
  .main_body {
    padding-top: 67px;
  }
  .navbar_right.shop_now .all_btn {
    font-size: 30px;
    padding: 4px 10px;
    height: 43px;
    margin: 0;
    display: flex;
    align-items: center;
    border-radius: 5px;
  }
  .hero_cta a {
    padding: 10px 18px !important;
    font-size: 14px !important;
  }
}
.navbar_right.for_b2b .all_btn {
  padding: 10px 25px;
  background-color: var(--primary);
  font-size: 17px;
}
/* hero banner */
.hero_banner {
  position: relative;
}
.hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  align-items: center;
  text-align: center;
}
.hero-section .owl-carousel .item {
  position: relative;
}

.hero-section .item {
  height: 85vh;
  position: relative;
}
.hero-section.b2b_banner.inner_banner .item {
  height: 75vh !important;
  position: relative;
}

.hero-section.makers_banner.inner_banner .item {
  height: 45vh !important;
  position: relative;
}
.hero-section.inner_banner .item {
  height: 100%;
  position: relative;
}
.hero-section .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section .item .cover {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 1px;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: end;
}
.hero-section .item .cover .header-content {
  position: relative;
  /* padding: 56px; */
  overflow: hidden;
  text-align: center;
}
.hero_cta {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.hero_cta a {
  color: white;
  text-decoration: none;
  border: 1px solid white;
  padding: 12px 30px;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.3);
  /* font-family: "Montserrat", sans-serif; */
  font-size: 16px;
  /* border-radius: 10px; */
  margin-top: 10px;
}
.hero_cta a:hover {
  background: var(--primary);
  border: 1px solid var(--primary);
}
/* .hero-section .item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid #fff;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
} */
.hero-section .item .cover .header-content h2 {
  font-weight: 300;
  font-size: 35px;
  color: #fff;
}
.hero-section .item .cover .header-content h1 {
  font-size: 56px;
  font-weight: 600;
  margin: 5px 0 20px;
  word-spacing: 3px;
  color: #fff;
  font-family: var(--pageHeadding);
}
.hero-section .item .cover .header-content h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  color: #fff;
}
.hero-section .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.hero-section .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.hero-section .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
.hero-section .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}
@media (max-width: 767px) {
  .hero-section .item {
    height: 80vh !important;
  }
  .hero-section .item .cover .header-content h1,
  .slide-content h1 {
    font-size: 30px !important;
    margin: 5px 0 15px !important;
  }
  .hero-section .item .cover .header-content h4 {
    font-size: 16px;
    line-height: 24px;
  }
  .owl-carousel .owl-nav button {
    width: 50px !important;
    height: 50px !important;
    font-size: 3rem !important;
  }
  .map_section .map-container {
    padding: 0 35px;
  }
}
/* map section */
.map_section {
  background: #f9f9f9;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
}
.map-container {
  width: 100%;
  transition: all 0.6s ease;
  overflow: hidden;
  position: relative;
}
#map {
  height: 600px;
  width: 100%;
  transition: width 0.6s ease, transform 0.6s ease;
  transform-origin: left center;
  transform: scale(1);
}

.map-container.active #map {
  width: 70%;
  transform: scale(0.98); /* small animation */
}

.map-container.active {
  display: flex;
}

.info-box {
  width: 0;
  opacity: 0;
  overflow: hidden;
  padding: 15px;
  transition: all 0.6s ease;
  transform: translateX(50px);
}

.map-container.active .info-box {
  width: 30%;
  opacity: 1;
  transform: translateX(0);
  border: 1px solid #a8a8a8;
  /* border-radius: 10px; */
}

.info-box-content {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-box img {
  width: 100%;
  /* border-radius: 8px; */
  margin-bottom: 15px;
}

.info-box h3 {
  margin: 10px 0 5px;
}

.info-box a {
  text-decoration: underline !important;
}

.map-purpose {
  width: 100%;
  background: #fff;
  padding: 50px 20px;
  border-top: 2px solid #eee;
  box-sizing: border-box;
}

.map-purpose-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

.map-purpose-text {
  flex: 1 1 500px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.map-purpose-img {
  flex: 0 0 120px;
}

.map-purpose-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.leaflet-marker-icon {
  width: 50px !important;
  height: 50px !important;
  margin-left: -30px !important;
  margin-top: -57px !important;
  border: 3px solid #523735;
  border-radius: 50%;
}

/* Animation keyframes */
/* @keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(2);
  }
} */

/* Style for active marker with animation */
.leaflet-marker-icon.active_location_icon {
  /* transform: scale(2); */
  animation: scaleUp 0.5s ease;
  border: 2px solid var(--primary);
  border-radius: 50%;
  z-index: 999 !important;
  width: 60px !important;
  height: 60px !important;
}

/* .leaflet-marker-icon.active_location_icon {
  transform: scale(1.2);
  border: 4px solid #ff6600;
  border-radius: 50%;
  width: 60px !important;
  height: 60px !important;
} */

.extra-info-content {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 35px 0;
  position: relative;
}
.extra-info-content .extra-side-image {
  /* position: absolute; */
  width: 170px;
  height: auto;
}
.extra-info-content .extra-side-image.left {
  left: 0;
  top: 0;
}
.extra-info-content .extra-side-image.right {
  right: 0;
  top: 0;
}
.extra-text {
  flex-grow: 1;
}

@media (max-width: 768px) {
  .extra-info-content {
    display: block !important;
  }
  .extra-info-content img {
    display: none;
  }
  .map-container {
    flex-direction: column;
  }
  .ikkat-card.more_crafts {
    height: 410px !important;
  }

  #map {
    transform: scale(1) !important;
    margin-bottom: 20px;
  }

  .map-container.active #map,
  .map-container.active .info-box {
    width: 100%;
  }
  .map-purpose-inner {
    flex-direction: column;
  }
  .map-purpose-text {
    text-align: center;
  }
}
/* end map section */

/* Start Craft Journeys */

.ikkat-card {
  position: relative;
  /* width: 300px;
  height: 300px; */
  overflow: hidden;
  background-color: #fff;
  /* border-radius: 10px; */
  cursor: pointer;
  font-family: var(--paraHadding);
}
.ikkat-card.more_crafts {
  height: 95%;
}
.ikkat-card .image-section {
  position: relative;
}

.ikkat-card .image-section img {
  width: 100%;
  height: auto;
  display: block;
}

.ikkat-card .main-title {
  position: absolute;
  top: 10px;
  /* left: 10px; */
  font-family: var(--pageHeadding);
  font-size: 2.2rem;
  font-weight: 100;
  color: white;
  z-index: 2;
  transition: transform 0.4s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* When hover happens on the whole card, shift main-title down */
.ikkat-card:hover .main-title {
  transform: translateY(50px);
}

.ikkat-card .hover-info {
  position: absolute;
  /* z-index: 999; */
  inset: 0;
  /* background: rgba(255, 255, 255, 0.95); */
  background-color: #ff7d00;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: space-between;
  padding-top: 10rem;
  /* background-image: radial-gradient(
      circle,
      rgba(0, 0, 0, 0.1) 0px,
      transparent 1px
    ),
    radial-gradient(circle, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-position: 0 0, 57px 3px;
  background-size: 18px 18px; */
  /* color: white; */
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' fill='%23e67e22'/%3E%3C/svg%3E");
  /* mix-blend-mode: multiply; */
  /* opacity: 0.3; */
  /* pointer-events: none; */
}
.ikkat-card.more_crafts .hover-info,
.ikkat-card.more_crafts .hover-title,
.ikkat-card.more_crafts .hover-desc,
.ikkat-card.more_crafts .hover-btn {
  opacity: 1;
  transform: translateY(0px) !important;
}
.ikkat-card.more_crafts .hover-info {
  background: #767a8a;
}

.ikkat-card .hover-title {
  transform: translateY(-30px);
  opacity: 0;
  font-family: var(--sectionHedding);
  font-weight: bold;
  /* text-align: center; */
  transition: all 0.4s ease;
  position: absolute;
  top: 10px;
  /* left: 20px; */
  z-index: 1;

  font-size: 2.2rem;
  /* font-weight: 700; */
  color: transparent;
  -webkit-text-stroke: 2px white;
  text-stroke: 2px white; /* fallback for other browsers */
  /* text-align: center; */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ikkat-card .ikkat_title {
  padding: 20px;
  position: absolute;
  top: 10px;
  width: 100%;
}
.ikkat-card .hover-desc {
  margin-top: 20px;
  color: #fff;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ikkat-card .hover_desc_title {
  width: 100%;
  margin-top: 10px;
  color: #fff;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.4s ease;
  font-size: 1.4rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ikkat-card .hover_desc_title a,
.ikkat-card .hover_desc_title a:hover {
  color: #fff;
}

.ikkat-card .hover_desc_title {
  transform: translateY(20px);
  opacity: 1;
}

.ikkat-card .hover-btn {
  margin-top: 15px;
  padding: 8px 20px;
  background: transparent;
  border: 1px solid #ffff;
  cursor: pointer;
  color: white;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
  width: 100%;
}

/* Hover Effects */
.ikkat-card:hover .hover-info {
  opacity: 1;
}

.ikkat-card:hover .hover-title {
  transform: translateY(0);
  opacity: 1;
}
.ikkat-card .hover-btn:hover {
  background: var(--primary) !important;
  background-color: var(--primary) !important;
}

.ikkat-card:hover .hover-desc,
.ikkat-card:hover .hover-btn {
  transform: translateY(0);
  opacity: 1;
}

.profile_info {
  display: flex;
  gap: 20px;
  background: white;
  width: fit-content;
  padding: 20px;
  border-radius: 7px;
}
.profile-wrap {
  margin-top: -60px;
  position: relative;
  margin-bottom: 20px;
}
.profile_info img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}
.profile_pic {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .profile_info img {
    width: 75px;
    height: 75px;
    object-fit: cover;
  }
  .profile_info {
    gap: 10px;
    padding: 13px;
    border-radius: 5px;
    width: 100%;
  }
  .makersinfo .d-flex {
    gap: 13px !important;
  }
  .makersinfo .fw-bold {
    font-weight: 500 !important;
  }
  .profile_info_body h5 {
    margin: 0px;
  }
}

/* end Craft Journeys */

/*Start What’s New at India Heritage Haat */

.custom-slider {
  /* max-width: 1200px; */
  margin: 50px auto;
  position: relative;
}

.CraftRegions .slick-slide {
  margin: 0 10px; /* Adjust the 10px for your desired gap */
  width: auto; /* important for variableWidth to work */
}
/* 
.slick-prev,
.slick-next {
  background: #c41d2e;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  z-index: 100;
}

.slick-prev:before,
.slick-next:before {
  color: white;
  font-size: 24px;
} 

.slick-prev {
  left: -60px;
}
.slick-next {
  right: -60px;
}
*/
@media (max-width: 768px) {
  .slider-content {
    flex-direction: column;
    text-align: center;
  }

  .slider-image {
    max-width: 100%;
  }

  .slider-item {
    padding: 20px;
  }

  .custom-slider-wrapper .custom-next,
  .custom-next {
    right: 15px;
  }
  .custom-slider-wrapper .custom-prev,
  .custom-prev {
    left: 15px;
  }
  .custom-prev i,
  .custom-next i {
    font-size: 1.6rem;
  }
  .custom-prev,
  .custom-next {
    width: 50px;
    height: 50px;
  }
  .MeetHands .slide-item {
    width: 100% !important;
    margin: 0px;
  }
  .leaf-top-left {
    top: 15px;
  }
  .leaf-decor {
    width: 65px !important;
  }
  .flower-center {
    left: 270px !important;
    bottom: 15px !important;
    width: 40px !important;
  }
  .flip-img {
    width: 56px !important;
  }
  .leaf-bottom-right {
    bottom: 10px !important;
  }
}

/*.single-product .woocommerce-product-gallery__wrapper {
  position: sticky;
  top: 100px;
  z-index: 10;
}*/

.custom-slider-wrapper {
  position: relative;
}

.slide-item {
  margin: 0 10px;
  width: auto;
}

/*End What’s New at India Heritage Haat */

/* start Discover the Spirit of Indian Craft Regions */
.video-wrapper .media_wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  /* border-radius: 10px; */
  cursor: pointer;
}

.video-wrapper .media_wrapper img,
.video-wrapper .media_wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}

.video-wrapper .media_wrapper video {
  opacity: 0;
  pointer-events: none;
}

.video-wrapper:hover .media_wrapper video {
  opacity: 1;
  pointer-events: auto;
}

.video-wrapper:hover .media_wrapper img {
  opacity: 0;
}

.video-wrapper .text-section {
  background-color: #5f5f73;
  color: #fff;
  padding: 20px 16px;
  /* position: absolute; */
  width: 100%;
  text-align: center;
  bottom: 0;
}
.video-wrapper:hover .text-section {
  background-color: var(--primary);
}

.video-wrapper h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.video-wrapper p {
  margin: 8px 0 0;
  font-size: 14px;
  opacity: 0.85;
}
/* end Discover the Spirit of Indian Craft Regions */

/*Start Meet the Hands Behind the Heritage */
.ikkat-card .title_dec {
  font-size: 1rem;
}
.MeetHandsStyle.ikkat-card .title_dec {
  transform: translateY(50px);
  color: white;
  position: relative;
  z-index: 99;
}
.MeetHandsStyle.ikkat-card .main-title {
  transform: translateY(0px);
}
.MeetHandsStyle.ikkat-card .hover-info {
  /* background-color: transparent !important; */
  /* background-image: none !important; */
  background: #ffffff;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 41%,
    rgba(191, 30, 46, 1) 86%
  );
  justify-content: end;
}
/*End Meet the Hands Behind the Heritage */

/* Start Why We Stand Out */

.StandOut {
  background-color: #fef7ec;
}
.icon {
  height: 90px;
  margin-bottom: 25px;
  width: fit-content;
}
.center-image {
  max-width: 100%;
  height: auto;
}
.benefit-item {
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .benefit-item {
    padding: 30px 0px;
  }
}

/* End Why We Stand Out */

.newsletter-section {
  background-color: #ff6a00;
  /* background-size: cover; */
  /* background-repeat: no-repeat; */
  color: #fff;
  /* padding: 80px 20px; */
  text-align: center;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' fill='%23e67e22'/%3E%3C/svg%3E");
  /* mix-blend-mode: multiply; */
  /* opacity: 0.3; */
  /* pointer-events: none; */
}

.newsletter-section h2 {
  font-family: var(--sectionHedding);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.newsletter-section p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #fcefe5;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  width: 100%;
  padding: 15px;
  border: 2px solid #fff;
  border-radius: 0;
  font-size: 16px;
  margin-bottom: 20px;
  background-color: transparent;
  color: #fff;
}

.newsletter-form input::placeholder {
  color: #fcefe5;
}

.newsletter-form button,
.newsletter-form .mailpoet_submit {
  width: 100%;
  padding: 15px;
  background-color: #b6453a;
  border: none;
  color: white;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 15px;
}

/* Optional decorative icons/images */
.leaf-decor {
  position: absolute;
  width: 90px;
}

.leaf-top-left {
  top: 45px;
  left: 0px;
}

.leaf-bottom-right {
  bottom: 45px;
  right: 0px;
}

.flower-center {
  position: absolute;
  left: 300px;
  bottom: 85px;
  width: 80px;
}
.flip-img {
  position: absolute;
  width: 90px;
  transform: scaleX(-1);
}

.symbols-bottom {
  position: absolute;
  bottom: 25px;
  left: 40%;
  transform: translateX(-50%);
  width: 65px;
}

@media (max-width: 576px) {
  .newsletter-section h2 {
    font-size: 22px;
  }
  .newsletter-section p {
    font-size: 14px;
  }
}

/* start Carft Page */
.search_body {
  position: relative;
}
.search_body i {
  position: absolute;
  font-size: 1.5rem;
}
.location-toggle input[type="radio"] {
  display: none;
}

.location-toggle label {
  padding: 6px 16px;
  border-radius: 6px;
  cursor: pointer;
  background-color: #f8f9fa;
  transition: 0.3s;
  font-weight: 500;
  color: #333;
}

.location-toggle {
  padding: 8px 10px;
}

.location-toggle input[type="radio"]:checked + label {
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.search-wrapper {
  background: #e6e6e6;
  border-radius: 6px;
  padding: 0 0 0 20px;
}

.search-wrapper input {
  border: none;
  background: #e6e6e6;
  outline: none;
  height: 50px;
  padding-left: 38px;
  font-size: 1rem;
  font-weight: 500;
}
#top_location_bar input {
  display: none;
}
/* Base label style */
#top_location_bar label {
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Make label red when checkbox is checked */
#top_location_bar input[type="checkbox"]:checked + label {
  background-color: #ffc2c8;
  color: var(--primary);
}

.search-wrapper input:focus {
  background: #e6e6e6 !important;
}
.filter {
  height: 50px;
  border-radius: 6px !important;
  font-size: 1.3rem;
  gap: 10px;
}

#suggestions {
  position: absolute;
  background: white;
  border: 1px solid #ddd;
  max-height: 225px;
  overflow-y: auto;
  z-index: 999;
  width: 100%;
  top: 52px;
  right: 16px;
}
.term-suggestion {
  padding: 0px !important;
}
.term-suggestion a {
  width: 100%;
  display: flex;
  overflow: hidden;
  width: auto;
  color: #1468a9;
  margin: 0;
  padding: 15px;
  position: relative;
  background: #ffffff;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid #ececec;
  animation-delay: 0s;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease;
  backface-visibility: hidden;
  -webkit-animation-delay: 0s;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -webkit-animation-timing-function: ease;
  -webkit-backface-visibility: hidden;
}
/* End Carft Page */

/*Start about us */

.inner_banner {
  width: 100%;

  /* height: 400px; */
  /* standard banner height */

  overflow: hidden;

  position: relative;
}
.hero-section .item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* background-color: black; */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000bd 75%);
  opacity: 0.6;
}

.aboutsection {
  background: #fcf4e8;
}

.small_text {
  color: #996b4d;

  font-size: 16px;

  font-weight: 500;
}

.mission-section {
  padding: 60px 20px;
  position: relative;
  background-color: #fffcf7;
  overflow: hidden;
}

.card-custom {
  border: 1px solid #e8d9cf;

  text-align: center;

  padding: 30px 20px;

  height: 100%;

  transition: all 0.3s ease;

  background: #fcfaf7;
}

.card-custom:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.card-custom .card-icon {
  width: 48px;

  height: 48px;

  margin: 0 auto 20px;

  background-color: #b86d4b;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  font-size: 1.5rem;
}

.card-custom .card-title {
  font-weight: 600;

  margin-bottom: 15px;
}

.card-custom .card-text {
  font-size: 0.95rem;

  color: #555;
}

.leaf-top-right {
  right: 0;
}

.leaf-buttom-left {
  bottom: 45px;

  left: 0;
}

.heritage-section .card-body {
  text-align: left;
}
.heritage-section .card-body .card-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.heritage-section img {
  width: 100%;
  border-radius: 10px;
}
.btb-cat-wrap .slide-item .craft-card img {
  border-radius: 10px;
}

.btn-more-heritage {
  text-align: center;
}
.btn-more-heritage .more-btn {
  background: #bf1e2e;
  color: #ffffff;
  padding: 11px 20px;
}
@media (max-width: 768px) {
  .sidebar_widget_header {
    margin-right: 90px !important;
  }
  .clear_filter {
    padding: 5px 10px !important;
  }
  .filter-drawer-body .sidebar_widget_body {
    margin-top: -17px;
    margin-right: 0px;
    border-right: 0px solid #d8d8d8;
    height: 100%;
  }
  section {
    padding: 3rem 0;
  }
  .storybg-wrap img,
  .storybg-end-wrap img {
    width: 55px;
  }
  .heritage-section .card-body h4 {
    font-size: 1.2rem;
  }
  .heritage-section .card-text {
    font-size: 1rem;
  }
  #top_location_bar,
  .vr {
    display: none !important;
  }
}
/* end about us */

/* Start B2B */
.category .filter {
  gap: 10px;
  color: var(--primary);
  /* font-weight: 500; */
}

/* start catagoris */

.craft-card {
  text-align: center;
}
.craft-card a {
  color: #333;
}
.craft-card h6 {
  margin: 13px 0 0;
}
.categories_navgat {
  display: flex;
  gap: 70px;
  justify-content: center;
  margin-top: 70px;
}
.categories_navgat .custom-next,
.categories_navgat .custom-prev {
  position: inherit !important;
}

.product-card {
  /* width: 360px; */
  position: relative;
  background: white;
  border-radius: 7px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
  /* margin: 30px auto; */
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  color: white;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 12px;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-tilt-effect {
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.product-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
  position: relative;
}

.product-category {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #71717a;
  margin-bottom: 8px;
}

.product-title {
  font-size: 18px;
  font-weight: 500;
  color: #18181b;
  margin: 0 0 4px 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-description p {
  font-size: 16px;
  color: #52525b;
  /* line-height: 1.5; */
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 15px; */
}

.product-price {
  display: flex;
  flex-direction: column;
  line-height: 0;
}
.custom-price-range {
  line-height: 1;
}
.price-was {
  font-size: 16px;
  text-decoration: line-through;
  color: #a1a1aa;
  margin-bottom: 2px;
}

.price-now {
  font-size: 22px;
  font-weight: 700;
  color: #18181b;
}
.submit {
  justify-content: center;
  height: 45px;
}
.product-button,
.submit {
  background: linear-gradient(45deg, var(--primary), var(--primary)) !important;
  color: white !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 5px 25px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  display: flex !important;
  text-transform: uppercase !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.product-button::before,
.submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: all 0.6s ease;
}

.product-button:hover,
.submit:hover {
  background: linear-gradient(45deg, #f16573, #f16573);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-button:hover::before,
.submit:hover::before {
  left: 100%;
}

.button-icon {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  font-weight: 100;
}

.product-button:hover .button-icon {
  transform: rotate(-10deg) scale(1.1);
}
.star-rating {
  color: var(--primary);
  font-size: 1.4rem;
  margin-top: -5px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: -50px;
  background: white;
  width: fit-content;
  padding: 6px 15px;
  border-radius: 0 6px 0 0;
  margin-left: -20px;
}
.product-rating i {
  color: rgb(255, 215, 0);
}
.rating-count {
  margin-left: 8px;
  font-size: 12px;
  color: #71717a;
}

.product-stock {
  font-size: 12px;
  font-weight: 700;
  color: #22c55e;
}
@media (max-width: 768px) {
  .slide-item {
    margin: 0px 12px;
  }
  .MeetHands .slick-slide {
    margin: 0px;
  }
  .custom-slider {
    margin: 15px auto;
  }
  .HeritageHaatSlider .slick-list {
    height: 30vh;
  }
  .HeritageHaatSlider .slick-track {
    height: 30vh;
  }
  .HeritageHaatSlider .slide-item {
    height: 30vh;
  }
  .HeritageHaatSlider .slick-slide img {
    height: 100%;
  }
  .HeritageHaatSlider .craft-card a img {
    width: 100%;
  }
  .full_width_banner .start-50 {
    width: 100%;
  }
  .full_width_banner h2 {
    font-size: 1.2rem;
  }
  .product-image {
    height: 180px;
  }
  .product-info {
    padding: 10px;
  }
  .product-bottom {
    display: block;
  }
  .product-button {
    border-radius: 8px;
    padding: 3px 18px;
    margin-top: 20px;
  }
  .contact-button {
    padding: 5px 20px;
    font-size: 15px;
    height: 41px;
    margin-top: 20px;
  }
  .product-price {
    padding-top: 12px;
  }
  .product-title {
    font-size: 16px;
  }
  .star-rating {
    font-size: 1rem;
  }
  .product-rating {
    margin-top: -38px;
  }
  .offcanvas {
    width: 80% !important;
  }
  .shop_toolbar_wrapper {
    justify-content: space-between !important;
    padding: 0 15px;
  }
  .mobile_filter {
    font-size: 1.5rem;
    margin: 0;
    background: #fff3f4;
    padding: 2px 12px;
    border: 1px solid #f1cbcf !important;
    /* border: none; */
    border-radius: 8px;
    cursor: pointer;
    height: 40px;
    color: var(--primary);
  }
  .products-array {
    padding: 15px;
  }
  .woocommerce .col2-set,
  .woocommerce-page .col2-set {
    width: 47%;
    display: flex;
  }
  .woocommerce .col2-set .col-1,
  .woocommerce-page .col2-set .col-1 {
    margin-right: 53px !important;
  }
  .login_btn {
    height: 35px !important;
    padding: 5px 11px !important;
    margin-top: 5px;
  }

  .HeritageHaat .custom-slider-wrapper .custom-prev,
  .HeritageHaat .custom-slider-wrapper .custom-next,
  .custom-next {
    bottom: 0;
    top: 112%;
  }

  .HeritageHaat .custom-slider-wrapper .custom-next {
    right: 30%;
  }
  .HeritageHaat .custom-slider-wrapper .custom-prev {
    left: 30%;
  }

  #authModal .modal-header {
    right: 0px;
  }
}
@media (max-width: 400px) {
  /* .product-card {
    width: 90%;
  } */

  .product-title {
    font-size: 18px;
  }

  .product-image {
    height: 200px;
  }

  .product-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .product-price {
    margin-bottom: 5px;
  }

  .product-button {
    width: 100%;
    justify-content: center;
  }
}

/* .sidebar_widget {
  margin-left: -15px;
} */

.sorting_by {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 12px;
  display: inline-flex;
  gap: 6px;
  /* font-family: Arial, sans-serif; */
  font-size: 14px;
  background-color: #fff;
}

.sorting_by .sort-label {
  font-weight: normal;
  color: #555;
}

.sorting_by select.orderby {
  border: none;
  background: transparent;
  font-weight: bold;
  color: #000;
  appearance: none; /* Remove default arrow */
  padding-right: 18px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='70,100 20,40 120,40' fill='%23000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px;
  cursor: pointer;
}
.shop_toolbar_wrapper {
  justify-content: end;
  height: 40px;
}
.sidebar_widget .sidebar_title {
  margin: 0;
}
.sidebar_widget_header {
  margin-right: 25px;
  height: 40px;
  align-items: center;
  justify-content: space-between;
}
.clear_filter {
  font-weight: 600;
  padding: 6px 18px;
  /* border: 1px solid; */
  background: #fbe2e5;
  border-radius: 5px;
}
.padding_r_0 {
  padding-right: 0px !important;
}
.sidebar_widget {
  height: 100%;
}
.sidebar_widget_body {
  margin-top: -17px;
  margin-right: 20px;
  border-right: 2px solid #d8d8d8;
  height: 95%;
}
/* End catagoris */

/*start product list page */
.category-widget {
  /* font-family: sans-serif; */
  margin-bottom: 40px;
}

.category-title {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.category-list {
  list-style: none;
  padding-right: 10px;
  margin: 0;
}

.category-list li {
  margin-bottom: 10px;
}

.custom-checkbox {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  user-select: none;
  display: inline-block;
  font-size: 16px;
  color: black;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 1.5px solid #999;
  border-radius: 3px;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: #d32f2f;
  border-color: #d32f2f;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.send_inquiry_btn {
  height: 50px;
  text-align: center;
  justify-content: center;
  margin-top: 30px;
}

.price_slider_body {
  margin: 40px 0;
  padding-right: 40px;
  padding-left: 15px;
}

.price_slider {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}
.slider_range .noUi-horizontal {
  height: 10px;
  cursor: pointer;
}

.slider_range .noUi-horizontal .noUi-handle {
  width: 20px;
  height: 20px;
  right: -17px;
  top: -6px;
  box-shadow: none;
  background: var(--primary);
  cursor: pointer;
}

.slider_range .noUi-handle {
  border-radius: 15px;
}
.slider_range .noUi-handle:after,
.slider_range .noUi-handle:before {
  height: 10px;
  width: 2px;
  background: var(--primary);
  left: 6px;
  top: 3px;
}
.slider_range .noUi-handle:after {
  left: 10px !important;
}
.slider_range .noUi-tooltip {
  height: 22px;
  display: flex;
  align-items: center;
  position: absolute;
  border: 1px solid #de979e;
  border-radius: 3px;
  background: var(--primary);
  color: white;
  padding: 1px 6px;
  text-align: center;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 700;
}
.slider_range .noUi-connect {
  background: var(--primary);
}

.slider_range .noUi-connects {
  background: #de979e;
}
/* .filter-drawer {
  display: none;
} */

@media (max-width: 991px) {
  .slider_range .noUi-horizontal .noUi-handle.noUi-handle-upper {
    right: 0px;
  }

  .slider_range .noUi-horizontal .noUi-handle.noUi-handle-lower {
    right: -13px;
  }
}

.discount_range .form-check {
  margin-bottom: 10px;
}
.discount_range .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* end product list */

/*start product details page */
.product-share-btn {
  position: absolute;
  right: 25px;
  top: 15px;
  z-index: 99;
}
.product-share-btn button {
  background: white;
  font-size: 1.4rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 0;
}

/* cat menu */

/* Top-level button */
.cat_dropdown {
  position: relative;
  display: inline-block;
}
.cat_dropdown .dropdown-item.active,
.cat_dropdown .dropdown-item.active {
  background: #faebeb;
  color: var(--primary);
}

.cat_dropdown .dropdown-toggle {
  background: #fff3f4;
  padding: 10px 20px;
  border: 1px solid #f1cbcf !important;
  /* border: none; */
  border-radius: 8px;
  cursor: pointer;
}

.cat_dropdown .dropdown-item {
  font-weight: 500;
  /* color: black; */
  position: relative;
}
.cat_dropdown .dropdown-menu .dropdown-item a {
  display: block;
  color: #373737;
  width: 100%;
}
.cat_dropdown .submenu {
  padding: 0px !important;
}

/* All dropdown menus */
.cat_dropdown .dropdown-menu,
.cat_dropdown .submenu,
.cat_dropdown .sub-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  min-width: 200px;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.cat_dropdown .dropdown-menu {
  top: 100%;
  left: 0;
  padding: 0px;
}

/* Show on hover */
.cat_dropdown .dropdown:hover .dropdown-menu,
.cat_dropdown .dropdown-item:hover > .submenu,
.cat_dropdown .submenu-item:hover > .sub-submenu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Items */
.cat_dropdown .dropdown-item a,
.cat_dropdown .submenu-item a,
.cat_dropdown .sub-submenu-item a {
  padding: 10px 16px;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: background 0.3s ease;
}
.cat_dropdown .dropdown-item,
.cat_dropdown .submenu-item,
.cat_dropdown .sub-submenu-item {
  padding: 0px;
}

/* .cat_dropdown .dropdown-item a:hover
 .cat_dropdown .submenu-item a:hover  {
  background: #faebeb !important;
  color: #b51e1e !important;
} */

.cat_dropdown .dropdown-item,
.cat_dropdown .submenu-item a,
.cat_dropdown .sub-submenu .submenu-item a {
  transition: all 0.3s ease;
}

/* Base hover - any single element */
/* .cat_dropdown .dropdown-item:hover,
.cat_dropdown .submenu-item:hover,
.cat_dropdown .submenu-item:hover a,
.cat_dropdown .sub-submenu .submenu-item:hover a {
  background: #faebeb;
  color: var(--primary);
} */

/* Hovering parent - affect all children too */
.cat_dropdown .dropdown-item a:hover,
.cat_dropdown .dropdown-item:hover
/* .cat_dropdown .dropdown-item:hover .submenu a, 
/* .cat_dropdown .dropdown-item:hover .sub-submenu a*/ {
  background: #faebeb;
  color: var(--primary);
}

/* Hovering submenu item - affect parent + its children */
.cat_dropdown .submenu-item:hover,
/* .cat_dropdown .submenu-item:hover a, */
.cat_dropdown .submenu-item:hover ~ a
/* .cat_dropdown .submenu-item:hover .sub-submenu a*/ {
  background: #faebeb;
  color: var(--primary);
}

/* Final product link hover affects all ancestors too */
/* .cat_dropdown .sub-submenu .submenu-item:hover a, */
.cat_dropdown .sub-submenu .submenu-item:hover {
  background: #faebeb;
  color: var(--primary);
}

/* Optional: icon button hover */
.cat_dropdown .dropdown-toggle:hover {
  background: #faebeb;
  color: var(--primary);
}

/* .cat_dropdown .dropdown-item:hover{
  background: #f3f3f3;

} */

/* .cat_dropdown .highlight {
  background: #f3f3f3;
  color: #b51e1e;
  font-weight: bold;
} */

.cat_dropdown .arrow {
  float: right;
}
@media (max-width: 768px) {
  .cat_dropdown .filter span {
    display: none;
  }
  .navbar_right.for_b2b .all_btn {
    padding: 6px 17px;
    font-size: 15px;
  }
}
/* end cat menu */

/*start product details page */
.drawer-product-info img {
  width: 60px;
  border: 1px solid #ccc;
  border-radius: 10px;
}
.drawer-product-info {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}
/* end B2B */

/* Start login singup modal */
.login_btn {
  height: 45px;
}
.login input,
.lost_reset_password input,
.register input {
  width: 100%;
}
.login label,
.lost_reset_password label,
.register label {
  margin-bottom: 10px;
}

.comment-respond .comment-form-author label,
.comment-respond .comment-form-email label {
  width: 100%;
}
/* End login singup modal */

/* start footer */

.social_media i {
  font-size: 1.4rem;
}
.list-unstyled li {
  width: 100%;
  display: block;
  padding: 5px 0;
}
.copy_right img {
  height: 26px;
}
.copy_right {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* End footer */
.woocommerce div.product div.images .flex-control-thumbs li {
  width: 16% !important;
  margin-right: 10px !important;
}
.woocommerce div.product div.images .flex-control-thumbs {
  padding-top: 20px !important;
}
.position-stiky-wrap {
  position: sticky;
  top: 100px;
  z-index: 10;
}
.lost_password {
  display: none;
}
.woocommerce form .form-row {
  width: 100% !important;
}

/*edit by chinmoy 04-08-2025*/
.current-menu-item .menu_link,
.current-menu-item span.text-dark {
  color: #bf1e2e !important;
}
