.customUnderline,
.filters > li.active > a {
  text-decoration-color: #5c6b56;
  text-decoration-style: wavy;
  text-decoration-thickness: 2px;
  text-decoration: underline;
}
html {
  scroll-behavior: smooth;
  scroll-padding: 12rem;
}
body {
  min-width: 360px;
}
* {
  scrollbar-width: 2px;
  scrollbar-color: #cccccc #ffffff;
}
::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 100vw;
}
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 100vw;
}
::-webkit-scrollbar-thumb:hover {
  background: #999;
}
.reel-container::after,
.reel-container::before {
  background-image: repeating-linear-gradient(
    to right,
    #0f172a 0,
    #0f172a 15px,
    #2d3a4b 15px,
    #2d3a4b 25px
  );
  background-size: 40px 100%;
}
#masonry.row {
  width: auto !important;
}
.filters > li {
  text-align: center;
  border: none;
  padding: 0 30px;
  display: inline-block;
  margin-bottom: 3px;
}
.filters > li.btn {
  box-shadow: unset;
}
.filters > li > a {
  color: #222;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  margin: 0;
}
.filters > li > a > span {
  display: block;
  margin-bottom: 10px;
}
.filters > li > a > span > i {
  font-size: 40px;
}
.filters > li:hover > a {
  color: var(--primary);
  transition: 0.5s;
}
.filters > li:hover > a > span > i {
  animation: 1s shake;
}
.text-dhPrimary2 {
  color: #414c3c;
}
.img-line {
  width: 100%;
  height: 1px;
  margin: 0 15px;
  border-bottom: 1px dashed #7d7d7d;
}
.dz-img-box5:hover {
  box-shadow: 0 15px 55px rgba(34, 34, 34, 0.15);
}
@media (max-width: 991px) {
  .filters li {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 768px) {
  .site-filters ul li a span i {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .site-filters ul li a {
    font-size: 14px;
  }
  .filters li {
    padding: 0 10px;
  }
}
.dz-img-box8:hover .dz-media img {
  transform: scale(1.1);
  transition: 0.2s;
}
.customUnderline {
  text-underline-offset: 6px;
}
.filters > li.active > a {
  color: var(--primary);
  color: #5c6b56;
  text-underline-offset: 2px;
}
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
#page-loader img {
  height: 150px;
  width: 150px;
}
.homeHeader {
  position: relative;
  background-image: url("../imgs/header_bg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.homeHeader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.headerMarquee {
  display: flex;
  overflow: hidden;
}
.headerMarqueeContent {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: 5px;
}
.marqueeScroll {
  display: inline-block;
  white-space: nowrap;
  animation: 20s linear infinite marqueeScroll;
}
.marqueeScroll p {
  display: inline-block;
  padding: 0 20px;
  margin-bottom: 0;
  font-size: 1rem;
  transition: transform 0.3s;
}
.marqueeScroll:hover {
  animation-play-state: paused;
}
.marqueeScroll p:hover {
  transform: scale(1.1);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.heartbeat {
  -webkit-animation: 1.5s ease-in-out infinite both heartbeat;
  animation: 1.5s ease-in-out infinite both heartbeat;
}
@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.hero-slider .owl-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex !important;
  justify-content: center;
  z-index: 50;
}
.hero-slider .owl-dot span {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.7);
  display: block;
  border-radius: 50%;
}
.hero-slider .owl-dot.active span {
  background: #fff;
}
.perspective {
  perspective: 1200px;
}
.backface-hidden {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.testimonials .owl-stage-outer {
  padding: 20px 5px;
}
.reel-container {
  background-color: #1f2937;
  border: 5px solid #374151;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  width: 100%;
}
.reel-container::after,
.reel-container::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  background-color: #0f172a;
  z-index: 10;
}
.reel-container::before {
  top: 0;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  background-position: center top;
}
.reel-container::after {
  bottom: 0;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  background-position: center bottom;
}
#instagram-posts-carousel .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#instagram-posts-carousel .owl-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0.5rem;
  transition: transform 0.3s ease-in-out;
}
#instagram-posts-carousel .owl-item img:hover {
  transform: scale(1.03);
}
#instagram-posts-carousel .owl-stage-outer {
  padding: 10px 0;
  height: 100% !important;
}
#instagram-posts-carousel .owl-stage {
  display: flex !important;
  height: 100% !important;
}
.prod-img-box:after {
  content: "";
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: 1;
  background-image: linear-gradient(
    to top,
    #222 0.33%,
    rgba(34, 34, 34, 0) 101%
  );
}
.prod-img-box:hover:after {
  opacity: 0.9;
}
.single-products-box {
  position: relative;
  margin-bottom: 30px;
}
.single-products-box .products-image {
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
}
.single-products-box .products-image a {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}
.single-products-box .products-image a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.8s;
}
.single-products-box .products-image a .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.07);
}
.single-products-box .products-image .products-button {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}
.single-products-box .products-image .products-button ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.single-products-box .products-image .products-button ul li {
  margin-bottom: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: 0.3s ease-in-out;
}
.single-products-box .products-image .products-button ul li button {
  display: inline-block;
  font-size: 25px;
  line-height: 1;
  color: #000;
  position: relative;
  background: 0 0;
  border: none;
}
.single-products-box:hover .products-image a .main-image {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.07);
  z-index: 1;
}
.single-products-box:hover .products-image a .hover-image {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}
.price-discount {
  background-color: rgb(34 197 94);
  color: #fff;
  padding: 3px 10px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.price-discount::before {
  animation: 2.5s ease-out infinite shine;
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -10px;
  opacity: 0.6;
}
.progress-count:after,
.progress-count:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
}
@keyframes shine {
  0% {
    left: -10px;
  }
  60%,
  to {
    left: 100%;
  }
}
#add2cartBtn:hover .cart-icon,
#add2cartBtnM:hover .cart-icon {
  animation: 0.5s cart-wobble;
}
@keyframes cart-wobble {
  0%,
  100% {
    transform: rotate(0) scale(1);
  }
  20% {
    transform: rotate(-15deg) scale(1.1);
  }
  40% {
    transform: rotate(10deg) scale(1.1);
  }
  60% {
    transform: rotate(-10deg) scale(1.1);
  }
  80% {
    transform: rotate(5deg) scale(1.05);
  }
}
.animate-spin {
  height: 20px;
  margin-left: 5px;
  animation: 1s linear infinite spin;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.step-wizard {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}
.step-wizard-list {
  background: #fff;
  color: #333;
  list-style-type: none;
  border-radius: 10px;
  display: flex;
  padding: 30px 10px;
  position: relative;
  z-index: 10;
  width: 100%;
  margin-bottom: 0;
}
.progress-count,
.progress-count:after {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.step-wizard-item {
  padding: 0 20px;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}
.step-wizard-item + .step-wizard-item:after {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  background: #5c6b56;
  width: 100%;
  height: 2px;
  transform: translateX(-50%);
  z-index: -10;
}
.progress-count {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  color: transparent;
}
.progress-count:after {
  background: #5c6b56;
  transform: translate(-50%, -50%);
  z-index: -10;
}
.progress-count:before {
  height: 10px;
  width: 20px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translate(-50%, -60%) rotate(-45deg);
  transform-origin: center center;
}
.progress-label {
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}
.current-item .progress-count:before,
.current-item ~ .step-wizard-item .progress-count:before {
  display: none;
}
.current-item ~ .step-wizard-item .progress-count:after {
  height: 10px;
  width: 10px;
}
.current-item ~ .step-wizard-item .progress-label {
  opacity: 0.5;
}
.current-item .progress-count:after {
  background: #fff;
  border: 2px solid #5c6b56;
}
.current-item .progress-count {
  color: #5c6b56;
}
.custom-action-btn {
  display: flex;
  justify-content: center;
  border: none;
  padding: 10px 30px;
  transition: 0.5s;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}
.custom-action-btn:hover {
  color: #fff;
  scale: 1.02;
}
.custom-action-btn:not(:disabled):not(.disabled) {
  background-size: 200% 100%;
  animation: 8s linear infinite shimmer;
}
.custom-action-btn.disabled,
.custom-action-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #bbb;
  border-color: #999;
  color: #c4c4c4;
  pointer-events: none;
  background-image: none;
}
.theme-btn {
  background-color: #5c6b56 !important;
}
.theme-btn:not(:disabled):not(.disabled) {
  background-image: linear-gradient(
    -45deg,
    #5c6b56 0,
    rgba(255, 255, 255, 0.4) 50%,
    #5c6b56 100%
  );
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.otp-input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 1.5rem;
  padding: 0;
}
.bg-amber-100 {
  background-color: rgb(254 243 199);
}
.owl-thumbs .owl-thumb.active {
  opacity: 1 !important;
  border-color: #f97316;
}
.whatsapp_floating_icon {
  position: fixed;
  bottom: 50px;
  right: 10px;
  z-index: 30;
  height: 75px;
  width: 75px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition-duration: 0.3s;
}
@media screen and (max-width: 767px) {
  .whatsapp_floating_icon {
    bottom: 135px;
  }
}
.whatsapp_floating_icon:hover {
  scale: 1.1;
}
.productMain .swiper-slide {
  width: 100% !important;
}
.thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.swiper-button-next,
.swiper-button-prev {
  background: #fff;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  color: var(--primary);
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  font-weight: 700;
  scale: 1.02;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}
.buttonFooter {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  box-shadow: #2c2c2c33 0 -6px 15px;
  z-index: 29;
}

.cart-badge {
  /* Positioning */
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;

  /* Colors */
  color: #ffffff;

  /* Spacing */
  padding: 0.125rem 0.5rem;

  /* Border */
  border-radius: 9999px;

  /* Typography */
  font-size: 0.875rem;
  line-height: 1.25rem;

  /* Transform with vendor prefixes */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);

  /* Optional: Force hardware acceleration for smoother rendering */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
}
@supports (hanging-punctuation: first) and (font: -apple-system-body) and
  (-webkit-appearance: none) {
  .cart-badge {
    top: -2.25rem;
    right: -2.25rem;
  }
}
.accordion-content {
  transition: grid-template-rows 0.3s ease-out;
}
