/* ----------------------------------------------------------------
	Basic
-----------------------------------------------------------------*/
dl,
dt,
dd,
ol,
ul,
li {
  margin: 0;
  padding: 0;
}

::selection {
  background: #ff0004;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #ff0004; /* Firefox */
  color: #fff;
  text-shadow: none;
}

::-webkit-selection {
  background: #ff0004; /* Safari */
  color: #fff;
  text-shadow: none;
}

:active,
:focus {
  outline: none !important;
}

a:not(.button) {
  -webkit-transition: color 0.2s ease, opacity 0.2s ease;
  -moz-transition: color 0.2s ease, opacity 0.2s ease;
  -o-transition: color 0.2s ease, opacity 0.2s ease;
  -ms-transition: color 0.2s ease, opacity 0.2s ease;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 1;
}

/* ----------------------------------------------------------------
	Typography
-----------------------------------------------------------------*/
body {
  line-height: 1.5;
  color: #555;
  font-family: "Lato", sans-serif;
}

a {
  text-decoration: none !important;
  color: #ff0004;
}

a:hover {
  color: #222;
}

a img {
  border: none;
}

img {
  max-width: 100%;
}

iframe {
  width: 100%;
  border: 0 !important;
  overflow: hidden !important;
}

/* ----------------------------------------------------------------
	Basic Layout Styles
-----------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #444;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 0.5rem 0;
  font-family: "Poppins", sans-serif;
}

h5,
h6 {
  margin-bottom: 20px;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 0.875rem;
}

h6 {
  font-size: 12px;
}

h4 {
  font-weight: 600;
}

h5,
h6 {
  font-weight: bold;
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1rem;
  }
}

p,
pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset,
form {
  margin-bottom: 30px;
}

button {
  transition: all 100ms ease;
}

#main {
  min-height: 100vh;
}

#main > section:nth-child(1) {
  margin-top: 0;
}

#main > section {
  margin-top: 120px;
}

/* ----------------------------------------------------------------
	Header
-----------------------------------------------------------------*/
header {
  background-color: var(--header-bg-color);
  color: var(--header-text-color);
  width: 100%;
  padding-bottom: 0;
  z-index: 99;
}

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

.header__wrap > .header__logo {
  display: none;
  place-content: center;
}

.header__wrap .header__logo img,
.header__wrap .header__content .header-content__logo img {
  width: var(--logo-width-mobile);
}

.header__wrap .header__content {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  padding: 6px 0;
  min-height: 65px;
}

.header__wrap .header__content .drawer__toggle,
.header__wrap .header__content .header-content__logo {
  place-self: center;
}

.header__wrap .header__content .header-content__navigations {
  display: none;
  place-self: center;
}

.header__wrap .header__content .item__navigation-misc {
  display: none;
}

.header__wrap .header__content .header-content__misc {
  place-self: center end;
}

.header__content > div {
  margin: 0 10px;
}

.header-content__logo {
  display: flex;
  justify-content: center;
}

.header-content__misc {
  display: flex;
  justify-content: end;
}

.header-content__misc .misc__item {
  margin-right: 1.2rem;
  cursor: pointer;
}

#cart .cart-drawer-count {
  background-color: var(--header-text-color);
  color: var(--header-bg-color);
}

@media screen and (min-width: 992px) {
  .header__wrap .header__logo img,
  .header__wrap .header__content .header-content__logo img {
    width: var(--logo-width);
  }

  .header__wrap:is(.logo--center) {
    grid-template-rows: repeat(2, 1fr);
  }

  .header__wrap:is(.logo--center) > .header__logo {
    display: grid;
  }

  .header__wrap:is(.logo--center) .header__content {
    grid-template-columns: 1fr;
    place-items: center;
  }

  .header__wrap:is(.logo--center) .header__content .item__navigation-misc {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .header__wrap:is(.logo--center) .header__content .header-content__navigations,
  .header__wrap:is(.logo--center) .header__content .header-content__misc {
    display: none;
  }

  .header__wrap:is(.logo--center)
    .header__content
    .header-content__navigations {
    place-self: center end;
  }

  .header__wrap:is(.logo--center) .header__content .header-content__misc {
    place-self: center start;
  }

  .header__wrap:is(.logo--center) .header__content .header-content__logo {
    display: none;
  }

  .header__wrap .header__content .header-content__navigations {
    display: block;
  }

  .header-content__item {
    max-width: fit-content;
  }
}

@media screen and (max-width: 768px) {
  .header__content .drawer__toggle {
    min-width: 4rem;
  }
}

@media screen and (max-width: 576px) {
  .header__content .drawer__toggle {
    min-width: 3rem;
  }

  .header-content__misc .misc__item:last-child {
    margin-right: 0;
  }
}

/* ----------------------------------------------------------------
	Navbar Menu
-----------------------------------------------------------------*/
nav {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.menu__wrap {
  list-style: none;
  display: flex;
  height: inherit;
  justify-content: center;
  align-items: center;
  margin: 0;
  flex-wrap: wrap;
}

.menu__wrap > li {
  display: flex;
  padding-inline: 0.5rem;
  min-height: 45px;
}

.menu__wrap > li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu__item {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: all 200ms ease;
}

.menu__item:hover > a {
  opacity: 0.6;
}

.menu__list > .menu__item {
  padding: 1rem 2rem 1rem 2rem;
  width: 100%;
  transition: all 200ms ease;
}

.sub-navigation__container {
  top: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 501;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 300ms cubic-bezier(0.13, 0.15, 0.26, 0.97);
}

.menu__list > .menu__item.sub__item.active + .sub-navigation__container {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.menu.menu__list {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: scroll;
}

.menu__link {
  padding: 0.6rem 0;
  text-transform: uppercase;
  width: 100%;
  letter-spacing: 1px;
}

.menu__item.sub__item:hover > .sub-menu__container {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.menu__wrap > .menu__item.sub__item:hover > .sub-menu__container {
  margin-top: 0;
  top: 100%;
}

.sub-menu__container > .menu__item.sub__item:hover > .sub-menu__container {
  margin-top: 0;
  left: 100%;
}

.sub-menu__container {
  position: absolute;
  visibility: hidden;
  background-color: #fff;
  box-shadow: 0 13px 42px 11px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  opacity: 0;
  pointer-events: none;
  z-index: 50;
  padding: 0;
  min-width: 220px;
  width: max-content;
  transition: all 200ms cubic-bezier(0.13, 0.15, 0.26, 0.97);
}

.menu__wrap > .menu__item.sub__item > .sub-menu__container {
  top: 80%;
  left: 0;
}

.menu__item.sub__item > .sub-menu__container {
  top: -2px;
  left: 80%;
}

.sub-menu__container > .menu__item {
  padding: 10px 15px;
  width: 100%;
  min-width: max-content;
  justify-content: space-between;
  gap: 10px;
}

.hide {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}

/* ----------------------------------------------------------------
	Mobile Menu
-----------------------------------------------------------------*/
.mobile-menu__wrapper {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  z-index: -1;
  width: 300px;
}

.mobile-menu__wrapper.expanded {
  display: block;
  z-index: 99;
}

.mobile-menu__wrapper ul {
  margin: 0;
  padding-left: 0;
}

.mobile-menu {
  transition: transform 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  position: absolute;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
  display: inline-block;
  z-index: 2;
  --webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mobile-menu__main {
  --webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 55px 0;
}

.mobile-menu--close {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 55px;
  text-align: right;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
  border: 0;
}

.mobile-menu li {
  display: flex;
  justify-content: space-between;
  position: static;
}

li .mobile-menu__link {
  text-transform: uppercase;
  padding: 5%;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--header-text-color);
  display: inline-block;
  background: 0 0;
  text-align: left;
  text-decoration: none;
}

.mobile-menu__link svg {
  float: right;
}

.mobile-menu li .mobile-menu__child {
  top: 0;
  left: 0;
}

.mobile-menu__child {
  z-index: 100;
}

.mobile-menu.active {
  overflow-y: auto;
}

.mobile-menu--hidden {
  --webkit-transform: translate3d(300%, 0, 0);
  transform: translate3d(300%, 0, 0);
  overflow-y: hidden;
}

.mobile-menu__wrapper .mobile-menu__back {
  display: flex;
  justify-content: flex-start;
  width: auto;
  border-bottom: 0;
}

/* ----------------------------------------------------------------
	Cart
-----------------------------------------------------------------*/
.drawer__wrap {
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1px);
  z-index: 200;
  transition: all 300ms cubic-bezier(0.13, 0.15, 0.26, 0.97);
}

.drawer__wrap.active {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  height: 100%;
  box-shadow: 0 13px 42px 11px rgba(0, 0, 0, 0.05);
  pointer-events: all;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  z-index: 500;
  transition: all 300ms cubic-bezier(0.13, 0.15, 0.26, 0.97);
}

.drawer.drawer__cart {
  right: -100%;
}

.drawer.drawer__navigation {
  left: -100%;
  box-shadow: none;
  transition: all 200ms cubic-bezier(0.13, 0.15, 0.26, 0.97);
}

.drawer.drawer__navigation.active {
  left: 0;
}

.drawer__wrap.active .drawer.drawer__cart {
  right: 0;
  padding: 0 1rem;
}

.drawer__wrap.active .drawer.drawer__navigation {
  left: 0;
}

.drawer__title {
  width: 100%;
  max-height: 100px;
  position: relative;
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.drawer__title .btn__close {
  position: absolute;
  right: 0;
  background: 0 0;
  cursor: pointer;
  transition: all 200ms linear;
  border: none;
}

.drawer__title .btn__close:hover svg.icon {
  transform: rotate(180deg);
}

.drawer__title h2 {
  font-size: 1.125rem;
  width: 100%;
  text-align: center;
  transition: font-size 200ms ease;
}

.drawer__content {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-grow: 1;
  position: relative;
}

.drawer__content.mobile {
  flex-direction: column;
  justify-content: start;
}

.cart__empty {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.cart__empty button {
  width: fit-content;
  text-shadow: none;
}

.drawer__content .item__list {
  position: absolute;
  width: 95%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: scroll;
}

.cart__item {
  width: 100%;
  height: fit-content;
}

.item__summary {
  display: flex;
  gap: 0.5rem;
}

.item__img {
  width: 75px;
  height: 75px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
}

.item__img > img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.item__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item__action {
  display: flex;
  justify-content: end;
  gap: 0.25rem;
}

.item__quantity {
  display: flex;
  border: 1px solid #cdcdcd;
  width: 35%;
  border-radius: 10px;
}

.item__quantity input {
  border: 0;
  background-color: transparent;
  width: 100%;
  text-align: center;
}

.item__summary .item__info h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 20px;
}

.item__summary .item__info span,
.item__summary .item__info h5 {
  font-size: 0.875rem;
}

.drawer__action {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.drawer__action a {
  width: 100%;
}

.drawer__action button {
  margin: 5px 0;
}

.drawer__action .view-cart__button {
  background: 0 0;
  border: 1px solid var(--header-text-color);
  color: var(--header-text-color);
  opacity: 0.8;
}

.drawer__action .view-cart__button:hover {
  border: 1px solid var(--btn-checkout-bg-color);
  color: var(--btn-checkout-bg-color);
  opacity: 1;
}

.drawer__menu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  height: 100%;
  justify-content: start;
}

.drawer__menu .menu__wrap {
  display: grid;
  justify-content: stretch;
}

@media screen and (max-width: 576px) {
  .drawer__wrap.active .drawer.drawer__cart {
    padding: 0 !important;
  }
}

/* ----------------------------------------------------------------
	Search Bar
-----------------------------------------------------------------*/
.search-bar__wrap.expanded {
  visibility: visible;
  pointer-events: all;
  height: 100vh;
  width: 100vw !important;
  background: rgba(0, 0, 0, 50%);
  backdrop-filter: blur(1px);
}

.search-bar__wrap {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  z-index: 99;
  transition: all 0.2s ease-out;
}

.search-form__wrapper {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  height: 250px;
  background-color: var(--header-bg-color);
  z-index: 100;
}

.search__form {
  display: flex;
  justify-content: center;
  width: 100vw;
  margin-bottom: 0;
}

.search-input__wrapper {
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid var(--header-text-color);
}

.search__input {
  width: 100%;
  height: 100%;
  display: inline-block;
  margin-bottom: 0;
  border: 0;
  padding: 8px 22px;
  color: #000 !important;
}

.search__form input::placeholder,
.search__form input:focus {
  color: var(--header-text-color);
}

.bar__text {
  color: var(--announcement-text-color);
  font-size: 14px !important;
}

.btn__close {
  height: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 18px;
}

.btn__close .icon {
  transition: none !important;
}

.btn--icon {
  border: 0;
  background-color: transparent;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn__close:hover,
button#delete:hover {
  color: #ff0004;
  cursor: pointer;
}

@media screen and (min-width: 992px) {
  .search-input__wrapper {
    width: 50vw;
  }
}

@media screen and (max-width: 991px) {
  .search-input__wrapper {
    width: 80vw;
  }
}

.button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  padding: 8px 22px;
  font-size: 0.875rem;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
}

.button:hover {
  opacity: 0.6;
}

button:disabled {
  background-color: #ddd;
  color: #888;
  pointer-events: none;
  cursor: not-allowed;
}

.button--x-lg {
  padding: 9px 32px;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 34px;
}

.icon {
  height: 20px;
  width: 20px;
  transition: all 400ms ease;
}

.icon--small {
  height: 15px;
  width: 15px;
}

.breadcrumb-wrapper {
  margin: 2.5rem 0;
  display: flex;
  justify-content: end;
}

.breadcrumb-item a:hover {
  color: var(--btn-bg-color);
  text-decoration: underline !important;
}

.breadcrumb-item span {
  opacity: 0.5;
}

.breadcrumb-item::before {
  color: var(--body-color) !important;
}

.card {
  background-color: transparent;
}

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

.scroll-to-top {
  z-index: 50;
  right: 0;
  bottom: 150px;
  cursor: pointer;
  transition: all 0.2s ease-in;
}

.whatsapp-floating-button {
  background: #25d366;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  color: white;
  border-radius: 40px;
  z-index: 500;
  box-shadow: 2.8px 2.8px 2.2px rgba(0, 0, 0, 0.008),
    6.7px 6.7px 5.3px rgba(0, 0, 0, 0.012),
    12.5px 12.5px 10px rgba(0, 0, 0, 0.015),
    22.3px 22.3px 17.9px rgba(0, 0, 0, 0.018),
    41.8px 41.8px 33.4px rgba(0, 0, 0, 0.022),
    100px 100px 80px rgba(0, 0, 0, 0.03);
  transition: all 200ms ease;
}

.page__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.page__title h3 {
  font-size: 2rem;
  font-weight: bold;
}

.btn__back {
  padding: 0.5rem;
  padding-left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 200ms ease;
  cursor: pointer;
}

.btn__back:hover {
  background-color: rgba(200, 200, 200, 0.5);
}

.btn__back h3 {
  margin: 0;
  font-size: 11pt;
  font-weight: 400;
}

/* ----------------------------------------------------------------
	Footer
-----------------------------------------------------------------*/
footer {
  background-color: var(--footer-bg-color);
}

.footer__wrapper {
  padding-top: 3rem;
  margin-top: 120px;
}

.footer__content p {
  margin-bottom: 12px;
}

.footer__item-heading {
  font-family: var(--heading-font-family);
  font-size: var(--body-font-size);
  color: var(--footer-heading-color);
  letter-spacing: 1px;
  text-transform: capitalize;
}

.footer__text {
  color: var(--footer-body-color) !important;
  -webkit-text-fill-color: var(--footer-body-color);
  -webkit-opacity: 1;
}

.footer-menu__link {
  list-style: none;
  cursor: pointer;
}

.footer-menu__link-item a:hover {
  opacity: 0.6;
}

.footer__social-icons {
  list-style: none;
  display: flex;
  cursor: pointer;
}

.social__icon {
  margin-right: 12px;
}

.social__icon svg {
  fill: var(--footer-body-color);
  height: 24px;
  width: 24px;
}

.social__icon svg:hover {
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .footer__item {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* ----------------------------------------------------------------
	Featured Category
-----------------------------------------------------------------*/

section:is(.categories__slider) {
  position: relative;
  display: flex;
  min-height: 500px;
  overflow: hidden;
}

section:is(.categories__slider) .background-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.category__list {
  display: flex;
  width: 100%;
  align-items: center;
  justify-self: center;
}

.category__list.list--row {
  justify-content: center;
  margin: 0;
}

.card.category__item {
  border: none !important;
  border-radius: 0 !important;
  transition: box-shadow 0.3s ease-in-out;
}

.category__item .card-body {
  background-color: var(--btn-outline-color);
}

.category__item .card-body:hover {
  background-color: var(--btn-bg-color);
}

.category__item:hover {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.item__image img {
  height: 320px;
  width: 320px;
  object-fit: cover;
}

.item__text a {
  color: var(--btn-text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 200ms ease;
  text-transform: uppercase;
  font-size: 1rem;
  font-family: var(--heading-font-family);
}

.category__item .item__text a:hover {
  /*opacity: 0.6;*/
  text-decoration: none;
  color: var(--btn-text-color);
}

.background-wrap img,
.background-wrap source {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ----------------------------------------------------------------
	Testimonial
-----------------------------------------------------------------*/

.testimonial-list {
  padding-left: 0;
  list-style: none;
}

.testimonial-list .swiper-slide {
  height: auto !important;
}

.testimonial-container {
  display: table;
  table-layout: fixed;
  padding: 30px;
  height: 100%;
  width: 100%;
  transition: box-shadow 0.3s ease-in-out;
}

.product__card.card:hover,
.testimonial-container:hover {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-container figure {
  margin: 0;
}

.testimonial-container img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
}

.testimonial-container figcaption {
  white-space: pre-line;
}

.testimonial-content {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.testimonial-footer span {
  font-size: 14px;
  font-family: var(--body-font-family);
  color: var(--body-color);
  opacity: 0.8;
}

/* ----------------------------------------------------------------
	Question
-----------------------------------------------------------------*/
section:has(.question__wrapper) {
  margin-top: 0 !important;
}

section:has(.question__wrapper) .question__wrapper {
  padding: 50px;
}

section:has(.question__wrapper) .accordion,
section:has(.question__wrapper) .accordion-button {
  border: none !important;
  box-shadow: none !important;
}

section:has(.question__wrapper) .accordion-button,
.question__wrapper .accordion .accordion-item,
.question__wrapper .accordion {
  background-color: transparent !important;
}

.question__item .accordion-button:focus {
  box-shadow: none !important;
}

.question-item__header button,
.question-item__content {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
}

.question-item__header button {
  font-weight: 500;
}

.question-item__header button:hover {
  color: var(--btn-bg-color) !important;
}

@media screen and (max-width: 576px) {
  section:has(.question__wrapper) .question__wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ----------------------------------------------------------------
	Unique Selling Proposition
-----------------------------------------------------------------*/
section:has(.unique-selling-proposition__wrapper) {
  margin-top: 0 !important;
}

.unique-selling-proposition__icon img {
  aspect-ratio: 1/1;
  object-fit: contain;
}

.unique-selling-proposition__body .unique-selling-proposition__body-title {
  font-weight: 500;
  font-size: 1.2rem;
  font-family: var(--body-font-family);
  color: var(--body-color);
}

.unique-selling-proposition__body .unique-selling-proposition__body-content {
  font-size: 14px;
  white-space: pre-line;
}

/* ----------------------------------------------------------------
	Slider
-----------------------------------------------------------------*/

.hero__content-wrapper {
  position: absolute;
  z-index: 10;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 2.5rem;
}

.hero__content-wrapper.position--top-left {
  justify-content: start;
  align-items: start;
}

.hero__content-wrapper.position--top-center {
  justify-content: center;
  align-items: start;
}

.hero__content-wrapper.position--top-right {
  justify-content: end;
  align-items: start;
}

.hero__content-wrapper.position--center-left {
  justify-content: start;
  align-items: center;
}

.hero__content-wrapper.position--center {
  justify-content: center;
  align-items: center;
}

.hero__content-wrapper.position--center-right {
  justify-content: end;
  align-items: center;
}

.hero__content-wrapper.position--bottom-left {
  justify-content: start;
  align-items: end;
}

.hero__content-wrapper.position--bottom-center {
  justify-content: center;
  align-items: end;
}

.hero__content-wrapper.position--bottom-right {
  justify-content: end;
  align-items: end;
}

.content__typography.text-left {
  text-align: start;
}

.content__typography.text-right {
  text-align: end;
}

.content__button {
  display: flex;
}

.content__button.position--top-left,
.content__button.position--bottom-left {
  justify-content: start;
}

.content__button.position--top-center,
.content__button.position--bottom-center,
.content__button.position--center {
  justify-content: center;
}

.content__button.position--top-right,
.content__button.position--bottom-right {
  justify-content: end;
}

.image-with-text__wrapper {
  align-items: center;
}

.image-with-text__wrapper .content__typography {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.content__typography p {
  white-space: pre-line;
}

.image-hero {
  display: flex;
  position: relative;
  height: fit-content;
}

.image-hero .content__typography {
  width: 80%;
  padding-left: 3rem;
  padding-right: 3rem;
  flex-direction: column;
}

.background-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero__slider .image-hero .background-wrap img,
.hero__slider .image-hero .background-wrap source {
  object-fit: contain;
}

.hero {
  height: 750px;
  position: relative;
  background-size: 300% 100%;
  overflow: hidden;
  display: flex;
}

.hero__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.hero__loader {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #000000;
  top: 0;
  left: 0;
  z-index: 20;
}

.hero__loader.done {
  display: none;
}

.hero__player {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
}

.hero__player iframe,
.hero__player video {
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: cover;
}

.hero__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  left: -100%;
  max-width: none;
}

@media screen and (min-width: 992px) {
  .hero__content-wrapper .content__typography {
    width: 40%;
  }
}

@media screen and (min-width: 768px) {
  .hero__content-wrapper .content__typography {
    width: 60%;
  }
}

@media screen and (max-width: 576px) {
  .image-hero .content__typography {
    width: 80%;
    padding-left: 0;
    padding-right: 0;
  }
}

/******** Desktop *******/
@media screen and (min-width: 1910px) {
  .hero__content-wrapper .content__typography {
    height: auto;
  }
}

@media screen and (min-width: 1530px) {
  .hero__content-wrapper .content__typography {
    height: auto;
  }
}

@media screen and (min-width: 992px) {
  .hero__player iframe {
    width: 100%;
    height: 300%;
    left: auto;
    top: -100%;
  }
}

/******** Tablet *******/
@media screen and (min-width: 768px) {
  .hero {
    height: 750px;
  }
}

@media only screen and (max-width: 768px) {
  .hero--mobile-90vh {
    height: 90vh;
  }
}

.swiper-navigation {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  margin: 0 1rem;
  position: absolute;
  top: calc(50% - 20px);
  z-index: 2;
  border-radius: 50%;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  transition: all 200ms ease;
}

.swiper.testimonial__wrapper:hover .swiper-navigation,
.swiper.products:hover .swiper-navigation {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  margin: 0 0.25rem;
}

.swiper-navigation.next,
.slider-navigation.btn__next {
  right: 0;
}

/* ----------------------------------------------------------------
	Product Card
-----------------------------------------------------------------*/
section:is(.products__slider) .product__list {
  display: flex;
  justify-content: space-between;
}

.product__list .list-item {
  display: flex;
  height: auto;
}

.product__card.card {
  background-color: var(--bg-color);
  transition: box-shadow 0.3s ease-in-out;
  border-radius: 0 !important;
  cursor: pointer;
}

.product__card .card-body {
  padding: 0 !important;
}

.product__thumb {
  position: relative !important;
  width: 100%;
  height: fit-content;
}

.product__thumb .badge {
  position: absolute;
  z-index: 2;
  transform: translate(10px, 10px);
  padding: 0.5rem;
  letter-spacing: 1px;
}

.product__thumb:hover {
  opacity: 0.6;
  color: #000000;
  text-decoration: none !important;
}

.product__thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.product__desc {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: space-between;
}

.desc__title,
.desc__button {
  padding: 15px;
}

.desc__title .card-text,
.desc__title .card-title {
  color: var(--body-color);
}

.desc__title .card-title {
  font-size: 15px;
}

.desc__title .card-title:hover {
  opacity: 0.6;
}

.desc__title .card-text {
  font-weight: 500;
}

.desc__button button {
  background-color: var(--btn-outline-color);
}

.desc__button button:hover {
  background-color: var(--btn-bg-color);
}

.product__name {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500 !important;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-transform: capitalize;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product__price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem !important;
}

.product__price del {
  color: #888;
  font-weight: 400;
  font-size: 90%;
}

.product__price ins {
  text-decoration: none;
  font-weight: 700;
}

.btn__add-item,
.btn__product-variants {
  position: absolute;
  bottom: 15px;
  left: calc(50% - 25px);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  transition: all 200ms ease;
  transform: scale(0);
  pointer-events: none;
  visibility: hidden;
}

@media screen and (max-width: 576px) {
  section:is(.products__slider) .product__list {
    justify-content: space-between !important;
  }
}

.blog__thumb {
  aspect-ratio: 16/9;
  border-radius: 0;
  overflow: hidden;
}

.blog__thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 500ms ease;
}

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

.slider-navigation {
  position: absolute;
  z-index: 2;
  top: calc(50% - 24px);
  border-radius: 0;
  opacity: 0.7;
}

@media (min-width: 992px) {
  .drawer__toggle {
    display: none;
  }

  .misc__item#account {
    display: block;
  }

  .drawer.drawer__cart {
    right: -100%;
  }
}

@media (max-width: 991px) {
  .swiper.products .swiper-navigation {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    margin: 0 0.25rem;
  }

  .product__card .product__thumb .btn__add-item,
  .product__card .product__thumb .btn__product-variants {
    transform: scale(1);
    visibility: visible;
    pointer-events: all;
  }
}

@media (max-width: 525px) {
  .drawer.drawer__navigation {
    left: -100%;
  }
}

@media (max-width: 375px) {
  .drawer.drawer__cart {
    right: -100%;
  }

  .drawer.drawer__navigation {
    left: -100%;
  }

  .drawer__wrap.active
    .drawer.drawer__cart
    .drawer__title
    .btn__close
    svg.icon {
    transform: rotate(180deg);
  }

  .drawer__title .btn__close {
    transform: scale(0.8) translateX(-10px);
  }

  .item__quantity {
    width: 50%;
  }

  .page__title {
    margin-top: 2.5rem;
  }

  .breadcrumb-wrapper {
    margin: 0.5rem 0;
  }
}

.categories-wrapper {
  max-height: 300px;
  overflow-y: auto;
}

/* ----------------------------------------------------------------
	Rich Text
-----------------------------------------------------------------*/
.rich-text {
  overflow: hidden;
}

.rich-text ul,
.rich-text ol {
  padding-left: 2rem;
}

.rich-text h2,
.rich-text h3 {
  font-family: var(--heading-font-family);
  font-style: var(--heading-font-style);
  font-weight: var(--heading-font-weight);
  color: var(--body-color) !important;
}

.rich-text h2 {
  font-size: 1.5rem !important;
}

.rich-text h3 {
  font-size: 1.2rem !important;
}

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

.rich-text a:hover {
  opacity: 0.6;
}

.rich-text strong {
  font-weight: bold;
}

.rich-text blockquote {
  border-left: 6px solid #ccc;
  margin: 0 10px 1.5rem;
  padding: 0.5rem 1.5rem;
  quotes: "\201C""\201D""\2018""\2019";
}

.rich-text blockquote p {
  white-space: pre-line;
  font-style: italic;
}

.rich-text blockquote p:last-child {
  margin-bottom: 0;
}

.rich-text .image-style-align-left {
  max-width: 50%;
  float: left;
  margin: 0 1.5rem 2rem 0;
}

.rich-text .image-style-align-right {
  max-width: 50%;
  float: right;
  margin: 0 0 1.5rem 2rem;
}

.rich-text figcaption {
  background-color: #f7f7f7;
  padding: 0.6em;
  outline-offset: -1px;
  opacity: 0.8;
  display: flex;
  justify-content: center;
  font-size: 0.875rem;
}

.rich-text figure img {
    height: auto;
}

@media screen and (max-width: 576px) {
  .rich-text .image {
    float: none;
    max-width: 100%;
    margin: 0 0 1rem;
  }
}
