@font-face {
  font-family: "Stylo";
  src: url("../fonts/stylo_regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Stylo";
  src: url("../fonts/stylo_bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --main-font: "Stylo", sans-serif;
  --base-font-size: 16px;
  --primary-color: #333;
  --grayish: #f2f2f2;
  --bluish: #a5abbf;
  --fs-lg: 2.25rem;
  --fs-md: 2rem;
  --fs-sm: 0.9rem;
  --fs-xs: 0.7rem;
}

@media (width >44em) {
  :root {
    --fs-lg: 3rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
@media only screen and (min-width: 768px) {
  /* For Webkit browsers (Chrome, Safari, Edge) */
  ::-webkit-scrollbar {
    width: 6px; /* Width of the scrollbar */
    height: 6px; /* Height of the scrollbar (for horizontal scrollbars) */
  }

  ::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
  }

  ::-webkit-scrollbar-thumb {
    background: #000; /* Color of the scrollbar thumb */
    border-radius: 3px; /* Rounded corners on the scrollbar thumb */
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color when hovering over the scrollbar thumb */
  }
}

/* Hide arrows for WebKit browsers (e.g., Chrome, Safari) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide arrows for Firefox */
/* input[type="number"] {
  -moz-appearance: textfield;
} */

/* For Firefox */
html {
  scrollbar-width: thin; /* Makes the scrollbar thin */
  scrollbar-color: black #f1f1f1; /* Scrollbar color (thumb color first, then track color) */
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--main-font);
  font-size: var(--fs-sm);
  color: var(--primary-color);
  letter-spacing: 1px;
  /* background-color: #f0f0f0; */
  background-color: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  line-height: 1.1;
}

p {
  line-height: 1.5;
  max-width: 70ch;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: black;
}

button {
  font-size: var(--fs-sm);
}

img {
  width: 100%;
}

section {
  overflow: hidden;
}

.row {
  --bs-gutter-x: 3rem;
}

.grayish {
  background-color: var(--grayish);
}

.bluish {
  color: var(--bluish);
}

.brb {
  border-bottom: 1px solid #e1e1e1;
}

.brt {
  border-top: 1px solid #e1e1e1;
}

.py-6 {
  padding: 100px 0;
}

.gray-panel {
  background-color: var(--grayish);
}

.button-container {
  position: relative;
  display: inline-block;
}

/* button effect */
.cta {
  position: relative;
  padding: 10px 20px;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  background-color: #000;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 2px;
  display: inline-block;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  min-width: 100px;
  text-align: center;
}

.cta-alt {
  color: #000;
  background-color: #fff;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background-color: #fff;
  pointer-events: none;
  z-index: -1;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cta:hover {
  color: #000;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.cta-alt:hover {
  color: #fff;
  background-color: #000;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  box-shadow: 0 0.5rem 1rem rgba(255, 255, 255, 0.15);
}

.cta-alt .ripple {
  background-color: #000; /* Change ripple to black for cta-alt */
}

.main-heading {
  background-color: var(--grayish);
  border-bottom: 1px solid #e1e1e1;
  text-align: center;
  padding: 0.5rem 0;
  text-transform: uppercase;
}

.main-heading h1 {
  margin: 0;
}

.overlayd {
  border-image: linear-gradient(hsl(0 0% 0% / 0.75), hsl(0 0% 0% / 0.95)) fill 1;
}

/* For whtasapp icon */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  z-index: 999999999999;
}

.whatsapp-icon img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}

@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(2px, 2px);
  }
  50% {
    transform: translate(0, 4px);
  }
  75% {
    transform: translate(-2px, -2px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.whatsapp-icon img {
  animation: shake-animation 3s infinite;
}

.whatsapp-icon img:hover {
  animation: none;
  scale: 1.1;
  transition: all 500ms ease;
}

@keyframes shake-animation {
  0%,
  95% {
    transform: translate(0, 0);
  }
  96%,
  98% {
    transform: rotate(-20deg);
  }
  97%,
  99% {
    transform: rotate(20deg);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* Tooltip styling */
.tooltip {
  /* visibility: hidden; */
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  bottom: 60px; /* Adjust according to icon size */
  right: -15px; /* Adjust to center the tooltip */
  white-space: nowrap;
  z-index: 1001;
  /* opacity: 0; */
  transition: opacity 0.3s;
  font-size: 11px;
}

/* Show tooltip on hover */
.whatsapp-icon:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* Preloader Styles */
.preloader {
  /* Position it fixed to cover the entire screen */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* White background */
  background-color: #ffffff;
  /* Ensure it's on top of ALL other content - Increased z-index */
  z-index: 99999999999999999999; /* Very high z-index */
  /* Use flexbox to center the image */
  display: flex;
  justify-content: center;
  align-items: center;
  /* Initially visible */
  opacity: 1;
  visibility: visible;
  /* Smooth transition for hiding */
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

/* Style for the loader image */
.preloader img {
  /* Start scaled down and transparent (optional, animation will handle this) */
  /* transform: scale(0); */
  /* opacity: 0; */

  /* Define the animation */
  /* Changed keyframes and added infinite iteration */
  animation: scaleUpDownFadeInOut 2s ease-in-out infinite; /* name, duration, timing-function, iteration-count */

  /* Optional: Set a max-width/width for your SVG if needed */
  width: 100px; /* Example width, adjust as needed */
  max-width: 80%; /* Ensure it doesn't get too big on small screens */
  height: auto;
}

/* Keyframes for the scaling and fading animation */
/* Modified keyframes for infinite up and down cycle */
@keyframes scaleUpDownFadeInOut {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

/* Class to hide the preloader */
.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

.top-bar {
  overflow: hidden;
  height: 24px;
  line-height: 24px;
  position: relative;
  background-color: #333;
}

.top-bar-container {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200%;
  animation: marquee 20s linear infinite;
}

.top-bar-set {
  width: 50%;
  display: flex;
  justify-content: space-around;
  flex: 1;
}

.top-bar .header-service {
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: #dbdbdb;
}

@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

.top-bar-container:hover {
  animation-play-state: paused;
}

.nav-bar {
  position: -webkit-sticky; /* For Safari */
  position: sticky;
  top: 0;
  z-index: 9999999;
  background-color: #fff;
  width: 100%;
}

.custom-logo {
  width: 100px;
  height: auto;
}

.nav-bar a {
  /* font-weight: bold; */
  letter-spacing: 2px;
}

.nav-actions .bi {
  cursor: pointer;
}

.nav-actions .bi-person {
  font-size: 1.1rem;
}

.track-heading {
  text-align: center;
  margin: 20px 0;
  font-size: 32px;
  font-weight: bold;
  color: #343a40;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(
    90deg,
    rgba(58, 58, 58, 0.5) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}

.track-card {
  background: #f1f1f1;
  border-color: #e5e5e5;
}

.track-card img {
  width: 50%;
  margin: auto;
}

.header-tracking {
  position: relative;
}

.header-tracking .tracking-list {
  position: absolute;
  padding: 0 10px;
  background: #f1f1f1;
  top: 30px;
}

.tracking-list li {
  display: flex;
  gap: 5px;
  margin: 10px 0;
}

.tracking-list li a {
  display: flex;
  gap: 5px;
  align-items: center;
}

.tracking-list li img {
  width: 30px;
  height: 30px;
}

.bi-list {
  font-size: 1.2rem;
}

.bi-x-lg {
  font-size: 1rem;
}

.close-nav {
  display: none;
}

.mob-nav {
  position: fixed;
  right: -100%;
  background-color: #fff;
  transition: right 0.3s ease-in-out;
  z-index: 9999999999;
}

.mob-nav li {
  border-bottom: 1px solid #e1e1e1;
}

.mob-nav a {
  display: inline-block;
  padding: 1rem 2rem;
  text-transform: uppercase;
}

.burger {
  text-align: center;
}

/* Cart icon dot */
.cart-icon {
  position: relative;
}

.srch-init {
  cursor: pointer;
}

/* home banner */
.slider-wrap {
  background: #000;
  height: 850px;
}
.swiper-slide--inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.swiper-slide {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.slide--bg {
  z-index: 0;
  visibility: inherit;
  font-weight: 400;
  white-space: nowrap;
  min-height: 834px;
  min-width: 834px;
  max-height: 834px;
  max-width: 834px;
  background-color: #16234033;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  overflow: auto;
}
.swiper-slide-active .slide--bg {
  animation: zoomInBg 1.5s ease forwards;
}

.slide--bg .slide-bg--inner {
  width: 650px;
  height: 650px;
  background: #16234096;
  margin: auto;
  border-radius: 50%;
}
.swiper-slide-active .slide--bg .slide-bg--inner {
  animation: zoomInInner 1s ease forwards;
}
.slide-detail {
  position: relative;
  z-index: 1;
  text-align: center;
}

.slide-main--heading {
  display: block;
  text-align: center;
  color: #fff;
  line-height: normal;
  text-shadow: rgb(11, 18, 54) 3px 3px 15px;
  padding: 0px 0px 23px;
  font-weight: 700;
  font-size: 52px;
  white-space: normal;
  text-transform: capitalize;
}
.from-left,
.from-right {
  opacity: 0;
  filter: blur(4px);
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.swiper-slide-active .from-left {
  animation: fadeInLeft 1s ease forwards;
  animation-delay: 0.8s;
}
.swiper-slide-active .from-right {
  animation: fadeInRight 1s ease forwards;
  animation-delay: 1s;
}
.slide-main--subheading {
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 20px;
  padding-bottom: 25px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0;
  filter: blur(4px);
}
.swiper-slide-active .slide-main--subheading {
  transition: opacity 0.5s ease, filter 0.5s ease;
  animation: fadeInDown 1s ease forwards;
  animation-delay: 1.2s;
}

.slide-des {
  text-align: center;
  line-height: 25px;
  border-width: 0px;
  padding: 0px 0px 25px;
  letter-spacing: 0px;
  font-weight: 300;
  font-size: 14px;
  white-space: normal;
  min-height: 0px;
  min-width: 347px;
  max-height: none;
  max-width: 347px;
  color: rgb(255, 255, 255);
  margin: auto;
  opacity: 0;
}
.swiper-slide-active .slide-des {
  transition: opacity 0.5s ease, filter 0.5s ease;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.4s;
}
.slide-cta .slide-btn {
  position: relative;
  transition: 0.3s ease-in-out !important;
  opacity: 0;
}
.swiper-slide-active .slide-cta .slide-btn {
  transition: opacity 0.5s ease, filter 0.5s ease;
  animation: fadeInUp2 1s ease forwards;
  animation-delay: 1.4s;
}

.slide-badge {
  display: flex;
  flex-direction: column;
  width: 69px;
  height: 69px;
  background: #000;
  line-height: normal;
  font-size: 9px;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  position: absolute;
  /* right: -184px; */
  left: 100%;
  top: 0;
  transition: 0.3s ease-in-out !important;
  opacity: 0;
}
.swiper-slide-active .slide-badge {
  transition: opacity 0.5s ease, filter 0.5s ease;
  animation: fadeInUp3 1s ease forwards;
  animation-delay: 1.5s;
}
.slide-badge .patch-check svg {
  height: 20px;
  width: 20px;
  margin-bottom: 4px;
}
/* Keyframe animations for Badge */
@keyframes fadeInUp3 {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
/* Keyframe animations for CTA */
@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
/* Keyframe animations for Description */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 0.8;
    transform: translateY(0);
    filter: blur(0);
  }
}
/* Keyframe animations for Sub Heading */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
/* Keyframe animations for Main Heading */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

/* Keyframe animations for background */
@keyframes zoomInBg {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomInInner {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.parallax-slider .slide-btns {
  width: 54px;
  height: 54px;
  background: 0 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
}
.slide-btns.swiper-button-next:after,
.slide-btns.swiper-button-prev:after {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
}
.slide-btns:hover {
  border: 1px solid #fff;
  background: #fff;
}
.slide-btns:hover:after {
  color: #232323;
}
span.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: transparent;
  background-color: transparent;
  box-shadow: inset 0 0 0 2px #fff;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  opacity: 1;
  display: none;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}
.autoplay-progress {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 10px;
}

.progress-fill {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  height: 100%;
  background-color: #00000026;
  width: var(--progress, 0%);
  transition: width 0.5s ease;
}
/* ======== Sticky Footer ========= */
.sticky-footer {
  position: fixed;
  width: 100%;
  background: #333;
  z-index: 999;
  bottom: 0;
}
.sticky-footer .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  padding-right: 15px;
}
.creditd a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}
.social ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0px;
  column-gap: 10px;
  align-items: center;
}
.social ul li a {
  display: flex;
  background: #fff;
  height: 30px;
  width: 30px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
}
.social ul li a img {
  max-width: 20px;
}
/* ==================== For Ipad ========================== */
@media only screen and (max-width: 981px) {
  .slider-wrap {
    height: 750px;
  }
  .slide--bg {
    min-height: 720px;
    min-width: 720px;
    max-height: 720px;
    max-width: 720px;
  }
  .slide--bg .slide-bg--inner {
    width: 590px;
    height: 590px;
  }
  .slide-badge {
    right: -116px;
  }
}

/* ==================== For Ipad ========================== */
@media only screen and (max-width: 480px) {
  .slider-wrap {
    height: 191px;
  }
  .slide--bg {
    min-height: 550px;
    min-width: 550px;
    max-height: 550px;
    max-width: 550px;
  }
  .slide--bg .slide-bg--inner {
    width: 450px;
    height: 450px;
  }
  .parallax-slider .slide-btns {
    display: none;
  }
  .slide-main--heading {
    font-size: 32px;
  }
  .swiper-pagination {
    display: flex;
    column-gap: 15px;
    justify-content: center;
    bottom: 100px !important;
  }
  span.swiper-pagination-bullet {
    display: block;
  }
}
/* Home Banner Ends */
main {
  overflow: hidden;
}

.cart-notification-dot {
  position: absolute;
  top: 4px;
  right: -8px;
  width: 10px;
  height: 10px;
  background-color: #ff4747;
  border-radius: 50%;
  content: "";
}

.cat {
  overflow: hidden;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  position: relative;
  transition: transform 0.3s ease-in-out;
  display: block;
  margin-bottom: 20px;
}

.cat-info {
  position: absolute;
  bottom: 0;
  left: 10px;
  font-weight: bold;
  color: #fff;
  font-size: 1rem;
}

.cat-overlay {
  border-image: linear-gradient(hsl(240 100% 20% / 0.6), hsl(0 100% 20% / 0.6))
    fill 1;
}

.grader {
  width: 100%;
  height: 100%;
  background: black;
  position: absolute;
  top: 0;
  right: 0;

  background: rgb(0, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%,
    rgba(0, 0, 0, 1) 100%
  );
}

.cat:hover img {
  scale: 1.2;
  transition: all 0.5s ease;
}

.cat .grader:hover .cat > img {
  scale: 1.2;
  transition: all 1s ease;
}

.cat h3 {
  font-size: 1.2rem;
}

.cat h3::after {
  content: "→";
  display: inline-block;
  margin-left: 4px; /* Adjust the spacing as needed */
  font-size: 21px; /* Adjust the size as needed */
  color: #fff; /* Change the color as needed */
}

/* Swiper categories */
.cat-swiper-slide {
  width: 350px;
  height: 350px;
}

.cat-swiper-container {
  width: 100%;
}

.cat-swiper-slide {
  background-position: center;
  background-size: cover;
  width: 350px;
  height: 350px;
  border-top-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  overflow: hidden;
}

.info h5 {
  margin: 0;
  padding-top: 15px;
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, 0.685);
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.swiper-pagination-bullet-active {
  background-color: #000;
}

/* Featured prodcuts */
.product {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-image {
  position: relative;
  overflow: hidden;
  border: 1px solid #f2f2f2;
  height: auto;
}

.product-image:hover {
  box-shadow: 0, 0, 0, 0.5;
}

.product-image img {
  display: block;
  width: 100%;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.main-image {
  z-index: 1;
}

.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(1.5);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 0;
}

.product:hover .main-image {
  opacity: 0;
}

.product:hover .hover-image {
  opacity: 1;
  transform: scale(1);
}

.product h4 {
  font-size: var(--fs-sm);
  margin-top: 1rem;
  min-height: 2.3rem;
  line-height: 1.3rem;
}

.product h5 {
  font-size: 14px;
  margin-top: 10px;
}

/* Hot Section */

.image-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  background-color: #fff;
}

.zoom-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.hot {
  background-color: var(--grayish);
}

.hot ul {
  flex-direction: column;
}

.hot li {
  flex-grow: 0;
  flex-shrink: 1;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 10px;
}

.hot li::before {
  content: "-";
  display: inline-block;
  margin-right: 4px;
}

/* Blog Section */
.blog-slider {
  width: 100%;
  height: 500px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
  transition: grid-template-columns 800ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.blog-slide {
  padding: 0 0.5rem;
  overflow: hidden;
  height: 100%;
  position: relative;
  cursor: pointer;
  display: grid;
}

.blog-slide:hover {
  opacity: 0.75;
}

.blog-slide.active {
  opacity: 1;
}

.blog-slide img {
  border-radius: 2rem;
  object-fit: cover;
  width: 100%;
  height: 100%;
  grid-area: 1/1;
}

.blog-slide .blog-slide-btn {
  position: absolute;
  grid-area: 1.1;
  place-self: end;
  right: 2rem;
  bottom: 2rem;
  transform: scale(0);
  opacity: 0;
  transition: 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-property: transform, opacity;
}

.blog-slide .blog-slide-title {
  position: absolute;
  grid-area: 1.1;
  place-self: end;
  left: 2rem;
  top: 2rem;
  transform: scale(0);
  opacity: 0;
  transition: 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-property: transform, opacity;
  font-size: 1.5rem;
  background: #fff;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.blog-slide.active .blog-slide-btn {
  transform: scale(1);
  opacity: 1;
  transition-delay: 300ms;
}

.blog-slide.active .blog-slide-title {
  transform: scale(1);
  opacity: 1;
  transition-delay: 300ms;
}

/* Contact-form */
.form-control {
  border-radius: 0;
}

.form-control:focus {
  border-color: var(--grayish);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.65);
}

/* Footer */
footer {
  background-color: #131415;
  color: #fff;
}
.footer-logo {
  width: 170px;
}

.newsletter-btn {
  padding: 5px 10px;
  flex-shrink: 0;
}

.policy-links li a::after {
  content: "|";
  margin-left: 0.9rem;
}

.policy-links li:last-child a:after {
  content: "";
}

footer .policy-links li a {
  font-size: 0.75rem !important;
}

.bottom-footer i {
  font-size: 1.3rem;
}

.bottom-footer .bi-facebook {
  color: #1877f2;
}

.bottom-footer .bi-instagram {
  color: #cd486b;
}

.bottom-footer .bi-youtube {
  color: #ff0000;
  font-size: 1.5rem;
}

footer a:hover {
  opacity: 0.8;
}

.post .card {
  border: 1px solid #f2f2f2;
}

.post-categories a {
  color: #fff;
}

/* WooCommerce Styling */
.woocommerce-pagination {
  margin-bottom: 3rem;
}
.mini-loader {
  border: 3px solid #d1d1d1;
  border-top: 3px solid #000;
  border-radius: 50%;
  width: 20px;
  height: 21px;
  animation: spin 0.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.product-image img {
  width: 100% !important; /* Make the image flexible to the container */
  height: auto !important; /* Maintain aspect ratio */
  max-width: 100% !important; /* Prevent the image from exceeding container width */
  object-fit: cover !important; /* Ensure the image fills the container appropriately */
}

.woocommerce-products-header {
  background-size: cover;
  background-attachment: fixed;
  padding-block: 6rem;
}

.onsale {
  position: absolute;
  z-index: 99;
  color: #fff;
  background: #000;
  padding: 2px 4px;
  right: -10px;
  top: -10px;
  font-size: 10px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.65);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.woocommerce-ordering {
  margin-block: 20px;
}

.woocommerce-ordering select {
  border: none;
  border-bottom: 1px solid #c5c5c5;
  padding-block: 4px;
  outline: none;
  cursor: pointer;
}

.woocommerce-ordering select option:hover {
  background-color: #000;
}

.add_to_cart_button,
.added_to_cart,
.product_type_grouped {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0;
}

.added_to_cart {
  margin-right: 5px;
  margin-left: auto;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-numbers .current {
  font-size: 1rem;
}

.product-categories li {
  border-bottom: 1px solid #c5c5c5;
}

.product-categories li:last-child {
  border-bottom: none;
}

.product-categories li a {
  padding-block: 0.8rem;
  display: block;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.product-categories li a:hover {
  transform: translateX(10px);
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
}

/* Custom styling for WooCommerce Bootstrap Tabs */
.woocommerce-product-rating {
  padding-bottom: 1rem;
  color: #777;
}

.entry-summary .price {
  font-size: 1rem;
}

.quantity.input-group {
  width: 130px;
  background: none;
}

.quantity .qty {
  border: none;
  outline: none;
  box-shadow: none;
  font-size: 0.9rem;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.quantity.input-group {
  display: flex;
  align-items: center;
}

.quantity .btn {
  width: 30px;
  height: 30px;
  padding: 0;
  text-align: center;
  font-size: 1.25rem;
  border: none;
  border-radius: 50% !important;
  margin-inline: 5px !important;
  font-weight: bold;
}

.quantity .quantity-increase:hover {
  background-color: green;
}

.quantity .quantity-decrease:hover {
  background-color: red;
}

.quantity .form-control {
  width: 30px;
  padding: 0;
  border: 1px solid #d9d9d9;
  margin-inline: 10px;
  margin-right: 0;
}

.custom-add-to-cart-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-tabs {
  margin-top: 30px;
}

.product-tabs .nav-tabs {
  border-bottom: 1px solid #ddd;
}

.product-tabs .nav-link {
  border: 1px solid transparent;
  border-radius: 0;
  color: #333;
}

.product-tabs .nav-link.active {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.product-tabs .tab-content {
  margin-top: 20px;
}

.wc-tabs-wrapper {
  margin-block: 2rem;
}

.wc-tabs-wrapper .nav-tabs .nav-link {
  color: #000;
}

.wc-tabs-wrapper .nav-tabs .active {
  font-weight: bold;
}

.tab-pane {
  padding-block: 2rem;
}

.tab-pane p {
  font-size: 1rem;
  line-height: 2rem;
  max-width: 100ch;
}

.commentlist .review {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.comment_container img {
  width: 60px;
  height: 60px;
  margin-bottom: 5px;
}

.related-products h1 {
  margin-bottom: 2rem;
}

/* single product gallery */
.woocommerce-product-gallery--with-images {
  position: relative;
}

.woocommerce-product-gallery__trigger {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 99;
}

.woocommerce-product-gallery--with-images .flex-viewport {
  width: 100% !important;
  height: auto !important;
}

.flex-control-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 0;
  margin-top: 1rem;
}

.flex-control-thumbs li {
  height: 70px !important;
  width: 70% !important;
}

.flex-control-thumbs li img {
  height: auto !important;
  width: 100% !important;
}

.pswp--open {
  z-index: 99999999;
}

/* Single product gallery */

.si-cont {
  width: 100%;
}

.slider .swiper-container {
  width: 100%;
  height: 100%;
}
.slider__flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.slider__col {
  display: flex;
  flex-direction: column;
  width: 150px;
}
.slider__prev,
.slider__next {
  cursor: pointer;
  text-align: center;
  font-size: 24px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.slider__prev:focus,
.slider__next:focus {
  outline: none;
}
.slider__thumbs {
  height: calc(400px - 96px);
  overflow: hidden;
}
.slider__thumbs .slider__image {
  transition: 0.25s;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.5;
  padding: 0;
}
.slider__thumbs .slider__image:hover {
  opacity: 1;
}
.slider__thumbs .swiper-slide-thumb-active .slider__image {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 1;
  padding: 0;
}
.slider__images {
  height: 400px;
  overflow: hidden;
  position: relative;
}
.slider__images .slider__image img {
  transition: 3s;
  object-fit: contain;
}
.slider__images .slider__image:hover img {
  transform: scale(1.1);
}
.slider__image {
  width: 100%;
  height: 100%;
  /*border: 1px solid #e7e7e7;*/
  overflow: hidden;
  box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.3);
  /* padding: 1rem; */
}
.slider__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .slider__flex {
    flex-direction: column;
  }
  .slider__col {
    flex-direction: row;
    align-items: center;
    margin-right: 0;
    margin-top: 24px;
    width: 100%;
  }
  .slider__images {
    width: 100%;
    overflow: hidden;
  }
  .slider__thumbs {
    height: 100px;
    width: calc(100% - 96px);
    margin: 0 16px;
    overflow: hidden;
  }
  .slider__prev,
  .slider__next {
    height: auto;
    width: 32px;
  }
}

/* Woocommerce messages */
.woocommerce-message {
  border-top-color: #000;
  position: absolute;
  width: 83%;
  z-index: 9999999999;
  top: 2rem;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 1rem;
  margin: auto;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}

.woocommerce-message a {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: underline;
}

.woocommerce-message::before {
  color: #000;
}

.woocommerce-remove-coupon {
  color: red;
}

/* Cart Page */

.cart-page-items-head > *,
.cart-page-items-content > * {
  flex: 1;
}

.cart-page-items-head {
  color: var(--bluish);
  font-size: 0.8rem;
}

.cart-page-items-content .img-container a {
  display: inline-block;
  width: 100px;
  height: 100px;
  border: 1px solid #d9d9d9;
  padding: 5px;
}

.cart-page-items-content .img-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.flex-grow-3 {
  flex-grow: 3;
}

.cpic-info h5 {
  font-size: 1rem;
}

.remove {
  color: red;
}

.cart-page-items-content .quantity {
  margin: 0 !important;
}

.cart-page-summary h5 {
  font-size: 1rem;
  margin-bottom: 0;
}

.shipping-calculator-button {
  color: #0d6efd;
}

#cart-list {
  scrollbar-width: thin; /* For Firefox */
}

#cart-list::-webkit-scrollbar {
  width: 3px; /* For Chrome, Safari, and Edge */
}

.cart-page-summary-section {
  position: sticky;
  z-index: 9999;
  top: 1rem;
  width: 100%;
}

/* Empty cart */
.empty-cart-page {
  background: #f9f9f9;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.empty-cart-page .card {
  border-radius: 15px;
  overflow: hidden;
}

/* Checkout Pyament */
.woocommerce-checkout #payment {
  background: #000000 !important;
  border-radius: 0 !important;
  color: #fff;
  margin-bottom: 3rem;
}

.woocommerce-checkout #payment a {
  color: #0d6efd;
}

.woocommerce-checkout #payment div.payment_box {
  background-color: #2a2d34 !important;
  color: #fff !important;
}

.woocommerce-checkout #payment div.payment_box::before {
  border: 1em solid #2a2d34 !important;
  border-right-color: transparent !important;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
}

.woocommerce-customer-details--phone {
  margin-top: 1rem;
  margin-bottom: 0.4rem;
}

/* Search */
.srch-section {
  position: fixed;
  z-index: 99999999;
  width: 100%;
  background: var(--grayish);
  display: none;
  top: 0;
  left: 0;
}

.srch-box {
  border: 1px solid #ddd;
  border-radius: 5rem;
  overflow: hidden;
  display: flex;
  width: 100%;
}

.srch-box input {
  width: 100%;
  border: none;
  outline: none;
  padding-inline: 1rem;
}

.srch-box button {
  background-color: #000;
  color: #fff;
  border: none;
  padding-block: 0.5rem;
  padding-inline: 1rem;
}

.srch-prod .img-container {
  width: 80px;
  height: 80px;
  padding: 5px;
  border: 1px solid #ddd;
}

.srch-prod .img-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.srch-prod:hover .img-container {
  border-color: #bbb;
}

.srch-prod:hover h5 {
  text-decoration: underline;
}

/* My Account */
.my-account {
  padding: 40px;
}

.sidebar {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sidebar-title {
  color: #000;
  margin-bottom: 15px;
  font-size: 1.5em;
}

.content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.content-title {
  color: #000;
  margin-bottom: 20px;
  font-size: 1.8em;
}

.woocommerce-MyAccount-content {
  margin-top: 20px;
}

.text-custom-green {
  color: #49d45a;
}

.border-custom-green {
  border-color: #49d45a;
}

.text-custom-purple {
  color: #aa6eff;
}

.border-custom-purple {
  border-color: #aa6eff;
}

.woocommerce-error {
  position: fixed;
  width: 100%;
  height: auto;
  z-index: 999999999999;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  border: none !important;
  outline: none !important;
}

.woocommerce-error {
  opacity: 1;
  transition: opacity 1s ease-in-out;
  animation: stay 2s forwards;
}

@keyframes stay {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Coupon toggle */
.woocommerce-form-coupon-toggle {
  margin-top: 20px;
}

.woocommerce-form-coupon {
  width: 94%;
  margin: auto !important;
  margin-bottom: 20px !important;
}

.woocommerce-info {
  border-top-color: #000000 !important;
}

.woocommerce-info::before {
  color: #000000 !important;
}

/* footer policy links */

.woocommerce-privacy-policy-link {
  color: #fff !important;
  font-weight: bold !important;
}

/* Reviews */

.commentlist {
  padding-left: 0;
}

.comment-reply-title {
  font-size: 2rem;
}

.star-rating .bi {
  font-size: 16px; /* Adjust size as needed */
  margin-right: 5px;
  color: #ffd700;
}

/* Add a review Form */
.rating-stars {
  direction: rtl; /* Reverse the order of the stars */
  display: flex;
  justify-content: end;
  gap: 3px;
}

.rating-stars input[type="radio"] {
  display: none; /* Hide the radio buttons */
}

.rating-stars label {
  font-size: 2em;
  line-height: 2rem;
  color: #ccc; /* Unselected star color */
  cursor: pointer;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input[type="radio"]:checked ~ label {
  color: #f5b301; /* Color for selected stars */
}

.woocommerce-error {
  flex-direction: column;
}

.form-group {
  margin-bottom: 1.2rem;
}

.woocommerce-product-attributes tr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.woocommerce-product-attributes p {
  margin-bottom: 0;
}

.out-of-stock {
  color: red;
  font-weight: bold;
}

.in-stock {
  color: green;
}

.product_meta {
  margin-top: 2rem;
}

.product_meta .posted_in {
  margin-right: 1rem;
}

.product_meta .posted_in,
.product_meta .tagged_as {
  font-weight: bold;
}

.product_meta .posted_in a,
.product_meta .tagged_as a {
  font-weight: normal;
  color: #777777;
}

.html-content li {
  margin-block: 1rem;
}

.product_meta .sku_wrapper {
  display: none;
}

/* 	after live start */
.detailmodule_html img,
.detail-content img {
  object-fit: contain;
  display: inline-block;
  margin-bottom: 1rem;
  height: auto;
}

.post-thumbnail {
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer .bi-tiktok {
  color: #dbdbdb;
}

/* blog */
.post .entry-content p {
  margin-inline: auto;
  text-align: center;
}

.checkout_coupon {
  display: none; /* Initially hide the coupon form */
}

/* for input-text */
/* Input text and textarea default styles */
.input-text {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Placeholder styling */
.input-text::placeholder {
  color: #6c757d;
  opacity: 1;
}

/* Disabled and readonly states */
.input-text:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

/* Focused state for input text and textarea */
.input-text:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* 	after live end */

/* Brandsgalleria CSS */
.up {
  background-color: #000;
  color: #fff;
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 6px 12px;
  display: block;
}

.up .bi-chevron-up {
  color: #fff;
}
.top-cat {
  background-color: #000;
  color: #fff;
}

.top-cat a {
  color: #fff;
  text-transform: uppercase;
}

.categorySwiper {
  width: 100%;
}

.categorySwiper .swiper-slide {
  width: auto !important; /* Let content determine width */
  display: flex;
  align-items: center;
}

.main-menu li .bi {
  margin-left: 4px;
}

.main-menu li a {
  color: gray;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.main-menu li a:hover {
  color: #000;
  transition: color 0.3s ease-in-out;
}

.mega-menu {
  background: #fff;
  position: absolute;
  left: 0;
  top: 100%; /* This positions it right below the container */
  width: 100%;
  display: none;
}

.mega-menu .item-title h4 {
  white-space: nowrap;
  margin: 0; /* removes default h4 margins */
  padding: 0; /* removes default h4 padding */
  font-size: 0.9rem; /* adjust as needed */
  letter-spacing: 1px;
}

.mega-link:hover {
  background: #f6f6f6;
}

.mega-menu .item-img {
  width: 60px;
  height: 60px;
  overflow: hidden;
}

.mega-menu .item-img img {
  height: auto;
}

.mega-menu .item-quant {
  color: gray;
}

.nav-actions .bi-house {
  font-size: 1rem;
}

.policy-ul li a {
  color: #fff;
}

/* marquee brands */
.brands-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.brands-marquee:hover .marquee-content {
  animation-play-state: paused;
}

.brand-item {
  display: inline-block;
  margin-right: 40px; /* Adjust spacing between brands */
  padding: 5px 10px;
  transition: all 0.3s ease;
}

.brand-item:hover {
  transform: scale(1.05);
  font-weight: bold;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.nav-actions .bi {
  font-size: 1.35rem !important;
}

/* Burger menu */
.menu-btn {
  position: relative;
  display: none;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.menu-btn-burger {
  width: 40px;
  height: 5px;
  background: #343336;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
  transition: all 0.5s ease-in-out;
}

.menu-btn-burger::before,
.menu-btn-burger::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 5px;
  background: #f11b5d;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
  transition: all 0.5s ease-in-out;
}

.menu-btn-burger::before {
  transform: translateY(-15px);
}

.menu-btn-burger::after {
  transform: translateY(15px);
}

.menu-btn.open .menu-btn-burger {
  transform: translateX(-40px);
  background: transparent;
  box-shadow: none;
}

.menu-btn.open .menu-btn-burger::before {
  transform: rotate(45deg) translate(25px, -25px);
}

.menu-btn.open .menu-btn-burger::after {
  transform: rotate(-45deg) translate(25px, 25px);
}

.menu-container {
  padding: 1.5rem 0;
}

/*About us*/
.about-page .card-body i {
  font-size: 2rem !important;
}
.about-page .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #d81b60;
}

.about-page .fabric-card {
  transition: transform 0.3s;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-page .fabric-card:hover {
  transform: translateY(-10px);
}

.about-page .craftsmanship-img {
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.about-page .highlight-text {
  color: #d81b60;
  font-weight: 600;
}

.about-page .signature {
  font-family: "Brush Script MT", cursive;
  font-size: 1.8rem;
  color: #d81b60;
}

/* Paginatin */
/* 
.pagination .page-numbers {
  text-decoration: none;
  color: #868686;
  padding: 5px 10px;
  border: 1px solid #868686;
}

.pagination .page-numbers:hover {
  border-color: #000;
}

.pagination .current {
  color: #000;
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #000;
} */

/* Responsive Devices */
/* Extra small devices (portrait phones, less than 576px) */
/* No media query since this is the default behavior for Bootstrap */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
  .example-class {
    font-size: 1.2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
  .nav-bar {
    height: 85px;
  }
  .row {
    --bs-gutter-x: 1rem; /* Default is 1.5rem (24px), reduce to 1rem (16px) */
    --bs-gutter-y: 1rem; /* Affects vertical spacing if using row-cols */
  }
  .product-image {
    height: auto;
  }
  .desktop-icons {
    display: none !important;
  }
  .menu-btn {
    display: flex;
  }
  .menu-container {
    padding: 0;
    position: relative;
    z-index: 9999999999999;
  }
  .main-menu {
    flex-direction: column;
    justify-content: start !important;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    z-index: 999999999;
    padding: 1rem 2rem;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease-in-out;
    width: auto;
  }
  .open-main-menu {
    right: 0%;
	margin-top: 0;
  }

  .mega-menu {
    position: absolute;
    left: 0;
    width: 100%;
    max-height: 70vh; /* Adjust based on your needs */
    overflow-y: auto; /* Enables vertical scrolling */
    overflow-x: hidden; /* Prevents horizontal scrolling */
    z-index: 1000;
    background: white;
  }

  .example-class {
    font-size: 1.4rem;
  }

  /* 	after live start */
  .custom-logo {
    width: 100px;
  }
  .cat-swiper-slide {
    width: 250px;
    height: 250px;
  }

  .about-banner {
    background-size: 100% !important;
    height: 30vh !important;
  }

  .policy-links {
    justify-content: center;
    margin-bottom: 2rem;
  }
  .policy-links li {
    margin-bottom: 0 !important;
  }

  .policy-links li a::after {
    margin-left: 0.6rem;
  }

  .policy-links li:nth-child(2) a::after {
    content: "";
  }

  .contact h2 {
    font-size: 1.5rem;
  }

  .tooltip {
    display: none;
  }
  /* 	after live end */

  .container {
    --bs-gutter-x: 2rem;
  }

  .slide-badge {
    left: 80%;
    top: -25%;
  }

  .my-account {
    padding: 20px;
  }
  .sidebar {
    margin-bottom: 20px;
  }

  .burger {
    display: block;
  }

  .mob-hid {
    display: none;
  }

  header .container nav {
    display: none !important;
  }

  .hot-title {
    margin-top: 2rem;
  }

  .home-featured .featured {
    margin-bottom: 3rem;
  }

  .main-contact-form {
    margin-bottom: 2rem;
  }

  .summary {
    margin-top: 2rem;
  }

  .card .card-body {
    padding: 1rem !important;
  }

  .footer-logo {
    margin: auto;
  }

  .footer-logo-text {
    text-align: center;
  }

  .menu-policies {
    justify-content: center;
  }

  .cart-page-items-content {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--grayish);
  }

  .cart-page-items-content:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .woocommerce-Price-amount {
    margin-top: 1rem;
  }

  .product_meta .posted_in {
    display: block;
    margin-bottom: 10px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
  .example-class {
    font-size: 1.6rem;
  }

  .shop-cat::after {
    content: "\25BC"; /* Unicode for down chevron */
    font-size: 1rem; /* Adjust size if necessary */
    margin-left: 5px; /* Optional: add space between text and icon */
  }

  .slider__prev,
  .slider__next {
    transform: rotate(-90deg);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) {
  .example-class {
    font-size: 1.8rem;
  }
}

/* XXL devices (larger desktops, 1400px and up) */
@media (max-width: 1400px) {
  .example-class {
    font-size: 2rem;
  }
}
