/* google fonts cdn */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* Base css start */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* fonts */
  --inter: "Inter", sans-serif;
  --SFProDisplay: "SFProDisplay";
  --SFProText: "SFProText";
  --generalSans: "General Sans";
}
body {
  color: #000;
  font-family: var(--SFProDisplay);
}
ol,
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style-type: none;
}

a,
button {
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}
a {
  text-decoration: none;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

img {
  max-width: 100%;
}

main {
  overflow: hidden;
}

.container {
  padding-inline: 16px;
  margin-inline: auto;
  max-width: 100%;
}

h1 {
  font-family: var(--inter);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
h1 strong {
  font-weight: 800;
}
h2 {
  font-size: 26px;
  line-height: 31px;
  color: #1b1c1f;
}
h3 {
  font-family: var(--SFProDisplay);
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
}
h4 {
  font-size: 20px;
  line-height: 24px;
}
h5 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}
h6 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}
.section__header {
  margin-bottom: 20px;
}
.section__header p {
  font-size: 13px;
  line-height: 21px;
  color: #323232;
  font-family: var(--inter);
  margin-top: 8px;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  color: #ffff;
  background-color: #1f70fa;
  border-radius: 8px;
  padding: 9px 34px;
  font-weight: 700;
}
.theme-btn:hover {
  background-color: #323232;
}

.mb-0 {
  margin-bottom: 0 !important;
}
/* Base css end */

/* dropdown css start */
.dropdown {
  position: relative;
}
.dropdown__menu {
  position: fixed;
  left: 16px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  max-height: 85vh;
  overflow: auto;
  background-color: #fff;
  border-radius: 6px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.dropdown__menu.active {
  opacity: 1;
  visibility: visible;
}
.dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: transparent;
  border: 0;
  font-size: 14px;
  line-height: 20px;
  position: relative;
  z-index: 20;
}
.dropdown__toggle-icon {
  width: 20px;
}
.dropdown__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 14px 11px 12px 16px;
}
.dropdown__title {
  font-size: 24px;
  line-height: 1;
  font-family: var(--SFProDisplay);
  font-weight: 600;
  margin-top: 2px;
}
.dropdown__close {
  display: flex;
  background-color: transparent;
  border: 0;
}
.dropdown__close img {
  width: 20px;
}
.dropdown__link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  color: #000;
  font-family: var(--inter);
  line-height: 1;
  padding: 0 12px 8px 12px;
  position: relative;
}
.dropdown__link-icon {
  width: 32px;
}
.dropdown__link-text {
  flex: 1;
}
.dropdown__link-chevron {
  width: 16px;
}
.dropdown__menu-list {
  display: grid;
  gap: 12px;
}
.dropdown__link:after {
  content: "";
  width: calc(100% - 56px);
  height: 1px;
  background-color: #e7e7e7;
  position: absolute;
  bottom: 0;
  right: 0;
}
.dropdown__overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 40;
}
.dropdown__overlay.active {
  opacity: 0.5;
  visibility: visible;
}
.header__category-dropdown .dropdown__toggle-text {
  display: none;
}
/* dropdown css end */

/* tab css start */
.tab__nav {
  display: flex;
  padding-inline: 14px;
  border-bottom: 1px solid #ededed;
}
.tab__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px 12px;
  background-color: transparent;
  border: 0;
  font-size: 14px;
  color: #323232;
  font-weight: 600;
  position: relative;
}
.tab__btn-icon {
  width: 20px;
}
.tab__btn-icon--active {
  display: none;
}
.tab__btn::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #1f70fa;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 2px 2px 0 0;
  opacity: 0;
  transition: all 0.3s;
}
.tab__btn.active {
  color: #1f70fa;
}
.tab__btn.active::after {
  opacity: 1;
}
.tab__btn.active .tab__btn-icon--active {
  display: block;
}
.tab__btn.active .tab__btn-icon--default {
  display: none;
}
.tab__content {
  display: none;
}
.tab__content.active {
  display: block;
}
/* tab css end */

/* breadcrumbs css start */
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  padding: 8px;
  gap: 6px;
  background-color: #f2f2f2;
  border-radius: 8px;
  flex-wrap: wrap;
}
.breadcrumbs__item {
  font-size: 14px;
  line-height: 24px;
  color: #4a5565;
  font-weight: 300;
}
.breadcrumbs__item a {
  color: inherit;
}
.breadcrumbs__item:hover a {
  color: #154fee;
}
.breadcrumbs__item.active {
  color: #0a0a0a;
  font-weight: 400;
}
/* breadcrumbs css end */

/* modal css start */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1050;
}

.modal.show {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: #04040480;
  animation: fadeIn 0.25s ease;
}

.modal-dialog {
  position: relative;
  max-width: 500px;
  width: calc(100% - 32px);
  margin: 10vh auto;
  height: calc(100vh - 20vh);
  animation: scaleIn 0.25s ease;
  display: flex;
  align-items: center;
}

.modal-content {
  background: #f4f4f4;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  position: relative;
}
.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 12px;
}

.modal-body {
  padding: 24px 12px 12px;
  overflow-y: auto;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: translateY(-15px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Prevent scroll */
body.modal-open {
  overflow: hidden;
}

.modal-close img {
  width: 20px;
}
.modal__product {
  display: flex;
  flex-wrap: wrap;
}
.product-thumb {
  width: 110px;
  height: 176px;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-intro {
  width: calc(100% - 117px);
  margin-left: auto;
  align-self: center;
}
.product-intro h6 {
  font-weight: 700;
  color: #242424;
}
.product-intro p {
  font-size: 12px;
  line-height: 20px;
  color: #6c6c6c;
  font-weight: 500;
}
.product-intro__logo {
  width: 61px;
}
.countdown {
  width: 100%;
  margin-block: 12px 24px;
}
.countdown__header {
  text-align: center;
  margin-bottom: 6px;
}
.countdown__header h3 {
  font-size: 26px;
  line-height: 31px;
  font-family: var(--SFProDisplay);
  font-weight: 800;
  color: #242424;
}
.countdown__header p {
  font-size: 14px;
  line-height: 23px;
  color: #6c6c6c;
}
.countdown__wrapper {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.countdown__item {
  text-align: center;
}
.countdown__box {
  font-size: 32px;
  line-height: 38px;
  color: #242424;
  font-weight: 800;
  padding: 14px 5px;
  position: relative;
  z-index: 1;
}
.countdown__box::before,
.countdown__box::after {
  content: "";
  width: 100%;
  height: calc(50% - 0.5px);
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0px 2px 4px 0px #80808014;
  position: absolute;
  left: 0;
  z-index: -1;
}
.countdown__box::before {
  top: 0;
}
.countdown__box::after {
  bottom: 0;
}
.countdown__label {
  display: block;
  font-size: 12px;
  line-height: 14px;
  color: #6c6c6c;
  margin-top: 6px;
}
.countdown__separator {
  font-size: 32px;
  line-height: 38px;
  color: #242424;
  font-weight: 800;
  padding-top: 14px;
}
.modal-btn {
  width: 100%;
}
.discount-tag {
  position: absolute;
  top: -5px;
  left: 40px;
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  font-weight: 900;
  padding: 5px 11px 7px;
  z-index: 1;
}
.discount-tag::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #f42b2b;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 6px 6px;
  z-index: -1;
}
.discount-tag::after {
  content: "";
  width: calc(100% + 5px);
  background-color: #c51616;
  top: 0;
  right: 0;
  position: absolute;
  height: 5px;
  z-index: -2;
  border-radius: 10px 6px 0 0;
}
/* modal css end */

/* header start */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 22px;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  z-index: 20;
}
.header__logo img {
  width: 115px;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.search {
  position: relative;
  min-width: 20px;
  min-height: 32px;
  z-index: 20;
}
.search__btn {
  background-color: transparent;
  border: 0;
  display: flex;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.search--active .search__btn {
  left: 6px;
}
.search__btn img {
  width: 20px;
}
.search__input {
  width: 0;
  height: 32px;
  color: #000;
  background-color: #fff;
  border: 1px solid #cdd2e0;
  border-radius: 50px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.search__input::placeholder {
  color: #cdd2e0;
}
.search--active .search__input {
  width: 142px;
  opacity: 1;
  visibility: visible;
  padding-inline: 34px 8px;
}
.header__action-divider {
  width: 1px;
  height: 23px;
  background-color: #cdcdcd;
}
/* header end */

/* hero section start */

.hero {
  padding-top: 70px;
  position: relative;
  z-index: 1;
  font-family: var(--inter);
}
.hero__thumb {
  margin-bottom: 8px;
}
.hero__thumb img {
  width: 100%;
}
.hero .section__header {
  text-align: center;
}
.hero__search {
  position: relative;
  margin-bottom: 17px;
}
.hero__search-input {
  width: 100%;
  height: 67px;
  background-color: #fff;
  border: 1px solid #031f6333;
  border-radius: 100px;
  padding-inline: 24px 64px;
  font-size: 14px;
  color: #323232;
  font-family: var(--inter);
}
.hero__search-input::placeholder {
  color: #323232;
  opacity: 0.2;
}
.hero__search-btn {
  display: flex;
  align-items: center;
  width: 51px;
  height: 51px;
  background-color: #0053e2;
  border: 0;
  border-radius: 50%;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
}
.hero__search-btn img {
  width: 25px;
}
.hero__info {
  display: flex;
  justify-content: center;
  gap: 36px;
}
.hero__info-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 6px;
}
.hero__info-icon {
  width: 32px;
}
.hero__info-title {
  margin-bottom: 7px;
}
.hero__info-subtitle {
  font-size: 13px;
  line-height: 16px;
  color: rgb(42, 42, 42, 0.5);
}
.hero__info-divider {
  width: 1px;
  background-color: #0000001a;
}
.hero::before {
  content: "";
  width: 100%;
  height: 780px;
  min-height: 100%;
  background-image: linear-gradient(180deg, #8ab1ff 0%, rgba(51, 25, 147, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.2;
}
.hero__gradient-bg {
  position: absolute;
  z-index: -1;
}
.hero__gradient-bg--one {
  width: 152px;
  height: 152px;
  left: -95.44px;
  top: 418.93px;
  background-color: #cd95ff;
  opacity: 0.5;
  filter: blur(60px);
}
.hero__gradient-bg--two {
  width: 129.97px;
  height: 129.97px;
  left: 333.41px;
  top: 340px;
  background-color: #fff200;
  opacity: 0.2;
  filter: blur(60px);
}
/* hero section end */

/* product section start */
.product {
  position: relative;
  /*! z-index: 20; */
  padding-block: 32px;
}
.product__cards {
  display: flex;
  gap: 12px;
  overflow: auto;
  margin-right: -16px;
  padding-right: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 32px;
  margin-bottom: -32px;
}
.product__cards::-webkit-scrollbar {
  display: none;
}
.card {
  background-color: #fff;
  border: 1px solid #f5f5f5;
  border-radius: 16px;
  box-shadow: 0px 4px 16px 0px #7f7f7f14;
  padding: 24px 8px 24px;
}
.product__card {
  flex-shrink: 0;
  width: 212px;
}
.card__thumb {
  height: 106px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__thumb img {
  max-height: 100%;
}
.card__content {
  text-align: center;
}
.card__title {
  color: #323232;
  margin-bottom: 4px;
  font-family: var(--inter);
}
.card__text {
  font-size: 14px;
  line-height: 23px;
  color: #6c6c6c;
  font-family: var(--inter);
  margin-bottom: 16px;
}

.product--top {
  padding-block: 72px 64px;
  z-index: 0;
}
.product__header {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.product__authors {
  display: none;
}
.product__header-date {
  font-family: var(--inter);
  font-size: 12px;
  line-height: 16px;
  color: #00000080;
  margin-bottom: 8px;
  text-align: center;
}
.product__header h3 {
  text-align: center;
  margin-bottom: 8px;
}
.product__header-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
}
.product__header-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.product__header-meta-icon {
  width: 28px;
}
.product__header-meta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 10px;
  line-height: 12px;
  font-family: var(--inter);
  color: #000000cc;
}
.product__header-meta-text strong {
  font-family: var(--SFProDisplay);
  font-size: 12px;
  line-height: 14px;
  color: #000;
}
.tooltip {
  position: relative;
}
.tooltip__toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: transparent;
  border: 0;
  font-size: 10px;
  line-height: 20px;
  color: #424243cc;
}
.tooltip__toggle img {
  width: 16px;
}
.tooltip__text {
  position: absolute;
  width: 194px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  line-height: 12px;
  color: #fff;
  border-radius: 8px;
  padding: 8px;
  bottom: 100%;
  margin-bottom: 12px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.tooltip__text::after {
  content: "";
  width: 20px;
  height: 32px;
  background-color: #838492;
  border: 1px solid #777888;
  border-radius: 6px;
  transform: rotate(45deg);
  position: absolute;
  bottom: -10px;
  left: 38px;
  z-index: -2;
}
.tooltip__text::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #838492;
  border: 1px solid #777888;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 8px;
  z-index: -1;
}
.tooltip__toggle:hover ~ .tooltip__text {
  opacity: 1;
  visibility: visible;
}
.product__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.product--top .product__card {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product--top .card__thumb {
  width: 144px;
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}
.product--top .card__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product--top .card__content {
  text-align: left;
  margin-bottom: 20px;
}
.product--top .card__title {
  font-size: 16px;
  line-height: 24px;
  font-family: var(--SFProDisplay);
  margin-bottom: 6px;
  font-weight: 700;
}
.product--top .card__text {
  display: none;
  font-size: 16px;
  line-height: 24px;
  color: #0a0a0a;
  font-weight: 500;
}
.card__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.card__list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 17px;
  color: #424243;
}
.card__list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card__list-icon img {
  width: 10px;
}
.product__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}
.product__cta-title {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #868686;
}
.product__cta-title img {
  width: 16px;
}
.product--top .card__btn {
  width: 100%;
}
.theme-btn--lg {
  height: 48px;
  font-size: 18px;
}
.product__availability {
  display: flex;
  align-items: start;
  gap: 4px;
  font-size: 10px;
  color: #424243;
}
.product__availability img {
  width: 64px;
}
.card__rating {
  position: absolute;
  top: 0;
  right: 0;
  padding: 22px 16px;
  background-color: #fff9f0;
  border-radius: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.card__rating-title {
  font-size: 32px;
  line-height: 24px;
  font-family: var(--generalSans);
  font-weight: 600;
  margin-bottom: 8px;
}
.card__rating-title img {
  display: none;
}
.card__rating-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 3px;
}
.card__rating-stars img {
  width: 16px;
}
.card__rating a {
  font-size: 12px;
  line-height: 14px;
  color: #696969;
}
.card__rating a:hover {
  color: #1f70fa;
}
.card__number {
  position: absolute;
  top: 74px;
  left: -5px;
  padding: 2px 10px;
  font-size: 16px;
  line-height: 18px;
  color: #194074;
  font-weight: 700;
  background-color: #f1f7ff;
  border-radius: 0 8px 8px 0;
}
.card__number::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #bdc7d5;
  clip-path: polygon(100% 100%, 0% 0%, 100% 0%, 100% 100%);
}
.card__badge {
  display: flex;
  height: 28px;
  position: absolute;
  top: -12px;
  left: -5px;
}
.card__badge-icon {
  background-color: #fba418;
  padding-inline: 16px 24px;
  display: flex;
  align-items: center;
  clip-path: polygon(100% 0%, 0% 0%, 0% 100.001%, 76.667% 100.001%, 100% 0%);
}
.card__badge-icon img {
  width: 20px;
}
.card__badge-text {
  display: flex;
  align-items: center;
  background-color: #fba418;
  padding-inline: 15px;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  margin-left: -10px;
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 13.208% 0%, 0% 100%);
  border-radius: 0 6px 6px 0;
}
.card__badge::before {
  content: "";
  width: 5px;
  height: 8px;
  background-color: #ce7f01;
  position: absolute;
  left: 0;
  top: 100%;
  clip-path: polygon(100% 100%, 0% 0%, 100% 0%, 100% 100%);
}
.card__badge--value .card__badge-icon {
  background-color: #f67468;
}
.card__badge--value .card__badge-text {
  background-color: #fff;
  border: 1px solid #e9eaee;
  color: #f67468;
}
.card__badge--value::before {
  background-color: #ce5246;
}
.card__discount {
  position: absolute;
  top: 123px;
  right: -7px;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  padding: 7px 10px 7px 14px;
  z-index: 1;
}
.card__discount::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff4848;
  clip-path: polygon(
    100% 0%,
    0% 0%,
    5.21% 50%,
    0% 100%,
    100% 100%,
    100% 100%,
    100% 91.181%,
    100% 81.815%,
    100% 72.009%,
    100% 61.869%,
    100% 51.501%,
    100% 41.014%,
    100% 30.514%,
    100% 20.106%,
    100% 9.9%,
    100% 0%
  );
  z-index: -1;
}
.card__discount::after {
  content: "";
  width: 7px;
  height: 25px;
  background-color: #eb2d2d;
  box-shadow: 0px 6px 8px 0px #5806061f;
  position: absolute;
  right: 0;
  bottom: -6px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 76%, 0% 100%, 0% 0%);
  z-index: -2;
}
/* product section end */

/* category section start */

.category__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.category__item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #000;
  font-family: var(--inter);
  padding: 16px 12px 16px 24px;
  background-color: #0101010a;
  border-radius: 16px;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  position: relative;
  z-index: 1;
}
.category__item:hover {
  background-color: #dfdcdce3;
}
.category__item-icon {
  width: 32px;
}
.category__item p {
  color: #6c6c6c;
  line-height: 23px;
  margin-top: 7px;
}
.category__item-chevron {
  width: 20px;
}
.category__item-content {
  flex: 1;
}
/* .category__item::before {
	content: '';
	width: 12px;
	height: 15px;
	border-radius: 18px;
	background-color: #007AFF;
	transform: matrix(0.1, -1, 0.8, 0.59, 0, 0);
	filter: blur(10px);
	position: absolute;
	top: 28px;
	left: 25px;
	z-index: -1;
}
.category__item::after {
	content: '';
	width: 15px;
	height: 14px;
	border-radius: 18px;
	background-color: #FFAF01;
	transform: matrix(0.04, -1, 0.95, 0.31, 0, 0);
	filter: blur(10px);
	position: absolute;
	top: 34px;
	left: 133px;
	z-index: -1;
} */

.category-page .category {
  padding-top: 77px;
  position: relative;
  z-index: 1;
}
.section__header .category__item {
  padding: 0;
  background-color: transparent;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
  gap: 6px;
  text-align: left;
}
.section__header .category__item-icon {
  width: 38px;
}
.section__header .category__item p {
  margin-top: 0;
}
.category__list--inner .category__item {
  border: 1px solid #f3f3f3;
  border-radius: 12px;
  padding: 6px;
  gap: 11px;
  background-color: #f9f9f9;
}
.category__list--inner .category__item:hover {
  background-color: #f3f3f3;
}
.category__item-icon-container {
  width: 57px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category__item-icon-container .category__item-icon {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.category__list--inner .category__item h5 {
  font-size: 14px;
  text-transform: uppercase;
}
.category__gradient-bg--one {
  width: 289px;
  height: 289px;
  background-color: #cd95ff;
  opacity: 0.5;
  filter: blur(252px);
  top: 131px;
  left: -130px;
}
.category__gradient-bg--two {
  width: 289px;
  height: 289px;
  right: -254px;
  bottom: 3px;
  background-color: #cd95ff;
  opacity: 0.5;
  filter: blur(252px);
}
.category__gradient-bg--three {
  width: 152px;
  height: 152px;
  right: 17px;
  bottom: 14px;
  background-color: #ff95b5;
  filter: blur(252px);
}
.category__gradient-bg {
  position: absolute;
  z-index: -1;
  display: none;
}

/* category section end */

/* mission section start */
.mission {
  padding-block: 18px 16px;
}
.mission__container {
  background-color: #fff;
  border: 1px solid #f5f5f5;
  border-radius: 16px;
  box-shadow: 0px 4px 16px 0px #7f7f7f14;
}
.mission .section__header {
  padding: 18px 16px 24px 18px;
  margin-bottom: 0;
}
.mission__wrapper {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--inter);
}
.mission__title {
  margin-bottom: 8px;
}
.mission__text {
  font-size: 13px;
  line-height: 21px;
  color: #6c6c6c;
  margin-bottom: 20px;
}
.mission__text:last-child {
  margin-bottom: 0;
}
.mission__thumb {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
}
.mission__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease-in-out;
}
.mission__thumb:hover img {
  transform: scale(1.1);
}
/* mission section end */

/* brands section start */
.brands__slider-container {
  position: relative;
  max-width: 1265px;
  margin-inline: auto;
}
.brands__slider-container::before,
.brands__slider-container::after {
  content: "";
  width: 138px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
}
.brands__slider-container::before {
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.brands__slider-container::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.brands__logo {
  filter: grayscale(1);
  cursor: pointer;
  transition: all 0.3s;
}
.brands__logo:hover {
  filter: grayscale(0);
}
.brands__logo--earth-hero {
  width: 84px;
}
.brands__logo--ebay {
  width: 58px;
}
.brands__logo--etsy {
  width: 53px;
}
.brands__logo--amazon {
  width: 60px;
}
.brands__logo--o-plus {
  width: 72px;
}
.brands__logo--walmart {
  width: 94px;
}
.brands__logo--bookshop {
  width: 110px;
}
.brands__logo--thrive-market {
  width: 70px;
}
.brands__slider .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}
/* brands section end */

/* newsletter section start */
.subscribe .section__header h3 {
  font-family: var(--inter);
  max-width: 206px;
}
.subscribe .section__header p {
  font-size: 16px;
  line-height: 24px;
  color: #4a5565;
}
.subscribe .section__header {
  margin-bottom: 24px;
}
.subscribe__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.subscribe__input {
  width: 100%;
  height: 60px;
  background-color: #faf6ff;
  border: 0;
  border-radius: 8px;
  padding-inline: 20px;
  font-size: 18px;
  font-family: var(--SFProText);
}
.subscribe__input::placeholder {
  color: inherit;
  opacity: 0.3;
}
.subscribe__btn {
  font-family: var(--SFProText);
  height: 60px;
  border: 0;
  font-size: 18px;
  font-weight: 500;
}
.subscribe__note {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  gap: 6px;
  opacity: 0.5;
  font-size: 12px;
  line-height: 20px;
  font-family: var(--SFProText);
}
.subscribe__note img {
  width: 16px;
}
.subscribe__decor {
  position: absolute;
}
.subscribe__decor--watch,
.subscribe__decor--laptop {
  display: none;
}
.subscribe__decor--vacuum-cleaner {
  width: 56px;
  left: 0;
  bottom: 44px;
}
.subscribe__wrapper {
  position: relative;
  z-index: 1;
  padding-block: 56px 116px;
}
.subscribe__decor--watch-2 {
  width: 45px;
  opacity: 0.2;
  bottom: 8px;
  left: 27.5%;
}
.subscribe__decor--fan {
  width: 70px;
  bottom: 0;
  right: 26%;
  opacity: 0.3;
}
.subscribe__decor--camera {
  width: 56px;
  bottom: 36px;
  right: 0;
  opacity: 0.4;
}
/* newsletter section end */

/* footer section start */
.footer {
  padding-block: 40px 32px;
  font-family: var(--SFProText);
}
.footer__widgets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 54px;
  padding-bottom: 24px;
}
.footer__widget--social {
  margin-top: 8px;
}
.footer__logo {
  display: inline-flex;
  margin-bottom: 10px;
}
.footer__logo img {
  width: 112px;
}
.footer__widget-desc {
  font-size: 14px;
  line-height: 20px;
  color: #6e6e6e;
}
.footer__widget-title {
  font-size: 20px;
  line-height: 1;
  font-family: var(--SFProDisplay);
  margin-bottom: 22px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__link {
  font-size: 14px;
  line-height: 16px;
  display: inline-block;
  color: #6e6e6e;
}
.footer__link:hover {
  color: #154fee;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-icon {
  width: 36px;
  height: 36px;
  background-color: #1e29390d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon img {
  width: 16px;
}
.social-icon:hover {
  background-color: #d0d2d7;
}
.footer__copyright {
  padding-top: 12px;
  border-top: 1px solid #f8f6f6;
  margin-inline: -16px;
  padding-inline: 16px;
  display: flex;
  flex-wrap: wrap-reverse;
  gap: 32px;
  color: #6e6e6e;
  justify-content: space-between;
}
.footer__copyright-text {
  font-size: 14px;
  line-height: 20px;
}
.footer__copyright-text--sm {
  font-size: 12px;
  line-height: 16px;
}
/* footer section end */

/* about section start */

.about {
  padding-block: 68px 24px;
}
.about .section__header {
  margin-bottom: 12px;
}
.about .section__header h3 {
  font-size: 20px;
}
.section__content-block h6 {
  margin-bottom: 20px;
}
.section__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section__content-block p {
  font-size: 16px;
  line-height: 22px;
  color: #4a5565;
  margin-bottom: 20px;
}
.section__content-block p:last-child {
  margin-bottom: 0;
}
.about__badges {
  display: flex;
  flex-wrap: wrap;
  margin-top: 48px;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.about__badge {
  width: 223px;
  display: flex;
}
.about__badge img {
  width: 100%;
}
/* about section end */

/* comparison section start */

.comparison__table-container {
  overflow: auto;
  position: relative;
  padding-left: 15px;
}
.comparison .container {
  padding-inline: 0;
}
.comparison__table th {
  min-width: 150px;
  max-width: 150px;
  text-align: left;
  padding: 14px 8px 14px 15px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  color: #0a0a0a;
  width: 150px;
}
.comparison__eyebrow {
  font-size: 12px;
  line-height: 14px;
  color: #424243;
  font-weight: 400;
  margin-bottom: 6px;
  display: block;
}
.comparison__intro {
  font-family: var(--SFProDisplay);
}
.comparison__title {
  font-size: 18px;
  line-height: 21px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 5px;
}
.comparison__year {
  display: block;
  font-size: 12px;
  line-height: 14px;
  color: #424243;
  font-weight: 400;
}
.comparison__table tr:nth-child(2n) th {
  background-color: #e2edfd;
  border-radius: 12px 0 0 12px;
}
.comparison__table {
  border: 0;
  border-collapse: collapse;
  width: 100%;
  min-width: 777px;
  table-layout: fixed;
}
.comparison__table-container::before {
  content: "";
  width: 164px;
  height: 100%;
  background-color: #f1f7ff;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: -1;
}
.comparison__product-thumb {
  width: 82px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 2px;
}
.comparison__product-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.comparison__product-title {
  font-size: 16px;
  line-height: 24px;
  color: #0a0a0a;
  margin-bottom: 10px;
}
.comparison__product-btn {
  padding-inline: 20px;
}
.comparison__table td {
  padding: 10px 8px;
  border-left: 1px solid #e2edfd;
  font-size: 13px;
  line-height: 24px;
  color: #0a0a0ab2;
}
.comparison__product {
  text-align: center;
  position: relative;
}
.comparison__table tr:nth-child(2n) td {
  background-color: #f1f7ff;
}
.comparison__table tr:nth-child(2n) td:last-child {
  border-radius: 0 12px 12px 0;
}
.comparison__table .card__discount {
  display: none;
  top: 0;
  font-size: 16px;
  padding: 8px 6px 8px 10px;
}
/* comparison section end */

/* overview section start */
.overview {
  padding-block: 54px;
}
.overview h3 {
  font-size: 20px;
  line-height: 24px;
  font-family: var(--SFProDisplay);
  margin-bottom: 12px;
}
.overview__block p {
  color: #4a5565;
  line-height: 22px;
  margin-bottom: 20px;
}
.overview__block:not(:last-child) {
  margin-bottom: 24px;
}
.overview__block p:last-child {
  margin-bottom: 0;
}
.overview__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.overview__card {
  display: flex;
  align-items: center;
  padding: 10px 14px 16px 10px;
}
.overview__card .card__thumb {
  width: 90px;
  height: 100px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.overview__card .card__content {
  text-align: left;
}
.overview__card .card__title {
  font-size: 16px;
  color: #0a0a0a;
  margin-bottom: 6px;
}
.overview__card .card__list {
  gap: 10px;
}
.overview__card .card__list li {
  gap: 8px;
  align-items: start;
  font-size: 12px;
  line-height: 14px;
}
.overview__card .card__list-icon {
  width: 18px;
  height: 18px;
  background-color: #daedde;
  border-radius: 50%;
}
.overview__card .card__list li span:last-child {
  padding-top: 2px;
}
.overview__slider .swiper-slide {
  width: 183px;
}
.overview__slider-card {
  display: flex;
  border-color: #e9eaee;
  box-shadow: 0px 0px 8px 0px #3a3a3a0f;
  flex-direction: column;
  padding: 10px 10px 24px;
  align-items: center;
}
.overview__slider-card .card__thumb {
  width: 120px;
  height: 122px;
  margin-bottom: 30px;
}
.card__subtitle {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #545454;
}
.overview__slider-card .card__title {
  font-size: 16px;
  color: #000000;
  margin-bottom: 0;
  line-height: 20px;
}
.overview__slider {
  overflow: visible;
}
/* overview section end */

/* faq section start */

.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-inline: -16px;
}
.accordion-button {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 16px 20px 20px;
  background-color: transparent;
  border: 0;
  text-align: left;
  font-family: var(--inter);
  width: 100%;
}
.accordion-item {
  background-color: #faf6ff;
}
.accordion-num {
  font-size: 44px;
  line-height: 1.2;
  color: #9d96a8;
  letter-spacing: 0.25px;
  font-weight: 700;
  order: 1;
}
.accordion-title {
  font-size: 18px;
  line-height: 28px;
  order: 3;
  width: 100%;
}
.accordion-icon {
  order: 2;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background-color: #fff;
  border-radius: 50%;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.3s;
}
.accordion-icon::after,
.accordion-icon::before {
  content: "";
  width: 14px;
  height: 2px;
  background-color: #000;
  position: absolute;
  transition: all 0.3s;
}
.accordion-icon::after {
  transform: rotate(90deg);
}
.accordion-text {
  padding: 0 16px 24px 20px;
  font-size: 13px;
  line-height: 1.4;
  color: #5a5365;
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s;
}
.accordion-item.active {
  background-color: #dcebff;
}
.accordion-item.active .accordion-num {
  color: #000;
}
.accordion-item.active .accordion-icon {
  background-color: #154fee;
}
.accordion-item.active .accordion-icon::before,
.accordion-item.active .accordion-icon::after {
  background-color: #fff;
}
.accordion-item.active .accordion-icon::after {
  transform: rotate(180deg);
}
/* faq section end */

/* contact section start */
.contact {
  padding-block: 68px 24px;
}
.contact .section__header {
  text-align: center;
  margin-bottom: 16px;
}
.form__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form {
  font-family: var(--inter);
}
.form__input-label {
  display: block;
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  color: #1b1c1f;
  margin-bottom: 8px;
}
.form__input-field {
  width: 100%;
  height: 52px;
  border: 1px solid #e5e5ef;
  background-color: #f5f6fa5c;
  border-radius: 10px;
  padding-inline: 16px;
  font-size: 16px;
  color: #1b1c1f;
  font-family: var(--inter);
}
.form__input-field::placeholder {
  color: #6c6c6c;
}
.form__input-field--textarea {
  padding-block: 12px;
  min-height: 200px;
}
.form__submit-btn {
  width: 100%;
  border: 0;
  margin-top: 16px;
}
.contact__thumb {
  display: none;
}
/* contact section end */
