@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500&display=swap");

:root {
  --header-bg: var(--primary_bg);
  --header-fg: var(--page_fg);
  --header-bg-new: #fff;
  --light-theme-color: #C70464; /*#fcc9e2;*/
  --dark-theme-color: #C70464;
  --light-gray: #f5f7fa;
  --header-bg-new-dark: #222a37;
  --new-btn-bg: var(--light-theme-color);
  --slight-gray: #777777;
  --new-btn-bg-hover: #000;
  --icon-font: normal 500 1.3em/1 "remixicon";
  --text-gray: #f5f5f5;
  --gray-bg: #C70464;
  --light-theme: #fcc9e2;
  --filter: brightness(0) saturate(100%) invert(69%) sepia(14%) saturate(1006%);
  --link: #C70464;
  --breadcrumb: #555555;
  --text-black: #000;
  --border: var(--light-theme-color);
  --gray-border: rgb(213, 213, 213);
  --secondary-font: "Poppins", sans-serif;
  --red: rgb(240, 84, 84);
  --orange: rgb(251, 167, 7);
  --section-bg: #f5f7fa;
  /* hue-rotate(8deg) brightness(97%) contrast(103%); */
  /* https://angel-rs.github.io/css-color-filter-generator/ */
  --white: #fff;
}

.fade-in {
  opacity: 0;
  transform: translateX(0);
}

.nav-link {
  color: #000;
}

.fade-left {
  transform: translateX(-100px);
}

.fade-right {
  transform: translateX(100px);
}

.fade-up {
  transform: translateY(100px);
}

.fade-down {
  transform: translateY(-100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

input,
select,
textarea,
button,
body {
  background-color: transparent;
  border: none;
  border-radius: 0;
  font-family: "Poppins", sans-serif;
  font-size: inherit;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

/* .caslon {
  font-family: "Libre Caslon Text", sans-serif;
} */
.font-1 {
  font-family: "Poppins", sans-serif;
}

.big-shoulder-font {
     font-family: "Big Shoulders", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-2 {
  font-family: var(--secondary-font);
}

.section-bg {
  background-color: var(--section-bg);
}

.light-theme-color {
  color: #C70464; /*var(--light-theme-color);*/
}

.icon-color {
  color: #575757;
}

.bg-light-theme {
  background-color: var(--light-theme);
}

.light-theme-bg {
  background: var(--light-theme-color);
}

.dark-theme-color {
  color: var(--dark-theme-color);
}

.dark-theme-bg {
  background: var(--dark-theme-color);
}

input:-webkit-autofill {
  transition: background-color ease-in-out;
  transition-delay: 5000s;
}

/* #region init */

body {
  font-family: "Poppins", sans-serif;
  color: var(--page_fg);
  font-size: 16px;
  background-color: var(--page_bg);
}

.container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  /* padding-inline: 0.7rem; */
}

.r-icon {
  display: block;
}

.collapse-body {
  transition: ease 0.25s height;
  overflow: hidden;
}

.collapse-content {
  overflow: hidden;
  padding: 5px 20px;
}

.swiper-lazy-preloader,
img.lazy {
  max-width: 100%;
  max-height: 100%;
  background-image: url(../images/icons/Spinner-5.gif);
  background-size: 120px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.swiper-lazy-preloader {
  animation: none;
  width: 120px;
  height: 120px;
  margin-top: 0;
  margin-left: 0;
  transform: translate(-50%, -50%);
  border-radius: 0;
  border: 0;
}

img.lazy-loading {
  background-image: none;
  object-fit: contain !important;
}

.swiper-lazy:not(.swiper-lazy-loaded) {
  opacity: 0 !important;
}

.swiper-lazy.swiper-lazy-loaded {
  opacity: 1;
  transition: ease 0.25s opacity;
}

@media (max-width: 768px) {
  .container {
    padding-inline: 1rem;
  }
  .img-fluid1{
    height: -webkit-fill-available !important;
    object-fit: contain;
  }
}

/* #endregion */

/* #region header */

.nav-header {
  border-bottom: 1px solid rgb(54 54 54 / 14%);
  /* background-color: #fff; */
}

.nav-header-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
  align-items: center;
}

.nav-header-links,
.nav-social-links {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.nav-header-links li:not(:last-child)::after {
  content: "|";
  display: inline-block;
  margin-left: 1rem;
}

.nav-social-links a,
.nav-header-links a {
  color: var(--page_fg);
  text-decoration: none;
  font-weight: 600;
  opacity: 0.7;
  font-size: 0.8rem;
  transition: ease 0.25s;
}

.nav-social-links a:hover,
.nav-header-links a:hover {
  color: var(--accent_bg);
}

.nav-social-links a {
  display: block;
  width: 1.2em;
  height: 1.2em;
  text-align: center;
  font-size: 1.1rem;
  opacity: 1;
}

.nav-social-links i {
  display: block;
  line-height: 1.4em;
}

.header-top,
.header-main {
  font-size: 12px;
}

.header-top {
  /* padding-top: 40px; */
  background-color: var(--header-bg);
  /* border-bottom: 1px solid var(--accent_bg); */
  color: var(--header-fg);
  position: relative;
  z-index: 99;
  box-shadow: rgb(110 107 107 / 14%) 0px 3px 4px;
  /* margin-bottom: 10px; */
   /*box-shadow: rgba(0, 0, 0, 0.04) 0px -1px 2px, rgba(0, 0, 0, 0.04) 0px 1px 2px, rgba(0, 0, 0, 0.04) 0px 3px 4px; */
  /* background-color: #fff; */
  /* border-bottom: 1px solid rgb(54 54 54 / 14%); */
}

.location-dropdown {
  color: inherit;
  width: 310px;
  min-width: 250px;
  /* margin-left: 25px; */
  border-radius: 4px;
  /* border: 1px solid var(--accent_bg); */
  display: flex;
  overflow: hidden;
  font-size: inherit;
  background-color: transparent;
  text-align: left;
  align-items: center;
  cursor: pointer;
}

.location-dropdown .current-location {
  width: 100%;
  padding: 7px 10px;
  height: auto;
  border: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  transition: ease 0.25s color;
}

.location-dropdown .location-marker {
  margin-left: 12px;
  display: flex;
  align-items: center;
  height: 100%;
}

.top-nav-links {
  display: flex;
  margin-left: auto;
}

.top-nav-link {
  padding: 6px 15px;
  text-decoration: none;
  color: inherit;
  margin-right: 10px;
  border: 1px solid var(--primary_bg);
  border-radius: 4px;
  text-transform: uppercase;
  transition: ease 0.25s;
  transition-property: background-color, color;
}

.top-nav-link:hover {
  background-color: var(--accent_bg);
}

.header-top-links {
  display: flex;
}

.header-icon-group {
  display: flex;
  margin-left: 15px;
  align-items: center;
}

.icon-label {
  margin-left: 10px;
  line-height: 1.5;
}

.header-icon-group a {
  color: inherit;
  text-decoration: none;
}

.header-icon {
  margin-left: 14px;
  font-size: 1.3em;
}

.header-main {
  /* background-color: #ffffff; */
  /* color: #fff; */
  padding: 10px 0;
  position: sticky;
  top: 0;
  /* box-shadow: 0 0 6px rgb(0 0 0 / 20%); */
  /* margin-bottom: 10px; */
  /* margin-top: 10px; */
  display: none;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top .header-row {
  min-height: 100px;
}

.header-brand {
  font-size: 36px;
  font-weight: 500;
  /* margin-right: auto; */
  /* line-height: 1.2; */
  /* margin-bottom: 0.2em; */
  /* padding: 5px; */
  height: 3.5rem;
  max-width: 200px;
}

.header-brand img {
  display: block;
  /* width: 300px; */
  /* width: 100%; */
  height: 100%;
  max-height: 100%;
  /* margin-bottom: -50px; */
  object-fit: contain;
  object-position: center;
}

.header-nav-categories {
  text-transform: uppercase;
  /* font-weight: bold; */
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  margin-left: 2rem;
  margin-right: auto;
}

.header-nav-categories-list {
  display: flex;
  list-style: none;
  gap: 20px;
}

.header-nav-categories-list>.menu-active>.header-category-link {
  color: var(--accent_bg);
  font-weight: 600;
}

.header-icons {
  display: flex;
}

.top-header a {
  color: #000;
}

.header-icons .header-social-icon {
  width: 40px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0.5rem;
  border-radius: 50%;
  background-color: #fff;
  margin: 0.5rem 0;
  margin-left: 0.5rem;
}

.header-icons .header-social-icon a {
  display: block;
  padding: 0;
}

.header-icons .header-social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;

}

.header-input-group {
  display: flex;
}

.header-search-input {
  border: 1px solid var(--accent_bg);
  padding: 7px 15px;
  color: #fff;
  width: 450px;
  font-size: 12px;
}

.header-search-input::placeholder {
  color: #eaeaea;
}

.header-search-btn {
  padding: 7px 10px;
  background-color: var(--accent_bg);
  color: #fff;
  line-height: 1;
}

.category-search-container {
  /* margin-left: 20px; */
  /* margin-right: 10px; */
  display: flex;
  /* border: 1px solid #444; */
  border-radius: 25px;
  /* overflow: hidden; */
  height: auto;
  position: relative;
  color: var(--header-bg);
  font-weight: 500;
  width: 100%;
  max-width: 400px;
}

.category-search-dropdown {
  flex: 0 1 auto;
  /* font-size: 14px; */
  border-radius: inherit;
}

.search-form {
  border-radius: inherit;
  /* overflow: hidden; */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 100%;
  display: flex;
  background-color: #fff;
}

.dropdown-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  z-index: 1;
}

.category-search-container .search-dropdown {
  padding: 5px 30px 5px 15px;
  border-radius: inherit;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  /* border: 1px solid #fff; */
  background-color: #444;
  color: var(--accent_fg);
  font-size: inherit;
  appearance: none;
  flex-basis: 145px;
  display: block;
  line-height: 1.8;
  cursor: pointer;
  position: relative;
  height: 100%;
}

.dropdown-content {
  opacity: 0;
  position: absolute;
  top: 100%;
  width: 250px;
  left: 0;
  padding: 15px;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  transform: translateY(-20px);
  transition: ease-in-out 0.25s;
  pointer-events: none;
  z-index: 2;
}

.category-search-container .search-dropdown::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  right: 10px;
  top: 50%;
  margin-top: -1px;
  width: 0;
  height: 0;
  border-top: 5px solid currentColor;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.dropdown-wrapper.active .dropdown-overlay {
  display: block;
}

.dropdown-wrapper.active .dropdown-content {
  transform: translateY(1px);
  opacity: 1;
  pointer-events: all;
}

.dropdown-content-list {
  list-style: none;
  max-height: 80vh;
  overflow: auto;
  font-size: 14px;
}

.dropdown-link {
  display: block;
  text-decoration: none;
  color: #222;
  background-color: #fff;
  font-weight: 500;
  font-size: inherit;
  padding: 10px 15px;
  border-radius: 4px;
  transition: ease-in-out 0.25s;
  transition-property: all;
  transition-property: color, background-color;
}

.dropdown-link .dropdown-subtext {
  display: block;
  font-size: 0.8em;
  color: #666;
}

.dropdown-link:hover {
  background-color: var(--primary_bg);
  color: var(--primary_fg);
}

.category-search-container .search-field {
  padding: 5px 15px;
  width: 100%;
  min-width: 150px;
  border: 1px solid #444;
  font-size: inherit;
  flex: auto;
  color: #000;
  border-right: 0;
  height: 100%;
  border-radius: 0;
}

.category-search-container .search-field::placeholder {
  color: inherit;
}

.category-search-icon {
  padding: 7px 20px;
  /* margin: 2px; */
  border-radius: 0 25px 25px 0;
  color: inherit;
  background-color: #444;
  /* width: 29px; */
  /* height: 29px; */
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: ease 0.3s;
}

.category-search-icon:hover {
  background-color: var(--header-fg);
  color: var(--header-bg);
}

.header-row .header-action-group {
  /* margin-right: 20px; */
  /* margin-left: auto; */
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  /* width: 400px; */
}

.header-action {
  /* margin-left: 25px; */
  display: flex;
  align-items: center;
  padding: 5px 7px;
  /* border: 1px solid var(--accent_bg); */
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  height: auto;
  white-space: nowrap;
  /* font-size: 15px; */
  transition: ease 0.25s;
  position: relative;
  flex-wrap: wrap;
}

.header-action i {
  /* width: 55px; */
  /* height: 55px; */
  /* display: grid; */
  /* place-items: center; */
  /* border-radius: 50px; */
  /* border: 2px solid; */
  font-size: 1.7em;
  /* color: var(--accent_bg); */
  transition: inherit;
}

.header-action:hover i {
  /* background-color: var(--header-fg); */
  color: var(--new-btn-bg);
}

.header-action-text {
  margin-left: 0.7rem;
  line-height: 1.5;
}

.header-action-title {
  font-weight: 600;
  font-size: 1.4em;
}

.header-action-label {
  /* margin-left: 2px; */
  white-space: nowrap;
  line-height: normal;
  display: block;
  font-size: 0.8rem;
}

.header-action.search-action {
  width: 200px;
}

.header-search-results-scroll {
  position: absolute;
  top: 100%;
  z-index: 1;
  right: 0;
  width: 20rem;
  /* height: 60vh; */
  white-space: normal;
  /* padding: 0.5rem; */
  /* padding-right: 0; */
  box-shadow: 0 0 0.5rem rgb(0 0 0 / 30%);
  overflow: auto;
  background-color: var(--page_bg);
}

.header-search-results-scroll::-webkit-scrollbar {
  width: 5px;
}

.header-search-results-scroll::-webkit-scrollbar-track {
  background-color: transparent;
}

.header-search-results-scroll::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 5px;
}

.header-search-results-scroll:hover::-webkit-scrollbar-thumb {
  background-color: #00000022;
}

.header-search-results-container {
  padding: 0.5rem;
  display: grid;
  gap: 0.5rem;
  height: 35rem;
  max-height: calc(100vh - 5rem);
}

.header-action .cart-qty {
  position: absolute;
      top: 36%;
    right: 6px;
  transform: translate(50%, -50%);
  background-color: var(--dark-theme-color);
  border: 2px solid #fff;
  color: #fff;
  display: block;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  text-align: center;
  line-height: 1em;
  font-size: 11px;
}

.header-action-toggle {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  flex: auto;
}

.header-toggle-check {
  display: none;
}

.header-toggle-content {
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: ease 0.25s;
}

.header-toggle-check:checked~.header-toggle-content {
  width: 100%;
  opacity: 1;
}

.header-toggle-label {
  cursor: pointer;
}

.header-action-search {
  padding: 0.5rem 1rem;
  border: 1px solid;
  border-color: var(--header-fg);
  color: var(--page_fg);
  border-radius: 5rem;
  margin-right: 0.5rem;
  width: 95%;
}

.header-action-search::-webkit-search-cancel-button {
  /* color: inherit; */
  /* position: absolute; */
  /* right: 0.6lh; */
  padding: 1px;
  /* -webkit-appearance: none; */
  /* height: 2.5rem; */
  /* width: 2.5rem; */
  /* border-radius: 10px; */
  /* background: red; */
  margin: 0;
  cursor: pointer;
}

.header-nav {
  padding: 10px 0;
  background-color: var(--accent_bg);
  color: #fff;
}

.header-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav-link {
  display: block;
  margin: 0 15px;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.header-categories {
  width: 100%;
  /* padding-left: 135px; */
}

.header-category-link {
  /* width: 100px; */
  /* text-align: center; */
  /* height: auto; */
  text-decoration: none;
  color: #000;
  color: inherit;
  /* padding-block: 1rem; */
  display: block;
  height: 87px;
  line-height: 87px;
}

.header-dropdown {
  position: relative;
}

.header-dropdown>.header-category-link::after {
  content: "\EA4E";
  font-family: remixicon;
  display: inline-block;
  line-height: 1;
  font-size: 1.3em;
  font-weight: 100;
}

.header-dropdown>.header-category-link {
  display: flex;
  align-items: center;
}

.header-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 25rem;
  max-width: 90vw;
  /* display: none; */
  transition: ease 0.25s;
  z-index: 1;
  transform: translateY(-1rem);
  opacity: 0;
  pointer-events: none;
  text-transform: initial;
  background-color: var(--header-fg);
}

.header-dropdown:hover .header-dropdown-content {
  /* display: block; */
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.header-dropdown-row {
  display: flex;
  gap: 1rem;
  padding: 2rem;
  background-color: var(--page_bg);
  color: var(--page_fg);
  /* border-radius: 0.2rem; */
}

.header-dropdown-column {
  flex: 1;
}

.header-dropdown-title {
  font-weight: 600;
  font-size: 1.2rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.header-dropdown-list {
  list-style: none;
}

.header-dropdown-list li {
  margin-bottom: 0.4rem;
}

.header-dropdown-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: normal;
}

.header-dropdown-link:hover {
  /* color: var(--primary_fg); */
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header-category-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  /* border-radius: 101px; */
  /* box-shadow: 0px 4px 4px rgb(0 0 0 / 25%); */
  width: 80px;
  margin-left: auto;
  margin-right: auto;
  /* border: 1px solid #444; */
  transition: ease 0.25;
}

.header-category-link:hover .header-category-img {
  border-color: var(--accent_bg);
}

.header-category-img::before {
  content: "";
  display: block;
  padding-top: 100%;
  /* background-color: #eaeaea; */
}

.header-category-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* border-radius: 50%; */
  padding: 0.3rem;
  object-fit: cover;
  transition: ease 0.4s transform;
  transform-origin: center;
}

.header-category-name {
  font-weight: 600;
  font-size: 12px;
  transition: ease 0.4s;
}

.header-category-link:hover img {
  transform: scale(1.1);
}

.header-category-link:hover .header-category-name {
  color: var(--primary_fg);
}

@media (max-width: 768px) {

  .nav-header-row,
  .header-nav-categories {
    display: none;
  }

  .header-row {
    padding: 10px;
    flex-wrap: wrap;
    gap: 0.2rem;
  }

  .header-top .header-row {
    gap: 5px;
    padding-block: 0;
    height: 4rem;
    flex-wrap: nowrap;
    display: grid;
    grid-template-columns: 2rem 1fr 2rem;
    justify-items: center;
  }
  
  .footer-copy-row {
          flex-direction: column;
  }
    .header-group {
        box-shadow: 0 0 6px rgb(0 0 0 / 20%);
    }
  .header-group .header-action-text {
    display: none;
  }
  
  .resp-footer-space {
      line-height:30px !important;
  }

  .header-category-link {
    /* width: 60px; */
  }

  .header-category-img {
    width: 60px;
    margin-bottom: 10px;
  }

  .header-category-name {
    font-size: 11px;
    line-height: normal;
    display: block;
  }
}

/* #endregion */

/* #region banners */

.banner-slide {
  position: relative;
}

.banner-slide::before {
  content: "";
  padding-top: 30%;
  display: block;
}

.banner-img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.banner-title {
  color: #fff;
  font-size: 40px;
}

.banner-title-small {
  font-weight: 400;
}

.banner-title-large {
  font-weight: 600;
  text-transform: uppercase;
}

.banners-section {
  padding: 0;
}

.banners-section .swiper-pagination-bullet {
  background: #fff;
  width: 0.85714rem;
  height: 0.85714rem;
  display: inline-block;
  border-radius: 100%;
  box-shadow: 0 0 0 0.35714rem hsl(0deg 0% 100% / 0%);
  opacity: 1;
  transition: all 0.3s ease;
}

.banners-section .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 11px 15px 0;
}

.banners-section .swiper-pagination-bullet.swiper-pagination-bullet-active,
.banners-section .swiper-pagination-bullet:hover {
  background: #fff;
  box-shadow: 0 0 0 0.35714rem hsl(0deg 0% 100% / 50%);
}

.banner-swiper-nav {
  width: auto;
  background-color: #fff;
  opacity: 1;
  color: #000;
  padding: 27px 22px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  --swiper-navigation-size: 24px;
  margin-top: 0;
  transform: translateY(-50%);
  transition: ease 0.25s;
}

.banner-swiper-nav:hover {
  opacity: 1;
  color: #000;
}

.banner-swiper-nav.swiper-button-prev {
  left: unset;
  right: 100px;
  border-radius: 50%;
  cursor: pointer;
  bottom: 0;
  top: unset;
}

.banner-swiper-nav.swiper-button-next {
  right: 30px;
  border-radius: 50%;
  cursor: pointer;
  bottom: 0;
  top: unset;
}

@media (max-width: 768px) {
  .banners-section .banner-swiper-nav {
    /* display: none; */
  }
}

/* #endregion */

/* #region adv */

.adv-section {
  /* display: none; */
  background-color: #fbfbfb;
  /* margin-bottom: 3rem; */
}

.adv-row {
  display: flex;
  padding: 20px 0;
  /* border-bottom: 1px solid #ddd; */
  justify-content: center;
}

.adv-column {
  flex: 1 1 25%;
  padding: 10px;
  min-width: 150px;
  text-align: center;
}

.adv-icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  background: var(--gray-bg);
  color: var(--white);
  font-size: 30px;
  border-radius: 50%;
  text-align: center;
}

.adv-icon img {
  filter: var(--filter);
}

.adv-title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #444;
  margin-bottom: 5px;
}

.adv-content {
  font-size: 12px;
}

/* #endregion */

/* #region about */

.home-about {
  --about-bg-offset: 5rem;
}

.home-about-container {
  position: relative;
  padding-block: 4rem;
  background-color: var(--accent_bg);
  color: var(--accent_fg);
}

.home-about-row {
  display: flex;
  align-items: center;
}

.home-about-content,
.home-about-img {
  flex: 1 1 100%;
}

.home-about-content {
  padding-inline: 3rem;
}

.home-about-content p {
  margin-top: 0.7rem;
  line-height: 1.5;
}

.home-about-img img,
.home-about-img-resp img {
  display: block;
  width: 100%;
}

.home-about-alt {
  background-color: #000;
  padding-top: 40%;
  position: relative;
  overflow: hidden;
}

.home-about-alt>.container {
  /* max-width: 100%; */
  /* width: 100%; */
  top: 0;
  /* position: relative; */
}

.home-about-alt-container {
  position: absolute;
  z-index: 2;
  display: grid;
  align-items: center;
  justify-content: start;
  top: 0;
  height: 100%;
  justify-items: start;
  align-content: center;
}

.home-about-img-alt {
  width: 100%;
  opacity: 0.8;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}

.home-about-alt-title {
  font-size: 3rem;
  font-weight: 800;
  /* position: absolute; */
  /* top: 50%; */
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
  /* width: 60%; */
  color: #fff;
  /* text-align: center; */
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin-bottom: 2rem;
  z-index: 1;
}

.home-about-alt-link {
  /* position: absolute; */
  /* bottom: 3rem; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--new-btn-bg);
  color: var(--accent_fg);
  border: 2px solid var(--new-btn-bg);
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: ease 0.25s;
  text-transform: uppercase;
}

.home-about-alt-link:hover {
  background-color: var(--accent_fg);
  color: var(--new-btn-bg);
}

@media (min-width: 768px) {
  .home-about>.container {
    padding-right: var(--about-bg-offset);
  }

  .home-about-row {
    margin-right: calc(var(--about-bg-offset) * -1);
  }

  .home-about-img-resp {
    display: none;
  }
}

@media (max-width: 768px) {
  .home-about>.container {
    padding: 0;
  }

  .home-about-row {
    flex-wrap: wrap;
  }

  .home-about-img {
    display: none;
  }

  .home-about-content {
    padding-inline: 2rem;
  }

  .home-about-content p {
    font-size: 0.8rem;
  }

  .home-about-alt {
    padding-top: 50%;
  }

  .home-about-alt-container {
    padding: 1rem;
  }

  .home-about-alt-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    max-width: 75%;
  }

  .home-about-alt-link {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
}

/* #endregion about */

/* #region features */

.home-features {
  padding-block: 3rem;
}

.home-features-row {
  display: flex;
  gap: 1rem 0rem;
  text-align: center;
}

.home-features-col {
  flex: 1 1 40%;
}

.home-features-icon {
  width: 4.5rem;
  margin-inline: auto;
}

.home-features-icon img {
  width: 100%;
}

.home-features-title {
  font-size: 1rem;
  margin-top: 0.5rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .home-features-row {
    flex-wrap: wrap;
  }

  .home-features-title {
    font-size: 0.8rem;
  }

  .home-features-icon {
    width: 4rem;
  }
}

/* #endregion features */

/* #region info */

.home-info {
  padding-block: 3rem;
  /* background-color: var(--accent_bg); */
  /* color: var(--accent_fg); */
}

.home-info-header {
  margin-bottom: 2rem;
}

.home-info-header .category-section-head {
  text-align: center;
  font-size: 2rem;
}

.home-info-rows {
  display: grid;
  gap: 2rem;
}

.home-info-row {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.home-info-media,
.home-info-content {
  flex: 1 1 100%;
}

.home-info-media {
  /* padding: 3rem; */
  display: grid;
  place-content: center;
}

.home-info-img {
  --info-img-offset: 2rem;
  width: 25rem;
  height: 25rem;
  position: relative;
  transform: translateX(var(--info-img-offset));
}

.home-info-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border-radius: 50%;
}

.home-info-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--accent_bg);
  transform: translateX(calc(var(--info-img-offset) * -2));
  border-radius: 50%;
}

.home-info-content .category-section-head {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 1;
}

@media (min-width: 768px) {
  .home-info-row:nth-child(odd) {
    flex-direction: row;
  }

  .home-info-row:nth-child(even) {
    flex-direction: row-reverse;
  }
}

@media (max-width: 768px) {
  .home-info {
    padding-inline: 1rem;
    text-align: center;
  }

  .home-info-row {
    flex-direction: column;
  }

  .home-info-img {
    --info-img-offset: 1rem;
    width: 10rem;
    height: 10rem;
  }

  .home-info-content .category-section-head {
    text-align: inherit;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
  }

  .home-info-text {
    font-size: 0.9rem;
  }

  .home-info-header .category-section-head {
    font-size: 1.7rem;
  }
}

/* #endregion info */

/* #region collage */

.collage-section {
  padding: 30px 0;
  margin: 10px 0;
  /* background-color: #fff; */
  /* box-shadow: 0 0 6px rgb(0 0 0 / 20%); */
}

.collage-wrapper {
  display: grid;
  grid-template-columns: 1.6fr repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  grid-template-areas:
    "a b c"
    "a d e";
}

.collage-item-a {
  grid-area: a;
}

.collage-item-b {
  grid-area: b;
}

.collage-item-c {
  grid-area: c;
}

.collage-item-d {
  grid-area: d;
}

.collage-item-e {
  grid-area: e;
}

.collage-img {
  height: 100%;
  /* border-radius: 6px; */
  overflow: hidden;
  /* cursor: pointer; */
  display: block;
  position: relative;
}

.collage-img::before {
  content: "";
  padding-top: 63%;
  display: block;
}

.collage-item-a .collage-img::before {
  padding-top: 82%;
}

.collage-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: ease 0.4s;
  position: absolute;
  top: 0;
  left: 0;
}

.collage-img img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .collage-section {
    padding: 10px;
    padding-top: 0;
  }

  .collage-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "a a"
      "b c"
      "d e";
    gap: 0.5rem;
  }
}

/* #endregion collage */

/* #region category-tabs */

.home-products-tabs {
  padding-top: 3rem;
  position: relative;
  z-index: 1;
}

.home-products-tabs .category-section-head {
  text-align: center;
}

.home-category-tabs .swiper-wrapper {
  justify-content: center;
}

.home-category-tab-head {
  /* flex: auto; */
  width: auto;
  text-underline-offset: 6px;
  padding-block: 5px;
  text-decoration-color: var(--primary_fg);
  color: #686868;
  cursor: pointer;
  font-size: 15px;
}

.swiper-slide-thumb-active.home-category-tab-head {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
}

.product-category.swiper-slide-active .product-slide {
  pointer-events: all;
}

.home-category-tab-nav .banner-swiper-nav.swiper-button-prev {
  /* left: 1rem; */
}

.home-category-tab-nav .banner-swiper-nav.swiper-button-next {
  /* right: 1rem; */
}

.product-categories {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {}

/* #endregion category-tabs */

/* #region category */

.product-category {
  padding: 30px 0;
  margin: 10px 0;
  /* background-color: #fff; */
  /* box-shadow: 0 0 6px rgb(0 0 0 / 20%); */
}

.category-section-header {
  padding-bottom: 0.5rem;
  /* border-bottom: 2px solid var(--new-btn-bg); */
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.category-section-head {
  font-weight: 400;
  font-size: 25px;
  text-align: left;
  margin-bottom: 1rem;
  /* color: var(--page_fg); */
}

.category-section-header .category-section-head {
  margin-bottom: 0;
}

.category-product-nav {
  position: relative;
  top: 0;
  right: 0;
  /* width: 5rem; */
  /* height: 100%; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding-bottom: inherit; */
  z-index: 0;
}

.category-product-nav .category-product-nav-btn {
  position: static;
  margin: 0;
  background-color: #f1f1f1;
  width: 2.3rem;
  height: 2.3rem;
  /* border-radius: 5rem; */
  display: grid;
  place-content: center;
}

.category-product-nav .category-product-nav-btn::after {
  font-family: "remixicon" !important;
  font-style: normal;
  font-size: 1.8rem;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  color: var(--new-btn-bg);
}

.category-product-nav .swiper-button-prev::after {
  content: "\2039";
  position: relative;
  top: -10%;
  color: var(--new-btn-bg-hover);
}

.category-product-nav .swiper-button-next::after {
  content: "\203A";
  position: relative;
  top: -10%;
  color: var(--new-btn-bg-hover);
}

.product-slide {
  padding-left: 0;
  padding-right: 0;
  width: 285px;
  position: relative;
  overflow: hidden;
  /* border: 1px solid #ddd; */
  border-radius: 4px;
}

.product-slide-thumbnail {
  position: relative;
  /* margin: 0px 20px; */
}

.product-slide-thumbnail::before {
  /* padding-top: 100%; */
  display: block;
  content: "";
}

.product-slide-thumbnail-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
}

.product-slide-thumbnail-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: ease 0.3s opacity;
  padding: 1rem;
}

.product-slide-thumbnail-img img:first-child {
  opacity: 1;
}

.product-slide-thumbnail-img img:last-child {
  opacity: 0;
}

.product-slide-tags {
  position: absolute;
  top: 40px;
  left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-tag {
  margin-bottom: 10px;
  line-height: 1.2;
  font-size: 12px;
  color: #999;
  background-color: currentColor;
  padding: 4px 15px;
  position: relative;
}

.product-tag span {
  color: #fff;
}

.product-tag.tag-yellow {
  color: #ffd000;
}

.product-tag.tag-green {
  color: #429500;
}

.product-tag.tag-red {
  color: #f5271c;
}

.product-tag::before,
.product-tag::after {
  content: "";
  position: absolute;
  left: 100%;
  width: 12px;
  height: 12px;
  color: inherit;
}

.product-tag::before {
  top: 0;
  background: linear-gradient(135deg,
      currentColor 0,
      currentColor 50%,
      transparent 50%);
}

.product-tag::after {
  bottom: 0;
  background: linear-gradient(45deg,
      currentColor 0,
      currentColor 50%,
      transparent 50%);
}

.product-slide-btns {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 30px;
  opacity: 0;
  transition: ease 0.3s opacity;
  display: none;
}

.product-hover-btn {
  display: block;
  width: 100%;
  padding: 15px;
  text-decoration: none;
  background-color: #ddd;
  color: #000;
  font-weight: 600;
  border-radius: 100px;
  min-width: 150px;
  margin-top: 15px;
  text-align: center;
  text-transform: uppercase;
  transition: ease 0.3s box-shadow;
}

.product-hover-primary {
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
}

.product-hover-secondary {
  background-color: var(--primary_bg);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(49, 78, 146, 0.5);
}

.product-slide-options {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
  opacity: 0;
  transition: ease 0.3s opacity;
}

.product-slide-option {
  color: #222;
  font-size: 26px;
  text-decoration: none;
  display: inline-block;
  margin-left: 15px;
  transition: ease 0.3s color;
}

.product-slide-details {
  /* text-align: center; */
  padding: 15px 0;
  color: #000;
}

.product-slide-details .product-text-details {
  /* padding-left: 10px; */
  /* padding-right: 10px; */
}

.product-slide-details .product-brand {
  font-size: 14px;
  color: var(--accent_bg);
  font-weight: 500;
  display: none;
}

.product-slide-details .product-title {
  font-size: 15px;
  margin-bottom: 0.5em;
  font-weight: 700;
  transition: ease 0.3s color;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
  /* line clamp 2 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
}

.product-slide-details .product-title a {
  color: inherit;
  text-decoration: none;
}

.product-slide-details .product-size {
  font-size: 12px;
}

.select-product-size {
  position: relative;
  font-size: 12px;
  font-weight: 500;
}

.select-product-size .select-size-trigger {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  cursor: pointer;
}

.select-product-size .product-selected {
  display: block;
  width: 100%;
  padding: 5px 8px;
  border: 1px solid #ddd;
  position: relative;
  z-index: 2;
  background-color: #fff;
}

.select-product-size .select-arrow {
  position: absolute;
  right: 0;
  width: 30px;
  border-left: 1px solid #ddd;
  height: 100%;
  top: 0;
}

.select-product-size .select-arrow::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid #aaa;
  border-top: 0;
  border-left: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.select-product-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
  z-index: 1;
  border: 1px solid #ddd;
  border-top: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.select-product-options .product-select-option {
  display: block;
  padding: 5px 8px;
  background-color: #fff;
  cursor: pointer;
  transition: ease 0.2s background-color;
}

.select-product-options .product-select-option:hover {
  background-color: #f3f3f3;
}

.select-product-size.open .select-product-options {
  display: block;
}

.product-variant-count {
  /* text-align: center; */
  margin-bottom: 0.5em;
  font-size: 0.8em;
  color: var(--primary_fg);
}

.product-detail-group {
  background-color: #eee;
  padding: 10px;
  margin-top: 10px;
}

.product-price {
  /* font-weight: 700; */
  font-size: 13px;
  /* margin-top: 1em; */
}

.price-highlight-green {
  color: #429500;
  display: block;
  font-size: 13px;
}

.product-price .strike {
  text-decoration: line-through;
}

.product-price .em {
  font-weight: 600;
  display: block;
}

.product-del-icon {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
}

.product-delivery {
  font-size: 13px;
  display: flex;
  margin-top: 10px;
}

.product-delivery span {
  display: inline-block;
}

.product-qty {
  display: inline-flex;
  border: 1px solid #ccc;
  overflow: hidden;
  font-size: 14px;
  border-radius: 4px;
  display: none;
}

.product-qty-prepend {
  background-color: #eee;
  padding: 3px 5px;
  line-height: 1.3;
  font-weight: 500;
}

.product-qty-input {
  width: 100%;
  flex: 1 1 0;
  padding: 3px 5px;
  text-align: center;
  background-color: #fff;
  font-size: 13px;
  font-weight: 500;
  height: 40px;
}

.product-details-group {
  margin-top: 1em;
  display: flex;
}

.cart-qty-change {
  display: none;
  background-color: #eee;
  padding: 5px;
  font-weight: 600;
  font-size: 18px;
  line-height: 0.5;
  width: 30px;
  text-align: center;
  cursor: pointer;
}

.product-qty.in-cart {
  display: flex;
}

.product-qty.in-cart .product-qty-prepend {
  display: none;
}

.product-qty.in-cart .cart-qty-change {
  display: block;
}

.product-add-to-cart {
  padding: 6px 7px;
  line-height: 1.4;
  background-color: #009a24;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
  /* margin-left: 10px; */
  width: 100%;
  cursor: pointer;
  box-shadow: inset 0 0 0 2px #009a24;
  transition: ease 0.2s;
  transition-property: color, background-color;
}

.product-add-to-cart:hover {
  background-color: #fff;
  color: #009a24;
}

.product-qty.in-cart+.product-add-to-cart {
  display: none;
}

.product-no-stock {
  position: relative;
  margin-top: 5px;
}

.product-no-stock-text {
  color: red;
  font-size: 15px;
  font-weight: 600;
}

.product-no-stock-btn {
  margin-top: 5px;
  padding: 10px 15px;
  text-align: center;
  justify-content: center;
  background-color: var(--primary_bg);
  color: var(--primary_fg);
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: ease 0.2s;
  transition-property: color, background-color;
  box-shadow: inset 0 0 0 2px var(--primary_fg);
  cursor: pointer;
}

.product-no-stock-btn:hover {
  background-color: var(--primary_fg);
  color: var(--primary_bg);
}

.product-title:hover {
  color: var(--primary_fg);
}

.product-hover-primary:hover {
  box-shadow: 0 0 0 1px #000;
}

.product-hover-secondary:hover {
  box-shadow: 0 0 0 4px var(--primary_bg);
}

.product-slide:hover .product-slide-btns {
  opacity: 1;
}

.product-slide:hover .product-slide-thumbnail-img img:first-child {
  opacity: 0;
}

.product-slide:hover .product-slide-thumbnail-img img:last-child {
  opacity: 1;
}

.product-slide:hover .product-slide-options {
  opacity: 1;
}

.product-slide-option:hover {
  color: var(--primary_bg);
}

.has-offer-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  transform: translateX(60%);
  padding: 5px;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0);
  transition: ease;
  transition-duration: 0.2s, 0.2s, 0.35s;
  transition-property: color, background-color, transform;
  color: var(--primary_bg);
}

.small-swiper-nav {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary_fg);
  color: var(--accent_bg);
  border-radius: 50%;
  border: 2px solid var(--primary_fg);
  box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.2);
}

.small-swiper-nav:hover {
  background-color: var(--accent_bg);
  color: var(--accent_fg);
}

.small-swiper-nav::after {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary_bg);
}

.view-more-slide {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
}

.view-more-slide .view-more-link {
  display: block;
  width: 100%;
  padding: 7px 15px;
  text-align: center;
  text-decoration: none;
  background-color: var(--new-btn-bg);
  color: var(--accent_fg);
  border: 2px solid var(--new-btn-bg);
  box-shadow: none;
}

.view-more-slide .view-more-link:hover {
  background-color: var(--primary_bg);
  color: var(--text-black);
}

.home-product-slide {
  height: auto;
  border: 0;
}

.product-min-details {
  /* padding: 10px; */
  padding-top: 0;
}

.select-product-size,
.product-detail-group {
  display: none;
}

.product-price {
  display: flex;
  gap: 1em;
  /* justify-content: center; */
  font-size: 0.9rem;
}

.product-title {
  /* text-align: center; */
  white-space: normal;
  /* height: 3em; */
}

.product-rating {
  /* text-align: center; */
}

.review-stars {
  margin-top: 10px;
  margin-bottom: 5px;
  color: #ffc107;
}

.review-stars i {
  vertical-align: text-bottom;
  font-size: 1.1em;
}

.review-count {
  font-size: 0.85em;
}

.product-category-banner {
  /* padding: 30px 0; */
  /* background-color: #fff; */
  /* box-shadow: 0 0 6px rgb(0 0 0 / 20%); */
}

.category-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.category-offer-banner-grid {
    display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.category-banner-img {
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.category-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: ease 0.5s;
  transform-origin: center;
}
.first-offer-img img{
      min-height: 310px;
  max-height: 310px;
}

.category-banner-img:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .product-category .container {
    padding-inline: 0;
  }

  .product-category-banner {
    padding: 10px;
  }

  .category-banner-grid {
    gap: 0.5rem;
    grid-template-columns: 1fr;
  }

  .product-slide-thumbnail-img img {
    padding: 1rem;
  }

  .review-stars {
    font-size: 0.8rem;
  }
}

/* #endregion */

/* #region brand swiper */

.brands-slider-container {
  padding: 30px 0;
  background-color: #fff;
  margin: 10px 0;
  box-shadow: 0 0 6px rgb(0 0 0 / 20%);
}

.brand-slide {
  width: 173px;
  height: auto;
}

.brand-slide img {
  display: block;
  width: 100%;
  object-fit: contain;
}

/* #endregion */

/* #region home testimonial */

.testimonial-box {
  width: 100%;
  background-color: #fff;
  border: 1px solid #dadada;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  overflow: hidden;
}

.testimonial-box .quote {
  font-size: 3rem;
  color: var(--gray-bg);
}

.testimonial-box article {
  width: 100%;
  margin: auto;
  height: 100%;
  padding: 1.5rem;
}

.testimonial-box .testimonial-writer {
  border-radius: 15px;
  margin-top: auto;
}

.testimonial-writer .name {
  color: var(--gray-bg);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4rem;
  font-family: var(--font-family-poppins);
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  margin-bottom: 0.2rem;
}

.testimonial-writer .designation {
  font-size: 1rem;
  line-height: 1.3rem;
  font-weight: 400;
  color: #666;
  font-family: var(--font-family-poppins);
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.3rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #333;
}

.testimonial-title {
  font-weight: 600;
  color: #444;
  font-size: 18px;
  margin-bottom: 0.3em;
  margin-top: auto;
}

.testimonial-sub {
  font-weight: 500;
  color: #666;
}

.testimonial-images {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em;
  margin-bottom: 0.5em;
  position: relative;
  width: 100%;
}

.testimonial-img {
  height: 60px;
  padding: 3px;
  width: auto;
  display: block;
  /* margin-right: 5px; */
  border: 1px solid #dadada;
  cursor: pointer;
}

.testimonial-video-player {
  position: relative;
  margin-bottom: 1rem;
}

.testimonial-video-player::before {
  content: "";
  padding-top: 56.5%;
  display: block;
}

.testimonial-video-player iframe {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.image-popup .popup-container {
  /* max-width: none; */
  width: auto;
  height: auto;
  min-height: fit-content;
}

.testimonial-preview-img {
  display: block;
  max-width: 80vw;
  max-height: 80vh;
  height: auto;
  width: auto;
  object-fit: contain;
}

.section-heading.no-anime::before,
  .section-heading.no-anime::after{
  content: unset;
}

/* #endregion */

/* #region news */

.home-news {
  padding: 30px 0;
  /* background-color: #fff; */
  margin: 10px 0;
  /* box-shadow: 0 0 6px rgb(0 0 0 / 20%); */
}

.news-slide {
  border-radius: 6px;
  overflow: hidden;
}

.news-image {
  position: relative;
}

.news-image::before {
  content: "";
  padding-top: 56.5%;
  display: block;
}

.news-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content {
  padding: 1.5rem 1rem;
  text-align: center;
  background-color: #fff;
}

.news-date {
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.news-date i {
  font-size: 1.1rem;
  color: var(--primary_fg);
}

.news-date-text {
  font-size: 0.9rem;
}

.news-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.news-title a {
  color: inherit;
  text-decoration: none;
  transition: ease 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.news-title a:hover {
  color: var(--primary_fg);
}

.news-text {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.news-read-more {
  margin-top: 1rem;
}

.news-read-more a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border: 1px solid #dadada;
  transition: ease 0.3s;
  font-weight: 500;
  font-size: 0.9rem;
  background-color: var(--primary_bg);
  color: var(--primary_fg);
}

.news-read-more a:hover {
  background-color: var(--accent_bg);
  border-color: var(--accent_bg);
  color: var(--accent_fg);
}

@media (max-width: 768px) {
  .home-news .category-section-head {
    text-align: center;
  }

  .news-date-text {
    font-size: 0.8rem;
  }

  .news-title {
    font-size: 1rem;
  }

  .news-text {
    font-size: 0.8rem;
  }

  .news-read-more a {
    font-size: 0.8rem;
  }
}

/* #endregion news */

/* #region subscribe*/

.subscribe-banner {
  padding: 30px 0;
  background-color: var(--primary_bg);
  color: #fff;
}

.subscribe-row {
  display: flex;
  align-items: center;
}

.subscribe-title {
  font-weight: 500;
  font-size: 20px;
  margin-right: 1.5em;
}

.subscribe-form {
  display: contents;
}

.subscribe-input-container {
  border: 1px solid var(--accent_bg);
  border-radius: 4px;
  display: flex;
  align-items: center;
  margin-right: 1.5em;
}

.subscribe-input-icon {
  padding: 7px 10px;
}

.subscribe-input {
  color: inherit;
  padding: 7px 15px;
  padding-left: 0;
}

.subscribe-input::placeholder {
  color: inherit;
}

.footer-subscribe-btn {
  padding: 7px 15px;
  border: 1px solid var(--accent_bg);
  border-radius: 4px;
  color: inherit;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  background-color: var(--accent_bg);
  transition: ease 0.3s;
  transition-property: color, background-color;
}

.subscribe-social {
  list-style: none;
  margin-left: auto;
  display: flex;
}

.subscribe-social-link {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  /* border: 1px solid var(--accent_bg); */
  border-radius: 100px;
  margin-left: 1em;
  background-color: #fff;
  transition: ease 0.3s;
  transition-property: color, background-color;
}

.subscribe-icon {
  line-height: 1;
  display: block;
}

.subscribe-social-link:hover {
  background-color: var(--primary_bg);
  /* color: var(--primary_bg); */
}

.footer-subscribe-btn:hover {
  background-color: #fff;
  color: var(--primary_bg);
}

/* #endregion */

/* #region footer nav*/

.footer-nav {
  padding: 30px 0;
}

.footer-nav-row {
  display: flex;
  align-items: flex-start;
}

.footer-nav-row+.footer-nav-row {
  margin-top: 1.5em;
}

.footer-nav-title {
  flex: 0 0 16%;
  color: var(--primary_bg);
  font-weight: 600;
}

.footer-nav-desc ul {
  list-style: none;
}

.footer-nav-desc li {
  font-size: 13px;
  display: inline;
  color: #222;
}

.footer-nav-desc li:not(:last-child)::after {
  content: ", ";
}

.footer-nav-desc .img-list li::after {
  content: none;
}

.footer-nav-desc a {
  color: inherit;
  text-decoration: none;
}

.payment {
  background-image: url(../images/icons/footersprite.webp);
  display: inline-block;
  vertical-align: middle;
}

.payment-card_mastercard {
  background-position: -7px -21px;
  width: 61px;
  height: 41px;
}

.payment-card_visa {
  background-position: -70px -21px;
  width: 64px;
  height: 27px;
}

.payment-rupay {
  background-position: -134px -21px;
  width: 106px;
  height: 35px;
}

.payment-paytm_logo {
  background-position: -239px -23px;
  width: 113px;
  height: 43px;
}

.payment-mobikwik_Logo {
  background-position: -354px -21px;
  width: 117px;
  height: 43px;
}

.payment-amex {
  background-position: 66px -24px;
  width: 80px;
  height: 45px;
}

/* #endregion */

/* #region footer links */

.footer-links {
  padding: 40px 0;
  background-color: var(--footer_bg);
  color: #fff;
  font-weight: 500;
}

.footer-links-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-links-col {
  flex: 0 1 auto;
  font-size: 13px;
  padding-right: 0;
  line-height: 1.6;
}

.footer-brand img {
  display: block;
}

.footer-links-title {
  font-weight: 600;
  font-size: 16px !important;
  margin-bottom: 0.5em;
}

.footer-links-list {
  list-style: none;
  padding-left: 0;
    color: #fff;
}

.footer-links-list a {
  color: #000;
  text-decoration: none;
  /* white-space: nowrap; */
}

.footer-links-list a.footer-page-link {
  position: relative;
  transition: ease-in-out 0.3s transform;
  display: inline-block;
}

.footer-links-list a.footer-page-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background-color: currentColor;
  transform: translateY(-50%);
  opacity: 0;
  transition: ease-in-out 0.3s;
  transition-property: opacity, transform;
}

.footer-links-list a.footer-page-link:focus,
.footer-links-list a.footer-page-link:hover {
  transform: translateX(10px);
}

.footer-links-list a.footer-page-link:focus::before,
.footer-links-list a.footer-page-link:hover::before {
  transform: translate(-20px, -50%);
  opacity: 1;
}

.footer-links-col p {
  max-width: 220px;
}

.footer-links-col .connect-social {
  list-style: none;
  display: flex;
  /* padding: 10px 0; */
}

.footer-links-col .connect-social .subscribe-social-link {
  margin-left: 0;
  margin-right: 1em;
  width: 28px;
  height: 28px;
}

.connect-social img {
  display: block;
  width: 100%;
  padding: 6px;
}

.footer-links-col .connect-social li:last-child .subscribe-social-link {
  margin-right: 0;
}

.footer-links-col .connect-social .subscribe-icon {
  line-height: 1.1;
  font-size: 16px;
}

.footer-address {
  /*color: var(--page_fg);*/
}

.footer-apps-list {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.footer-apps-list li {
  background-color: #fff;
  color: #444;
  padding: 0.4rem 0.7rem;
  font-size: 1rem;
  border-radius: 15px;
  border: 2px solid #dadada;
}

.footer-app-link {
  display: flex;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  align-items: center;
}

.footer-app-link i {
  color: #aaa;
  font-size: 2rem;
  line-height: 1;
}

.footer-app-info {
  line-height: 1.3;
}

.footer-app-title {
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-app-description {
  font-size: 0.7rem;
  font-weight: 400;
}

/* #endregion */

/* #region copy footer */

.copy-footer {
  padding: 15px 0;
  color: var(--page_fg);
  font-size: 12px;
}

.footer-copy-row {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  border-top: 1px solid var(--gray-border);
  padding-top: 10px;
  color:#575757;
}

.copy-footer .powered-text img {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
}

/* #endregion */

/* #region breadcrumb */

.breadcrumbs-section {
  padding-top: 30px !important;
  padding-bottom: 0px !important;
  margin-top: 10px;
  background-color: #ffffff;
  color: #333;
}

.breadcrumbs {
  list-style: none;
  /* display: flex; */
  /* padding: 7px 15px; */
  /* background-color: #fff; */
  /* box-shadow: -2px 2px 3px rgba(0, 0, 0, 0.05); */
  padding: 0px 0 30px;
  padding-bottom: 5px;
  margin-bottom: 0;
  border-radius: 4px;
  font-size: var(--breadcrumb);
  /* border: 1px solid #dadada; */
}

.breadcrumbs a {
  color: #333;
  text-decoration: none;
  font-size: 12px;
}

.breadcrumbs li {
  display: flex;
  display: inline;
}

.breadcrumbs li+li {
  margin-left: 30px;
  position: relative;
}

.breadcrumbs li+li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-right: 10px;
  width: 8px;
  height: 8px;
  border-right: 1px solid;
  border-top: 1px solid;
  transform: rotate(45deg) translateY(-80%);
      color: #333;
}

.breadcrumbs li+li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  width: 8px;
  height: 8px;
  border-right: 1px solid;
  border-top: 1px solid;
  transform: rotate(45deg) translateY(-80%);
      color: #333;
}

/* #endregion */

/* #region popup */

html.popup-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width);
}

.popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  /* display: none; */
  visibility: hidden;
  z-index: 99999;
  opacity: 0;
  transition: ease-in-out 0.25s opacity;
}

.popup-wrapper.popup-closing,
.popup-wrapper.popup-active {
  /* display: block; */
  visibility: visible;
  opacity: 1;
}

.popup-wrapper .popup-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  transition: ease 0.3s opacity;
  transition-delay: 0.3s;
}

.popup-wrapper.popup-active .popup-overlay {
  opacity: 0.8;
  transition-delay: 0s;
}

.popup-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 550px;
  min-height: 400px;
  max-width: calc(100% - 20px);
  max-height: calc(100% - 40px);
  transform: translate(-50%, -20%);
  padding: 20px;
  background-color: var(--page_bg);
  border-radius: 5px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
  transition: ease 0.25s transform 0.2s, ease 0.3s opacity 0s;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.popup-slide-in {
  opacity: 1;
}

.popup-slide-in .popup-container {
  top: 0;
  right: 0;
  height: 100%;
  max-height: none;
  border-radius: 0;
  left: auto;
  transform: translate(100%, 0);
  padding-top: 15px;
  display: grid;
  grid-template-rows: 2rem 1fr;
  max-width: 100%;
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  max-width: 100%;
  align-items: stretch;
  justify-content: stretch;
}

.popup-slide-in[data-slide-dir="left"] .popup-container {
  left: 0;
  right: auto;
  transform: translateX(-100%);
}

.popup-wrapper.popup-active .popup-container {
  transform: translate(-50%, -50%);
  transition-delay: 0s, 0s;
  opacity: 1;
}

.popup-slide-in.popup-active .popup-container {
  transform: translate(0, 0);
}

.popup-wrapper.popup-closing .popup-overlay {
  opacity: 0;
  transition: ease 0.3s opacity;
}

.popup-wrapper.popup-closing .popup-container {
  opacity: 0;
  transform: translate(-50%, -30%);
  transition: ease 0.25s transform 0s, ease 0.3s opacity 0s;
}

.popup-slide-in.popup-closing .popup-container {
  transform: translate(100%, 0);
}

.popup-slide-in.popup-closing[data-slide-dir="left"] .popup-container {
  transform: translateX(-100%);
}

.popup-container .popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  /* width: 25px; */
  /* height: 25px; */
  /* background-color: #fff; */
  /* border: 1px solid #aaa; */
  border: none;
  color: #000;
  font-size: 46px;
  font-weight: 300;
  border-radius: 50px;
  transform: translate(45%, -45%);
  cursor: pointer;
}

.popup-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: space-evenly; */
  overflow: auto;
  padding: 20px 0;
}

.popup-slide-in .popup-content {
  align-items: stretch;
  justify-content: flex-start;
  padding-bottom: 10px;
  width: 100%;
}

.popup-title {
  font-weight: 600;
  font-size: 18px;
}

.sidebar-container {
  position: absolute;
  left: 0;
  width: 500px;
  height: 100%;
  max-width: 100%;
  padding: 20px 15px;
  background-color: var(--page_bg);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: ease 0.25s transform;
}

.sidebar.popup-active .sidebar-container {
  transform: translateX(0);
  transition-delay: 0s;
}

.sidebar-container,
.sidebar.popup-closing .sidebar-container {
  transform: translateX(-100%);
}

.sidebar-close {
  font-size: 80px;
  font-weight: 200;
  color: #000;
  background-color: transparent;
  border: none;
  line-height: 0.5;
  position: absolute;
  top: 40px;
  right: 30px;
  cursor: pointer;
}

.otp-popup .popup-container {
  height: auto;
}

.menu-sidebar .popup-content {
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
}

.menu-sidebar .sidebar-container {
  padding-top: 1.5rem;
}

.menu-sidebar .sidebar-close {
  top: 2rem;
}

.menu-brand {
  margin-bottom: 1.5rem;
}

.menu-brand img {
  display: block;
  height:30px;
  margin-left:20px;
}

.header-account-nav {
  margin-bottom: 2rem;
      padding: 0 20px;
}

.menu-sidebar .collapsible {
  margin-bottom: 15px;
  width: 100%;
    padding: 0 20px;
}

.menu-sidebar .collapse-header {
  margin-bottom: 10px;
}

.menu-sidebar .collapse-title {
  display: inline-block;
  position: relative;
  padding-right: 30px;
  transition: ease 0.25s color;
  font-size:14px;
  margin-bottom:5px;
}

.menu-sidebar .collapse-title::before

/* , .menu-sidebar .collapse-title::after  */
  {
  content: "";
  width: 0.5em;
  height: 0.5em;
  /* background-color: #000; */
  border: 3px solid var(--gray-border);
  border-top: transparent;
  border-left: transparent;
  position: absolute;
  right: 0.4em;
  top: 50%;
  transition: ease 0.25s transform;
}

.menu-sidebar .collapse-title::before {
  transform: translateY(-80%) rotateZ(45deg);
}

.menu-sidebar .collapse-title::after {
  /* transform: translateY(-50%) rotate(45deg); */
}

.menu-sidebar .collapsible:not(.collapsed) .collapse-title {
  color: var(--new-btn-bg);
}

.menu-sidebar .collapsed .collapse-title::after {
  transform: translateY(-50%) rotate(90deg);
}

.menu-sidebar .collapsed .collapse-title::before {
  transform: translateY(-50%) rotateZ(-45deg);
}

.menu-sidebar .collapse-content {
  padding-left: 20px;
}

.menu-sidebar .sidebar-links {
  list-style-type: none;
  padding-left:0;
}

.menu-sidebar .sidebar-links .nav-active {
  color: var(--primary_bg);
}

.menu-sidebar .sidebar-links a {
  display: inline-block;
  padding: 0 0 3px;
  color: inherit;
  text-decoration: none;
  font-size:12px;
}

.sidebar-nav-link {
  /* color: var(--primary_bg); */
}

.sidebar-nav-link a {
  text-decoration: none;
  color: inherit;
}

.sidebar-brand {
  display: none;
  margin-bottom: 30px;
}

.sidebar-brand img {
  width: 150px;
  height: auto;
}

.menu-sidebar {
  display: none;
}

.account-sidebar .sidebar-container {
  left: auto;
  right: 0;
  padding-bottom: 10px;
}

.account-sidebar .sidebar-container,
.account-sidebar.popup-closing .sidebar-container {
  transform: translateX(100%);
}

.account-sidebar .collapse-nav-btn {
  top: 20px;
  right: 20px;
}

.account-sidebar .popup-content {
  padding-bottom: 0;
  padding-top: 0;
}

.sidebar-navs {
  margin-bottom: 30px;
  display: flex;
}

.sidebar-nav-btn {
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  margin-right: 20px;
  padding: 10px 15px 30px;
  background-color: transparent;
  border: none;
  position: relative;
  outline: none;
  cursor: pointer;
}

.sidebar-nav-btn::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 10px;
  width: calc(100% - 20px);
  height: 2px;
  background-color: currentColor;
  opacity: 0;
  transform: translateY(-10px);
  transition: ease-in-out 0.25s;
  transition-property: opacity, transform;
}

.sidebar-nav-btn.active-nav::after {
  transform: translateY(0);
  opacity: 1;
}

.sidebar-nav-content {
  display: flex;
  overflow: hidden;
  padding: 0 10px;
}

.sidebar-nav-track {
  display: flex;
  flex-wrap: nowrap;
  transition: cubic-bezier(0.7, 0, 0.3, 1) 0.5s transform;
}

.sidebar-nav-track[data-scroll="scroll-1"] {
  transform: translateX(0);
}

.sidebar-nav-track[data-scroll="scroll-2"] {
  transform: translateX(calc(-100% - 20px));
}

.sidebar-nav-track .sidebar-form {
  width: 100%;
  flex: 1 0 100%;
  min-width: 100%;
  max-width: none;
  margin-right: 20px;
  overflow: auto;
}

.sidebar-nav-track .sidebar-form::-webkit-scrollbar {
  width: 5px;
}

.sidebar-nav-track .sidebar-form::-webkit-scrollbar-track {
  background-color: transparent;
}

.sidebar-nav-track .sidebar-form::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 5px;
}

.sidebar-nav-track .sidebar-form:hover::-webkit-scrollbar-thumb {
  background-color: #00000022;
}

/* #endregion */

/* #region menu form */

.ac-form-img img {
  display: block;
  max-width: 80%;
  max-height: 90px;
  margin: auto;
  margin-bottom: 15px;
}

.ac-input-group {
  margin-bottom: 20px;
}

.ac-label {
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  /* padding: 0 15px; */
  margin-bottom: 5px;
  color: #666;
}

.ac-input-group label.error {
  color: red;
  font-size: 14px;
  display: block;
  margin-top: 2px;
}

.ac-label-check {
  margin-bottom: 15px;
  text-transform: none;
}

.ac-label-check input {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.tnc-label {
  display: inline;
  vertical-align: middle;
}

.tnc-label a {
  text-decoration: none;
  color: #1972ab;
}

.ac-input {
  display: block;
  width: 100%;
  padding: 10px 15px;
  background-color:#fee8f9;
  border: 1px solid #ddd;
  outline: none;
  border-radius: 4px;
  transition: ease-in-out 0.25s background-color;
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
}

.ac-password-preview {
  position: relative;
}

.ac-password-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  font-size: 1.3rem;
  color: #333;
  line-height: 1;
}

.ac-password-btn i {
  display: block;
}

.ac-password-hide {
  display: none;
}

.ac-password-show {
  display: block;
}

.ac-password-preview[data-show] .ac-password-hide {
  display: block;
}

.ac-password-preview[data-show] .ac-password-show {
  display: none;
}

.ac-input:focus {
  background-color: rgba(255, 255, 255, 0.7);
}

.ac-btn {
  display: block;
  padding: 12px 15px;
  background-color: #c60364;
  color: #fff;
  border: 2px solid #c60364;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  /* border: none; */
  margin-bottom: 20px;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  transition: ease-in-out 0.25s box-shadow;
}

.ac-btn:hover {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.ac-hr {
  margin: 5px auto 10px;
  width: 50%;
  border: none;
  height: 1px;
  background-color: transparent;
}

.ac-link {
  display: block;
  width: 100%;
  color: #333;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  margin-bottom: 20px;
}

.ac-form-error {
  color: red;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  margin-bottom: 10px;
}

.ac-form-success {
  color: green;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  margin-bottom: 10px;
}

.ac-cancel-link {
  color: red;
  font-weight: 500;
  margin-bottom: 0;
}

.ac-form-row {
  display: flex;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
  align-items: center;
}

.ac-form-col {
  width: 50%;
  padding: 0 10px;
}

.ac-form-row::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 20px;
  left: 50%;
  width: 1px;
  border-right: 1px dashed #ccc;
}

.new-address-popup .popup-container {
  width: 650px;
  height: auto;
  overflow: auto;
}

.new-address-popup .popup-title {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 20px;
}

.new-address-form {
  width: 100%;
  height: 100%;
}

.address-form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.address-form-col {
  width: 50%;
  flex: 0 1 50%;
  min-width: 300px;
  max-width: 100%;
}

.address-form-group {
  padding: 10px 15px;
}

.address-form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  padding-left: 0;
}

.address-form-input {
  display: block;
  width: 100%;
  border: 1px solid #aaa;
  padding: 10px 15px;
  border-radius: 4px;
}

.save-address-btn {
  padding: 10px 30px;
  display: block;
  margin: 15px auto;
  border: 2px solid var(--new-btn-bg);
  background-color: var(--new-btn-bg);
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  box-shadow: -1px 2px 5px rgba(0, 0, 0, 0.2);
  transition: ease-in-out 0.25s;
  transition-property: color, background-color;
}

.save-address-btn:hover {
  background-color: var(--primary_bg);
  color: var(--new-btn-bg);
}

.otp-confirm-content {
  width: 80%;
}

.ac-message-gap {
  margin-bottom: 15px;
}

/* #endregion */

/* #region footer */

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer-social-icon {
  font-size: 22px;
  margin-right: 20px;
  margin-bottom: 15px;
  height: 22px;
}

.footer-social-icon a {
  color: #666;
  text-decoration: none;
}

.footer-social-icon img {
  height: 100%;
  display: block;
}

.location-popup .popup-title {
  font-size: 26px;
  font-weight: 400;
}

.location-popup .popup-container {
  height: 300px;
}

.form-dropdown {
  position: relative;
  width: 100%;
}

.popup-location-dropdown {
  width: 350px;
}

.location-popup-group {
  display: flex;
  align-items: center;
}

.location-popup-input {
  position: relative;
  margin-right: 5px;
}

.form-select {
  padding: 0.5rem 1.3rem;
  font-size: 1rem;
  border: none;
  background-color: #fff;
  border: 1px solid #dadada;
  display: block;
  width: 100%;
  border-radius: 4px;
  transition: ease-in-out 0.3s box-shadow;
  padding-right: 2rem;
}

.form-select:focus {
  outline: none;
  box-shadow: 0 0 0.6rem rgba(246, 130, 31, 0.4),
    inset 0 0 0 0.1rem var(--theme-color);
}

.form-dropdown .suggestion-list {
  position: fixed;
  left: 100px;
  right: 100px;
  background-color: #fff;
  border: 1px solid #bbb;
  border-radius: 0.3rem;
  margin-top: 0.5rem;
  display: none;
  /* width: calc(100% - 1rem); */
  /* transform: translateX(0.5rem); */
  max-height: 15rem;
  overflow: auto;
  z-index: 2;
}

.form-dropdown.open .suggestion-list {
  display: block;
}

.form-dropdown .input-icon {
  position: absolute;
  top: 1.3rem;
  right: 1.2rem;
  left: auto;
  font-size: 1.7rem;
  color: #000;
  transform: translate(50%, -50%);
  cursor: pointer;
}

.form-dropdown .clear-icon {
  font-size: 1.1rem;
  display: none;
}

.form-dropdown.open .clear-icon {
  display: block;
}

.form-dropdown.open .drop-icon {
  display: none;
}

.form-label {
  display: block;
  margin-bottom: 0.4em;
}

.label-required {
  color: red;
}

.form-control {
  display: block;
  width: 100%;
  border: 1px solid #dadada;
  border-radius: 4px;
  padding: 6px 10px;
  resize: vertical;
}

.form-group+.form-group {
  margin-top: 15px;
}

/* .form-dropdown.selected .form-select {
    box-shadow: 0 0 0.3rem #58b158;
} */

.search-suggestions {
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 0.3rem;
}

.search-suggestions li {
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: ease 0.25s background-color;
}

.search-suggestions li:hover {
  background-color: #ebf1ff;
}

.search-suggestions li+li {
  border-top: 1px solid #bbb;
}

.delivery-select-locations {
  display: flex;
  width: 100%;
  position: relative;
}

.delivery-location-option {
  position: relative;
  flex: 1 1 100%;
  margin-left: 5px;
  margin-right: 5px;
}

.hidden-check,
.delivery-location-option .location-check {
  visibility: hidden;
  position: absolute;
}

.delivery-select-locations .error {
  width: 100%;
}

.delivery-location-option span {
  display: block;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  background-color: #eaeaea;
  border-radius: 6px;
  border: 2px solid #ddd;
  transition: ease 0.25s;
  transition-property: background-color, border-color;
}

.delivery-location-option .location-check:checked+span {
  border-color: var(--primary_bg);
  background-color: #f3f3f3;
}

.location-continue-btn {
  padding: 7px 15px;
  border-radius: 5px;
  background-color: var(--primary_bg);
  border: 2px solid var(--primary_bg);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: ease 0.25s;
  transition-property: color, border-color, background-color;
}

.location-continue-btn:hover {
  background-color: #fff;
  color: var(--primary_bg);
}

.has-offer-tag {
  transform: translateX(-50%);
  left: 50%;
  /* border: 1px solid rgba(49, 146, 52, 0.5); */
  background-color: #ffd900;
  /* color: var(--accent_bg); */
  color: #000;
  top: 5px;
  right: auto;
}

.has-offer-tag span {
  opacity: 1;
}

.product-search-results {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background-color: #fff;
  margin-top: 0;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  overflow: auto;
  max-height: 70vh;
}

.search-result+.search-result {
  /* border-top: 1px solid #eaeaea; */
}

.search-result a {
  /* padding: 0 10px; */
  text-decoration: none;
  color: #000;
  display: flex;
  gap:1rem;
  align-items: center;
  transition: ease 0.25s background-color;
}

.search-result a:hover {
  background-color: #fafafa;
}

.search-result-img {
  width: 60px;
  flex: 0 1 60px;
  object-fit: cover;
  flex-shrink: 0;
  padding:2px;
  border:1px solid #dadada;
}

.search-result-name {
  flex: 1 1 auto;
  margin-left: 5px;
}

/* #endregion */

/* #region address */

.address-options {
  padding-top: 10px;
  /* border-top: 1px solid #dadada; */
}

.address-option {
  padding: 5px 10px;
  /* border: 1px solid #dadada; */
  color: #000;
  margin-right: 2px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
}

.address-option i {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 3px;
}

/* #endregion */

/* #region alerts */

.toast-alert {
  position: fixed;
  top: 100px;
  right: 10px;
  width: 350px;
  max-width: 90vw;
  padding: 20px;
  background-color: #ce3628;
  color: #fff;
  font-weight: 600;
  transform: translateX(150%);
  transition: ease-in-out 0.25s transform;
  z-index: 99999;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

.toast-alert.active {
  transform: translateX(0);
}

.toast-alert[data-toast-success="true"] {
  background-color: green;
  color: #fff;
}

#mobile-landscape-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--primary_bg);
  z-index: 99992;

  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#mobile-landscape-overlay .phone {
  height: 50px;
  width: 100px;
  border: 3px solid white;
  border-radius: 10px;
  animation: rotate 1.5s ease-in-out infinite alternate;
}

#mobile-landscape-overlay .message {
  color: white;
  font-size: 1em;
  margin-top: 40px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-90deg);
  }

  100% {
    transform: rotate(-90deg);
  }
}

#mobile-landscape-overlay .phone,
#mobile-landscape-overlay .message {
  display: block;
}

@media (max-height: 450px) {
  html.landscape {
    overflow: hidden;
  }

  html.landscape #mobile-landscape-overlay {
    display: flex;
  }
}

/* #endregion alerts */

/* #region Search */

#search-popup .search-container {
  /* overflow: hidden; */
  height: 100%;
  padding-bottom: 0;
  font-size: 0.9rem;
}

.popup-search-results-scroll {
  flex: 1 1 auto;
      /* width: 410px; */
      height: 400px;
  /* overflow: auto;
padding: 15px 15px;
padding-bottom:5px;
  min-height: 48px;
    position: fixed;
    background-color: #fff;
    z-index: 1051; */
    position: absolute;
    top: 100%;
    z-index: 1;
    right: 0;
    width: 25rem;
    padding: 15px 15px;
    padding-bottom:5px;
    background-color: #fff;
    min-height: 48px;
    box-shadow: -1px 3px 0.5rem rgb(0 0 0 / 30%);
    overflow: auto;
}

.popup-search-input-container {
  display: grid;
  gap: 20px;
  margin-bottom: 10px;
}

.popup-search-category-select,
.popup-search-input-box {
  display: block;
  width: 100%;
  height: 2.7rem;
  background-color: #f7f7f7;
  border-radius: 50px;
  padding-left: 1rem;
}

.popup-search-category-select {
  padding-right: 2rem;
  appearance: none;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgZmlsbD0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNiYmIiPjxwYXRoIGQ9Ik02IDlsNiA2IDYtNiIvPjwvc3ZnPg==);
  background-position: right 10px top 50%;
  background-size: auto 18px;
  background-repeat: no-repeat;
}

.popup-search-input-group {
  position: relative;
}

.popup-search-input-box {
  padding-right: 3rem;
}

.popup-search-input-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 3rem;
  height: 100%;
  text-align: center;
  padding-right: 0.5rem;
  font-size: 1.3rem;
  color: var(--text-color-medium);
  pointer-events: none;
}

.popup-search-results-container {
  display: grid;
  gap: 10px;
}

.popup-search-result-item {
  display: flex;
  align-items: flex-start;
  gap: var(--column-gap);
}

.popup-search-result-image {
  width: 30%;
  position: relative;
}

.popup-search-result-image::before {
  content: "";
  display: block;
  padding-top: 120%;
}

.popup-search-result-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-search-product-title {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.popup-search-product-price {
  font-size: 0.9rem;
  color: var(--text-color-medium);
}

.popup-search-actions {
  margin-top: 10px;
  padding-top: 5px;
  border-top: 1px solid var(--bg-medium);
}

.popup-search-btn {
  display: flex;
  align-items: center;
  gap: 0.5ch;
}

.popup-search-btn:hover {
  color: var(--accent-color);
}

/* #endregion */
.top-cat {
  width: 100%;
  text-decoration: none;
}

.top-cat-box {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-cat-box img {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

/*  */
@media (min-width: 1199px) {
  .header-menu-btn-space {
    display: none;
  }
}

@media (max-width: 1199px) {
  .menu-sidebar {
    display: block;
    font-size: 14px;
  }

  .header-menu-btn i {
    display: block;
  }

  .header-menu-btn {
    font-size: 24px;
    color: var(--new-btn-bg);
    padding: 0;
    padding-top: 0;
  }

  .search-box {
    min-width: 400px !important;
  }

  .top-cat-box {
    width: 100px !important;
  }

  .top-cat-box img {
    width: 100px !important;
    /*height: 50px !important;*/
  }
}

@media (max-width: 360px) {
  .top-cat-box {
    width: 80px !important;
    height: 80px !important;
  }

  .top-cat-box img {
    width: 100px !important;
    height: 4 0px !important;
  }
}

@media (min-width: 769px) {

  .bottom-menu-bar,
  .resp-only,
  .resp-location-popup-btn,
  .page-cart-view {
    display: none;
  }
  .resp-offer-banner-3 {
      display:none;
  }
  .resp-promises {
      display:none;
  }
 .resp-cat-heading { 
     font-size:1rem !important;
 }
 .resp-cat-section {
      display:none;
  }
  .resp-follow-ul {
      display:none;
  }
 
  #resp-banner-swiper {
      display:none;
  }

  /* section.header-group {
    position: sticky;
    top: 0;
    transition: ease 0.25s top;
    z-index: 99992;
  } */
  .header-sticky {
    position: sticky;
    top: 5px;
    /*transition: ease 0.25s top;*/
    z-index: 92;
    /* box-shadow: 0px 3px 3px 0.1px rgba(206, 206, 206, 0.212); */
  }

 

  /* .product-item-main:hover .has-offer-tag {
        transform: translateX(0);
        background-color: rgba(49, 146, 52, 0.5);
        color: var(--accent_bg);
    }

    .product-item-main:hover .has-offer-tag span {
        opacity: 1;
        margin-right: 5px;
    } */

  .product-slide-thumbnail {
    /* margin: 0 50px; */
  }
}

 body.header-sticky {
      top:5px !important;
    /* top: -50px; */
  }
  .top_strip {
        top: 0;
        position: sticky;
        z-index: 10;
        /*transition: ease 0.3s top;*/
    }
.slide-logo-header {
        width: 100%;
    border-bottom: 1px solid #ccc;
    height: 50px;
    margin-bottom: 15px;
}
@media (max-width: 768px) {
  .header-action {
    color: #000;
  }
  .product-category:first-child {
                 margin-top: -38px;
  }
  .copy-footer {
      width:100%;
  }
  .footer-social-links ul {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
   #banner-swiper {
      display:none;
  }
  .web-offer-banner-3 {
      display:none;
  }
  .heading-space {
        margin-top: 2rem !important;
        margin-bottom: 0 !important;
  }
  .resp-offer-section {
      padding-top:1.2rem !important;
  }
  .resp-footer-space {
      padding-left:0;
      margin-bottom:0;
  }
  .product-name-default {
          min-height: 3.6em !important;
  }
  .category-icons {
      background-color:#fff !important;
      border: 0 !important;
      padding:0 !important;
  }
   .resp-cat-heading {
       margin:0 !important;
       font-size:0.8rem !important;
   }

  .header-group {
    display: flex;
    flex-direction: column-reverse;
    position: sticky;
    top: 5px;
    z-index: 10;
    /* margin-bottom: 5px; */
    transition: ease 0.3s top;
  }

  .header-top-links,
  .resp-none,
  .bottom-menu-bar {
    display: none;
  }

  .header-main {
    /* padding-left: 10px; */
    /* padding-right: 10px; */
    position: static;
    padding-block: 5px;
  }

  .header-main .header-row {
    flex-wrap: wrap;
    position: relative;
    /* padding-bottom: 35px; */
    justify-content: space-between;
    padding: 0;
  }

  .header-menu-btn-space {
    /* margin-right: 10px; */
    /* width: 100px; */
    /* display: none; */
    order: -1;
  }

  .header-brand img {
    width: 140px;
  }

  .resp-location-popup-btn {
    color: #fff;
    padding: 7px 12px;
    margin-bottom: 5px;
    width: calc(100vw - 260px);
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    display: flex;
  }

  .resp-location-popup-btn .location-marker {
    margin-right: 5px;
  }

  .header-row .header-action-group {
    display: inline-flex;
    gap: 0.5rem;
    display: none;
    width: 100px;
    font-family: "Poppins", sans-serif;
  }

  .header-action {
    margin: 0;
    font-size: 15px;
    padding: 0;
  }

  .header-action i {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }

  .header-row .header-action {
    display: none;
  }

  .header-action:last-child {
    margin-right: 0;
  }

  .header-group .header-action-label,
  .header-group .header-cart-label {
    display: none;
  }

  .cart-action {
    position: relative;
    /* background-color: var(--primary_bg); */
    color: #000;
    /* padding: 3px 10px; */
    margin-bottom: 3px;
    margin-left: 0;
    height: 100%;
    /* width: 60px; */
  }

  .cart-action .header-action-label {
    display: inline-block;
  }

  .cart-action .cart-qty {
    /* position: absolute;
        font-size: 10px;
        background-color: #fff;
        width: 1.2em;
        height: 1.2em;
        color: #2f3261;
        font-weight: 800;
        text-align: center;
        line-height: 1.2;
        top: 3px;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%; */
    font-size: 14px;
    font-weight: 600;
  }

  /* .category-search-dropdown {
        position: absolute;
        bottom: 0;
        width: 100%;
    } */
  .category-search-container {
    margin-left: 0;
    order: 3;
    margin-right: 0;
    display: none;
  }

  .header-top {
    /* display: none; */
    padding-block: 0.5rem;
  }

  .location-dropdown {
    width: 100%;
  }

  .banner-img {
    /* height: 180px; */
    position:relative;
  }

  .banner-title {
    font-size: 12px;
  }

  .banner-swiper-nav {
    padding: 15px 10px;
    --swiper-navigation-size: 14px;
    opacity: 1;
  }

  .banner-swiper-nav.swiper-button-disabled {
    opacity: 1;
    color: #999;
  }

  .banner-content {
    padding: 0 35px;
  }

  .adv-row,
  .footer-links-row {
    flex-wrap: wrap;
  }

  .footer-links-row {
    flex-direction: column;
  }

  .adv-row {
    padding: 10px 0;
  }

  .adv-wrapper {
    margin-top: 10px;
    text-align: center;
  }

  .product-category {
    padding: 20px 10px;
  }

  .category-section-head {
    font-size: 20px;
    /* margin-bottom: 0.5em; */
  }

  .bottom-menu-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: ease 0.3s bottom;
    display: block;
  }

  .scroll-down .header-group {
    /*top: -120px;*/
  }

  .scroll-down .bottom-menu-bar {
    /* bottom: -65px; */
  }

  body {
    padding-bottom: 60px;
  }

  .bottom-bar-row {
    display: flex;
    padding: 10px 0;
    align-items: center;
    height: 60px;
  }

  .bottom-menu-item {
    flex: 1 1 100%;
    text-align: center;
    color: #333;
    text-decoration: none;
    position: relative;
  }

  .bottom-menu-item.active {
    color: var(--new-btn-bg);
    font-weight: 600;
  }

  .bottom-menu-item .menu-icon {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .bottom-menu-item i {
    display: block;
  }

  .bottom-menu-item .menu-label {
    font-size: 11px;
    color: #000;
    font-weight: 500;
    margin-bottom:0;
  }

   .login-section, .signup-section {
    width: 100% !important;
  }
  .btn-fill-button {
    width: 100% !important;
  }

  .bottom-menu-cart-qty {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(0, -10px);
    background-color: var(--new-btn-bg);
    color: #fff;
    min-width: 1.5em;
    height: 1.5em;
    text-align: center;
    line-height: 1.5em;
    border-radius: 50px;
    font-size: 0.8em;
    display: block;
  }

  .brands-slider-container {
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    left: 0;
  }

  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    right: 0;
  }

  .home-testimonials {
    /* padding: 20px 10px; */
    overflow: hidden;
  }

  .home-testimonials .category-section-head {
    text-align: center;
  }

  .home-testimonials .testiminial-swiper-nav {
    display: none;
  }

  .home-testimonials .swiper-container {
    overflow: visible;
  }

  .testimonial-slide {
    padding: 20px 30px;
  }

  .testimonial-slide .quot::before {
    font-size: 70px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .testimonial-title {
    font-size: 15px;
    margin-bottom: 0;
  }

  .testimonial-sub {
    font-size: 13px;
  }

  .footer-nav {
    padding: 20px 10px;
  }

  .footer-nav-row {
    flex-direction: column;
  }

  .footer-nav-title {
    font-size: 14px;
    margin-bottom: 0.5em;
  }

  .footer-nav-desc li {
    font-size: 12px;
  }

  .footer-links {
    padding: 10px 10px;
    display: none;
  }

  .copy-footer {
    padding: 0;
    font-size: 11px;
    /* display: none; */
    background-color: transparent;
    color: inherit;
    margin-top: 10px;
  }

  .copy-footer .powered-text img {
    width: 26px;
  }

  body>.copy-footer {
    display: none;
  }

  .has-offer-tag {
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .has-offer-tag span {
    font-size: 10px;
  }

  .product-slide-details {
    padding: 0;
    margin-top: 10px;
  }

  .product-details-group {
    flex-direction: column;
  }

  .product-add-to-cart {
    /* margin-left: 0;
        margin-top: 10px; */
    padding: 10px;
  }

  .product-slide-details .product-title {
    font-size: 13px;
    /* height: 2.4em; */
    overflow: hidden;
  }

  .product-slide-details .product-brand {
    font-size: 12px;
    height: 1.5em;
    overflow: hidden;
    line-height: 1.5;
  }

  /* .product-detail-group {
        background-color: transparent;
        padding: 0;
    } */
  .product-price {
    font-size: 12px;
  }

  .product-slide-btns {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
  }

  .product-slide:hover .product-slide-thumbnail-img img:last-child {
    opacity: 1;
  }

  .product-hover-primary {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
  }

  .product-slide-thumbnail-img {
    /* height: 180px; */
    /* margin-top: 20px; */
  }

  .product-slide-option {
    font-size: 20px;
  }

  .breadcrumbs {
    font-size: 10px;
  }

  .location-popup .popup-title {
    font-size: 18px;
  }

  .popup-location-dropdown {
    width: 100%;
  }

  .location-continue-btn {
    font-size: 14px;
  }

  .form-dropdown .suggestion-list {
    left: 20px;
    right: 20px;
  }

  .ac-form-row {
    display: block;
  }

  .ac-form-col {
    width: 100%;
    padding: 0;
  }

  .ac-form-row::after {
    content: none;
  }

  .otp-popup .popup-container {
    height: 560px;
  }

  .new-address-popup .popup-content {
    padding: 0;
  }

  .new-address-popup .popup-title {
    font-size: 14px;
  }

  .address-form-group {
    padding: 0px;
  }
  .radio-group {
    padding: 0px !important;
  }

  .address-form-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
  }

  .address-form-input {
    font-size: 12px;
    padding: 6px 10px;
    color: #000;
    font-weight: 500;
  }

  .save-address-btn {
    padding: 7px 20px;
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 8px;
  }

  .view-more-slide {
    padding: 0;
  }

  .account-sidebar .sidebar-container {
    padding-top: 20px;
  }

  .sidebar-navs {
    margin-bottom: 15px;
  }

  .ac-input-group {
    margin-bottom: 10px;
  }

  .ac-label {
    font-size: 11px;
    margin-bottom: 1px;
  }

  .ac-input {
    padding: 8px 10px;
    font-size: 12px;
  }

  .ac-form-error {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .ac-form-success {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .ac-input-group label.error {
    font-size: 10px;
  }

  .ac-btn {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .ac-link {
    font-size: 12px;
  }

  .sidebar-nav-btn {
    padding-bottom: 20px;
    font-size: 12px;
  }

  .sidebar-nav-btn::after {
    top: 40px;
  }

  .forgot-password-popup .popup-title,
  .otp-popup .popup-title {
    font-size: 12px;
  }

  .forgot-password-popup .ac-input-group small {
    font-size: 10px;
  }

  .forgot-password-popup .ac-input::placeholder {
    font-size: 11px;
    color: #999;
  }

  .ac-hr {
    margin: 0 auto;
  }

  .otp-password-form {
    width: 250px;
  }

  .ac-message-gap {
    margin-bottom: 15px;
  }

  .page-cart-view {
    position: sticky;
    bottom: 57px;
    left: 0;
    width: 100%;
    padding: 7px 10px;
    background-color: #429500;
    z-index: 10;
    display: flex;
    color: #fff;
    font-weight: 500;
    justify-content: space-between;
    align-items: center;
    display: none;
  }

  .cart-view-link {
    display: flex;
    align-items: center;
    color: #fff;
    background-color: var(--primary_bg);
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
  }

  .cart-view-link .cart-qty {
    padding: 2px 5px;
    font-size: 14px;
    background-color: #fff;
    border-radius: 50px;
    color: #000;
    line-height: 1.2;
    margin-left: 5px;
    font-weight: 600;
    width: 22px;
    text-align: center;
  }
}

/* Custom Css */
.header-group header {
  background: var(--header-bg-new);
}

.nav-header {
  background: var(--header-bg-new-dark);
  color: white;
}

.nav-header-links a {
  color: white;
}

.btn-bg-new {
  background: var(--new-btn-bg);
}

.btn-hover:hover {
  background-color: var(--new-btn-bg-hover);
  color: white !important;
}

.text-new {
  color: var(--new-btn-bg);
}

.header-navbar-new .dropdown-menu a {
  color: var(--header-bg-new);
}

.search-box {
  min-width: 550px;
}

.fs-sms {
  font-size: 12px;
}

.fs-sm {
  font-size: 13px;
}

.fs-smb {
  font-size: 14px;
}

.header-padding-set {
  padding: 10px;
}

.header-search-select {
  position: relative;
  border: 0;
  border-right: 1px solid #eaeaea;
  color: #666666;
}

.header-search-input {
  border: 0;
  padding-left: 15px;
}

.header-search-input::placeholder {
  color: #666666;
}

.header-search-btn {
  height: 40px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #000;
  padding: 0 25px;
  margin: 0 -2px 0 0;
}

.color-white {
  color: var(--white);
}

.hover-white:hover {
  color: var(--white);
}

.hover-new:hover {
  color: var(--new-btn-bg);
}

.category-parent {
  padding: 15px 30px 10px 20px;
  margin-left: 5px;
}

.cursor-pointer {
  cursor: pointer;
}

.hover-menu {
  background-color: var(--white);
  z-index: 9999;
}

.hover-menu-first-down>li {
  border-bottom: 1px solid #cccccca2;
}

.hover-menu-first-down>li a {
  display: block;
  padding: 13px 20px 13px 30px;
  transition: 0.2s;
}

.hover-menu-first-down li:hover a {
  color: var(--light-gray);
}

.hover-menu-first-down>li:last-child {
  border-bottom: none;
}

.hover-menu-first-down>li a {
  text-decoration: none;
  font-weight: 500;
  color: var(--new-btn-bg-hover);
}

.hover-menu-first-down {
  display: none;
  box-shadow: 0px 0px 10px 0px rgb(223, 223, 223);
}

.parent-menu:hover .hover-menu-first-down {
  display: block;
}

.sub-parent::after {
  margin-top: 10px;
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.child-menu {
  display: none;
  width: calc(1470px - 100%);
  position: absolute;
  left: 100%;
  top: 0;
  background-color: var(--white);
}

.sub-parent:hover .child-menu {
  display: block;
}

#subheadernavbar .navbar-nav li {
  padding: 15px 15px 15px 0px;
  /* position: relative; */
}

#subheadernavbar .navbar-nav li a {
  font-size: 16px;
  transition: 0.2s;
  font-weight: 600;
  text-transform:capitalize;
   padding-right: 12px;
    padding-left: 10px;
}

.first-dropwdown {
  position: absolute;
  top: 150%;
  left: 0%;
  width: auto;
  height: auto;
  max-height:400px;
  transition: opacity 0.2s;
  opacity: 0;
  z-index: 99;
  background: var(--white);
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  visibility: hidden;
  transition: 0.3s;
  /*border: 1px solid var(--gray-border);*/
  border-top:0;
}
#subheadernavbar .navbar-nav li a.parent-menu:hover {
      background-color: #f9f9f9;
    color: #c70464;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#subheadernavbar .navbar-nav li a.parent-menu1:hover {
      background-color: #f9f9f9;
    color: #c70464;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}


#subheadernavbar .navbar-nav .nav-item:hover>.first-dropwdown {
  opacity: 1;
  height: auto;
  max-height:400px;
  overflow-y:auto;
  top: 79%;
  left: 0%;
  visibility: visible;
  background-color: #f9f9f9;
}

.nav.nav-tabs {
  border: 0;
}

.nav.nav-tabs>button {
  color: var(--slight-gray);
  font-weight: bold;
  border: 0;
  border-radius: 0;
  border-right: 2px solid #ccc;
}

.first-dropwdown .nav-link.active {
  background-color: transparent;
}

.nav.nav-tabs>button:last-child {
  border-right: 0;
}

.nav-product-card .nav-product-link {
  text-decoration: none;
  color: var(--text-black) !important;
      font-size: 14px;
    font-weight: 400;
}

.fa.fa-star {
  color: var(--new-btn-bg);
}

.nav-product-card .fa.fa-star {
  font-size: 11px;
  gap: 0 2px;
  margin: 5px 0;
}

.text-gray {
  color: #757f95;
}

.swiper {
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  /* Ensures the slide height adapts to content */
}

.swiper-button-prev,
.swiper-button-next {
  color: #000;
}

.header-cat-text {
  color: var(--white);
  text-decoration: none;
}

.flip-hover img {
  transition: 0.4s;
  transform: rotateY(0deg);
}

.flip-hover:hover img {
  transform: rotateY(360deg);
}

.offer-box img {
  transition: 1s;
}

.imga {
  opacity: 1 !important;
}

.imgb {
  opacity: 0 !important;
}

.hover-switch:hover .imga {
  opacity: 0 !important;
}

.hover-switch:hover .imgb {
  opacity: 1 !important;
}

.align-start {
  align-items: start;
}

.nav-product-link:hover {
  color: #000 !important;
}

.product-name-default {
  min-height: 2.4em;
}

.gray-bg {
  background: var(--gray-bg);
}

.hover-scale img {
  transition: 1s !important;
  /* transition: transform 1s ease; */
}

.hover-scale img:hover {
  transform: scale(1.1);
}

.blog-title {
  min-height: 2.4em;
}

.text-slight-gray {
  color: var(--slight-gray);
}

.fancybox-content {
  max-width: 70%;
  max-height: 100%;
  object-fit: cover;
  padding: 0 !important;
}

.fancybox-content img {
  position: relative !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 auto !important;
}

.testimonialImages img {
  display: block !important;
  object-fit: cover;
}

.text-hover:hover {
  color: var(--slight-gray);
}

.header-lg-search-results-scroll {
  top: 120%;
  z-index: 99999;
  white-space: normal;
  box-shadow: 0 0 0.5rem rgb(0 0 0 / 30%);
  overflow: auto;
  background-color: var(--gray-bg);
}

.header-lg-search-results-container .search-result,
.header-sm-search-results-container .search-result {
  padding: 10px 20px;
  border-bottom: 1px solid #2167e7;
}

.header-lg-search-results-container .search-result :hover .search-result-name,
.header-sm-search-results-container .search-result :hover .search-result-name {
  color: var(--new-btn-bg);
}

.header-sm-search-results-scroll {
  position: absolute;
  top: 110%;
  z-index: 99999;
  left: 0;
  width: 100%;
  white-space: normal;
  box-shadow: 0 0 0.5rem rgb(0 0 0 / 30%);
  overflow: auto;
  background-color: var(--gray-bg);
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.hoverover-blog {
  transition: 0.2s;
  outline: 1px solid white;
}

.hoverover-blog img {
  transition: 0.4s;
}

.hoverover-blog:hover {
  outline: 1px solid #dadada;
}

.hoverover-blog:hover .blog-title {
  color: var(--slight-gray);
}

.hoverover-blog:hover img {
  transform: scale(1.1);
}

.top-notification-bar {
  letter-spacing: 0.7px;
}

.nav-highlight {
  position: absolute;
  background-color: var(--dark-theme-color);
  transition: all 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.nav-link,
.category-parent {
  position: relative;
  z-index: 1;
}

.category-wrapper {
  position: relative;
}

.category-parent {
  cursor: pointer;
}

.nav-link.menu-active {
  color: var(--link);
}

.navbar-nav li:hover a {
  color: var(--link);
}

/* .header-navbar-new:hover .menu-active {
  color: black;
} */
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
}

.row-cols-lg-9>.col,
.row-cols-9>.col {
  flex: 0 0 11.11% !important;
}

.row-cols-5>.col,
.row-cols-lg-5>.col {
  flex: 0 0 20% !important;
}

.bb-color {
  border-bottom: 1px solid var(--border);
}

.product-add-to-cart-change {
  color: var(--white);
  transition: 0.3s;
}

.product-add-to-cart-change:hover {
  color: var(--light-theme-color);
}

.product-card-here {
  overflow: hidden;
}

.product-card-here figure {
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  margin: 0;  
}

/* 
.suedo-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  transition: width 0.5s ease, height 0.5s ease;
  z-index: -1;
}
.suedo-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  transition: width 0.5s ease, height 0.5s ease;
}
.suedo-box::after {
  z-index: -1;
}
.suedo-box:hover .product-card-here {
  border: none !important;
}
.suedo-box:hover::before,
.suedo-box:hover::after {
  width: 100%;
  height: 100%;
  border: 1px solid var(--light-theme-color);
} */

.bb-small::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background-color: var(--border);
}

.blog-date {
    color:#fff;
  position: absolute;
  right: 0px;
  top: -30px;
  background: var(--light-theme-color);
  padding: 5px 15px 5px 20px;
  height: 30px;
  border-radius: 50px 0 0 0;
}

.swiper-pagination-bullet {
  background-color: var(--text-black);
}

.bb-gray {
  border-bottom: 1px solid var(--gray-border);
}

.bbr-gray {
  border-right: 1px solid var(--gray-border);
}

@media only screen and (max-width: 1024px) {
  .sidebar-close {
    font-size: 40px;
  }

  .promises .col {
    border: 0 !important;
    margin-bottom: 20px !important;
  }
}

.offcanvas {
  z-index: 99996 !important;
}

.offcanvas-backdrop {
  z-index: 99995 !important;
}

.header-icons a {
  padding: 0 10px;
  border-right: 1px solid var(--border);
}

.header-icons a:last-child {
  border-right: 0;
}

.swiper-slide.banner-slide,
#banner-swiper {
  overflow: hidden;
}

.dropdown-toggle::after {
  width: 7px;
  height: 7px;
  border: 2px solid;
  border-top: transparent;
  border-left: transparent;
  transform: translateY(40%);
  rotate: 45deg;
  transform: translateX(30%);
}

.first-heads::before {
  content: "";
  position: absolute;
  font-family: "Font Awesome 6 pro";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gray-bg);
  left: 8px;
  top: 14px;
  color: var(--theme-color);
  font-weight: bold;
  font-size: 6px;
  transform: translateY(50%);
  transform: scale(0, 0);
  transition: 0.5s;
  z-index: -1;
}

.first-heads:hover::before {
  width: 6px;
  height: 6px;
  opacity: 1;
  visibility: visible;
  transform: scale(1, 1);
}

.first-heads {
  transition: 0.3s;
}

.first-heads:hover {
  color: var(--gray-bg) !important;
  padding-left: 24px !important;
}

.section-heading {
  position: relative;
  padding-bottom: 5px;
      font-size: 16px !important;
    font-weight: 600;
}

.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background: var(--light-gray);
  border-radius: 0 50px 50px 0;
  width: 80%;
  height: 100%;
  z-index: -1;
}

.section-heading::after {
  content: "";
  position: absolute;
  border: 0;
  left: 0;
  top: 100%;
  width: 35px;
  height: 3px;
  background-color: var(--dark-theme-color);
}

.header-bottom-category .swiper-slide:hover a {
  color: var(--link);
}

.header-bottom-category .swiper-slide a>div,
.header-bottom-category .swiper-slide a h6,
.header-bottom-category .swiper-slide figure img {
  transition: 0.6s;
}

/*.header-bottom-category .swiper-slide:hover figure img {*/
/*  scale: 1.1;*/
/*}*/

.product-card-here::before {
  content: "";
  position: absolute;
  height: 70%;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--light-gray);
  border-radius: 20px 20px 0 0;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.product-card-here:hover::before {
  height: 100%;
}

.product-slide {
  border: 0 !important;
}

.price-color {
  color: var(--red);
}

.home-products-swiper .swiper-button-prev,
.home-products-swiper .swiper-button-next {
  background: var(--gray-bg);
  color: var(--white);
  border-radius: 50%;
}

.home-products-swiper .swiper-button-prev::after,
.home-products-swiper .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
}

.product-rating .fa-star {
  font-size: 15px;
  color: var(--orange);
}

.promises {
  padding: 20px;
  border: 1px solid var(--gray-border);
  border-radius: 20px;
}

.adv-wrapper {
  margin-left: 15px;
}

.adv-wrapper p {
  color: #808080;
}

.text-orange {
  color: var(--orange);
}

.newbtnanime {
  position: relative;
  font-size: 16px;
  background: var(--light-theme-color);
  color: var(--text-black);
  padding: 10px 20px;
  display: inline-block;
  vertical-align: middle;
  text-transform: capitalize;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  transition: 0.6s;
  z-index: 1;
}

.newbtnanime::before {
  content: "";
  height: 300px;
  width: 300px;
  background: var(--text-black);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.newbtnanime:hover {
  color: var(--white);
}

.newbtnanime:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.section-sub-heading {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-bg);
  position: relative;
  margin-bottom: 5px;
  /* display: inline-block; */
}

.section-main-heading {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 34px;
  color: var(--color-dark);
  margin-top: 4px;
}

.text-blue {
  color: var(--gray-bg);
}

.blog-title a {
  color: var(--text-black);
  font-size: 16px;
  text-transform: capitalize;
  text-decoration: none;
  font-weight: 400;
}

footer {
  position: relative;
  z-index: 0;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:#eaeaea;
  /*background: url("../images/background/footer-background.jpg") center no-repeat;*/
  background-size: 100%;
  opacity: 0.9;
  z-index: -1;
}

@media only screen and (max-width: 992px) {
  /*footer::before {*/
  /*  background: url("../images/background/mobile-footer-background.jpg") center repeat;*/
  /*  background-size: contain;*/
  /*}*/
}

.text-yellow {
  color: var(--light-theme-color) !important;
}

.foot-heading {
  position: relative;
}

.foot-heading::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: var(--gray-bg);
  border-radius: 50px;
  bottom: -5px;
  left: 0;
  z-index: -1;
}

.foot-heading::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  bottom: -5px;
  left: 14px;
  z-index: -1;
}

.offer-banner-2 img {
  object-fit: cover;
}

.price-size {
  font-size: 16px;
}

.price-size span {
  font-size: 13px;
}

.footer-page-link {
    font-size: 14px !important;
} 

@media only screen and (max-width: 768px) {
  .section-main-heading {
    font-size: 26px;
  }
  .link-font-size {
      font-size:13px !important;
  }
  .menu-section {
      display:none;
  }
  .category-offer-banner-grid {
      grid-template-columns:1fr;
  }
  .offer-banner-space {
          margin-top: 18px !important;
  }
  .web-follow-ul {
      display:none;
  }
   .follow-ul {
       display:flex;
       flex-direction:row;
   }
  .shop-ul{
      padding-left:0;
      margin-bottom:0;
  }
  .resp-hide {
      display:none !important;
  }
  .resp-section-center {
      justify-content:center !important;
  }
  .section-heading::after {
      left:35% !important;
  }
  .web-cat-section {
      display:none;
  }
  .web-promises {
      display:none;
  }
  .adv-wrapper {
      margin-left:0 !important;
  }
  .footer-links-title li {
        margin-bottom: 5px;
    }
  .footer-links-list a.footer-page-link {
          line-height: 20px;
  }
  .home-page-contents {
      margin-top:0 !important;
  }
  .row-cols-lg-5>.col {
      flex:auto !important;
  }
  .nav-product-card .nav-product-link {
      font-size:12px;
  }
  .footer-links-title {
      font-size:14px !important;
  }
  .footer-page-link {
      font-size:13px !important;
  }
  .position-relative {
      line-height: 18px;
    font-size: 12px;
  }
  .shop-ul li {
      line-height: 18px;
    font-size: 12px;
  }
  .follow-us-ul li {
      line-height: 18px;
    font-size: 12px;
  }
  .header-action-title {
      font-size:14px;
  }
  .blog-title a {
      font-size:13px;
  }
  .sidebar-links .fs-6 {
     font-size:12px !important;   
  }
  .footer-col .fs-6 {
      font-size:12px !important; 
  }
  .collapse-content .footer-social-icon {
      margin-left: -30px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 576px) {
  .banner-slide::before {
    padding-top: 40%;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .offer-banner-2 {
    padding-bottom: 30% !important;
  }

  .price-size {
    font-size: 14px;
  }

  .price-size span {
    font-size: 12px;
  }
}

.text-black {
    color:#575757 !important;
}
.home-page-contents {
    background-color:#fff;
    /*background: url(../images/background/bg1.jpg);*/
    /*background-size: auto;*/
    /*background-position: center;*/
    /*background-repeat:repeat;*/
}
.search-area-box {
    width:480px;
}
.popup-search-input-group {
    width:100%;
}
.search-bg-layer {
    display:none;
    position: fixed;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: 1050;
    background: rgba(51, 51, 51, 0.8);
    animation: 300ms ease 0s 1 normal none running lbWRkT;
        margin-top: 27px;
}

@keyframes lbWRkT {
    0% {
      opacity: 0;
    }
    100% {
        opacity: 1;
    }
}



a.text-gray:hover {
    color: #c70464;
}

.category-icons:hover, .resp-cat-heading:hover {
    color:#c70464 !important;
}
.top-cat:hover {
    color:#c70464 !important;
}

.popup-search-input-box::placeholder {
    color: #000
}
.top_strip {
    width:100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
.strip-1 {
    background-color:#c70464;
    height:5px;
}
.strip-2 {
    background-color:#009acc;
    height:5px;
}
.strip-3 {
    background-color:#96cd32;
    height:5px;
}
.strip-4 {
    background-color:#ffcb06;
    height:5px;
}
.strip-5 {
    background-color:#ff850e;
    height:5px;
}
.strip-6 {
    background-color:#cd3534;
    height:5px;
}
.news-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-slide {
    border-radius: 6px;
    overflow: hidden;
}
/* Ends here */
.sub-col li a{
    font-size:14px;
}

.sub-col li:hover a, .first-dropwdown li:hover a {
    color: var(--link) !important;
}
.multi-column-dropdown {
    width: max-content; /* or adjust as needed */
    padding: 5px;
}

.multi-column-dropdown .sub-dropdown {
    display: flex;
}

.multi-column-dropdown .sub-col {
    width: max-content;
    padding-right: 65px;
}
.multi-column-dropdown .sub-col:last-child {
    border-right: 0;
}

.search-result {
    padding-bottom: 10px;
}

.iziToast>.iziToast-close {
    opactity:1 !important;
}
.home-cat-nav-btn {
    width:45px;
}
.img-fluid1 {
        max-width: 100%;
    height: 200px;
    object-fit: contain;
}
.highlight {
        background-color: #f9f9f9;
    color: #c70464;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.link-font-size {
    font-size:14px !important;
    font-weight: 400 !important;
}
ul.shop-ul a {
    text-transform: capitalize;
}
.filter-option-label input.sub_cat_list:checked + span {
    font-weight: 400;
}

.breadcrumbs-section h3 {
    font-size:15px !important;
        margin-bottom: 1px;
}

@media only screen and (max-width: 768px) {

  .link-font-size {
      font-size:13px !important;
  }
  .product-card-here::before {
    height: 100%;
  }
  .btn-outline-button {
    padding: 0 1rem !important;
  }
  .btn-fill-button {
    padding: 0 0.6rem !important;
  }
}

@media (min-width:769px) {
  .web-none {
    display: none;
  }
}
.address-form-box {
    max-height: 500px;
    overflow-y: auto;
}
.address-option:first-child {
    color: #ef7811;
}

.address-option:last-child {
    color: red;
}
label.error {
    color: red;
    font-size: 13px;
}
sup.error {
    color: red;
    font-size: 13px;
}

  .product-checkout-link {
    margin-left: 15px;
    padding: 10px 15px;
    width: 100%;
    text-align: center;
    justify-content: center;
    background-color: #6E6E6C;
    color: var(--accent_fg);
    border-radius: 4px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    transition: ease 0.2s;
     border: 1px solid #6E6E6C;
    transition-property: color, background-color;
  }

  .product-checkout-link:hover {
    background-color: var(--primary_bg);
    color: var(--primary_fg);
    border: 1px solid #6E6E6C;
  }

  .product-checkout-link i {
    margin-left: 5px;
    font-weight: 100;
    font-size: 14px;
  }
  span.vertical-filter-header {
    cursor: pointer;
  }
  span.vertical-filter-header.collapse-toggle::after {
    content: "";
    position: absolute;
    top: 2rem;
    right: 7%;
    width: 5px;
    height: 5px;
    border: 1px solid #333;
    border-top: none;
    border-left: none;
    transform: translate(-50%, -50%) rotate(225deg);
    transition: ease-in-out 0.25s transform;
}
.top-header{
      background-color: #f7f7f7;
    z-index: 92;
    position: sticky;
}
.filter-sticky{
    width: 252px;
    min-width: 252px;
    z-index: 4;
    /* position: fixed !important; */
    margin-bottom: 10px;
    top: auto;
    bottom: 34%;
}
.sub-ul-box {
    padding: 6px 0;
    max-height: 250px;
    overflow-y: auto;
}
section.product-similars-section {
    margin-top: 4rem;
}
.similar-swiper-nav {
  width: 45px;
}
.parent_cat_label {
  font-weight: 600;
}
.child_cat_label{
  font-weight: 300;
}
div#accordionExample {
    font-size: 13px;
}
.accordion-header button.accordion-button {
  font-size: 15px;
}

 .radio-group {
    display: flex;
    gap: 10px;
    padding: 0px 8px;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.radio-group input[type="radio"] {
    display: none;
}

.radio-group label {
    padding: 10px 8px;
    background-color: #fff;
    border: 1px solid #b2b2b2;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    color: #b2b2b2;
    transition: background-color 0.3s, color 0.3s;
    font-size: 14px;
    width: 100%;
}

.radio-group input[type="radio"]:checked+label {
    background-color: var(--new-btn-bg);
    color: white;
    border-color: var(--new-btn-bg);
}

.contact-page .breadcrumbs {
   color:#fff;
}
.contact-page .breadcrumbs a {
   color:#fff;
}

.contact-page .breadcrumbs li+li::before, .contact-page .breadcrumbs li+li::after {
   color:#fff;
}


#address-new-modal-view {
  padding: 1rem;
}



.address-new-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 10px;
  z-index: 400;
  display: none;
  opacity: 0;
  transition: ease 0.25s opacity;
  overflow: auto;
  overflow-x: hidden;
}

.address-new-modal.active {
  display: grid;
}

.address-new-modal.show {
  opacity: 1;
}

.address-new-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
}

.address-new-modal-content {
  position: relative;
  z-index: 1;
  width: 650px;
  height: auto;
  max-width: 95vw;
  max-height: 100%;
  border-radius: 6px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  transition: ease 0.25s transform;
}

.address-new-modal.show .address-new-modal-content {
  transform: translateY(0);
}

.address-new-modal-header {
  padding: 25px;
}

.address-new-modal-header .add-coupon-input-group {
  max-width: 400px;
  margin-right: auto;
}

.address-new-modal-header-row {
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
}

.address-new-modal-title {
  font-size: 22px;
  font-weight: 500;
}

.address-new-modal-close-btn {
  font-size: 48px;
  font-weight: 300;
  line-height: 0.5;
  position: relative;
  z-index: 30;
}

.address-new-modal-body {
  max-height: calc(100vh - 180px);
  overflow: auto;
  height: 100%;
  position: relative;
}

.address-new-modal-body .address-form-group {
  margin-bottom: 0.875rem;
}

.address-new-modal-body .address-form-row {
  width: 100%;
}

.login-box {
  width: 100%;
  max-width: 42.5rem;
  margin: 4rem auto;
  padding: 2rem 7.5rem;
  background: #F0F0EF;
}

.login-box .form-control {
  background-color: transparent;
  border: 1px solid rgb(222, 222, 222);
  padding: 13.5px 11px;
  border-radius: 0.5rem;
}

.login-box .form-floating label {
  color: rgb(112, 112, 112);
  font-weight: 400;
  font-size: 0.875rem;
}

.login-box .ac-btn {
  background-color: transparent;
  border-color: transparent;
  color: #000;
  border-radius: 5rem;
  transition: 0.3s ease-in-out;
}

.login-box .ac-btn:hover {
  background-color: transparent;
  border-color: var(--new-btn-bg);
  color: var(--new-btn-bg);
  box-shadow: none;
}

.login-box .ac-link {
  position: relative;
  font-weight: 300;
  padding-bottom: 0.25rem;
  display: inline-block;
  max-width: max-content;
}

.login-box .ac-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  transform-origin: left;
  transform: scaleX(1);
  transition: 0.3s ease-in-out;
}

.login-box .ac-link:hover::before {
  transform: scaleX(0);
}

/* .login-box .form-control:focus label {
  border-color: var(--new-btn-bg);
  box-shadow: var(--new-btn-bg) 0px 0px 0px 1px;
} */

.login-box .form-floating label::after,
.login-box .form-floating label,
.login-box .form-floating input:focus+label::after {
  content: unset;
  background-color: transparent !important;
}

.login-box .form-floating {
  margin-bottom: 1rem;
}

.login-box .form-floating:last-child {
  margin-bottom: 0;
}

.login-box .form-control:not(:placeholder-shown),
.login-box .form-control:focus {
  border-color: var(--new-btn-bg);
  box-shadow: var(--new-btn-bg) 0px 0px 0px 1px;
  background-color: #fee8f9;
}

.agree-tc-check {
  font-size: 0.85rem;
  line-height: 1.15rem;
}


@media only screen and (max-width: 768px) {
  .breadcrumbs-section {
    display: none;
  }

  .login-box .form-floating {
    margin-bottom: 0.5rem;
  }

  .menu-sidebar .sidebar-links .nav-active {
    color: var(--new-btn-bg);
  }

  .address-new-modal-content {
    width: 100%;
    max-width: 95vw;
    height: auto;
    max-height: 100%;
  }

  .address-new-modal-header {
    padding: 15px;
  }

  .address-new-modal-header-row {
    align-items: center;
  }

  .address-new-modal-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .address-new-modal-close-btn {
    font-size: 36px;
  }

  .login-box {
    width: 100%;
    padding: 2rem;
    margin: 1rem auto;
  }

  .product-checkout-link {
    margin-left: 15px;
    padding: 10px 15px;
    width: 100%;
    text-align: center;
    justify-content: center;
    background-color: #6E6E6C;
    color: var(--accent_fg);
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    transition: ease 0.2s;
    border: 1px solid #6E6E6C;
    transition-property: color, background-color;
  }
}

@media only screen and (min-width:769px) {
  .web-none {
    display: none;
  }
}

.no-products {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fbfbfb;
}
