html,
body {
  font-size: 62.5%;
}

:root {
  --text-color: #333333;
  --accent: #60a88f;
  --margin-section: 10rem;
}

body {
  font-size: 1.6rem;
  font-family: "Geom", sans-serif;

  color: var(--text-color);
  line-height: 1;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 4rem 1rem;
  z-index: 99;
  -webkit-transition: padding 0.3s;
  -o-transition: padding 0.3s;
  transition: padding 0.3s;
  max-width: 183.6rem;
}

.header.scroll {
  padding: 0;
  max-width: 100%;
}

.header__container {
  background: #fff;
  width: 100%;
  position: relative;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition:
    border-radius 0.3s,
    max-height 0.5s cubic-bezier(0, 1, 0, 1),
    -webkit-box-shadow 0.3s;
  transition:
    border-radius 0.3s,
    max-height 0.5s cubic-bezier(0, 1, 0, 1),
    -webkit-box-shadow 0.3s;
  -o-transition:
    border-radius 0.3s,
    box-shadow 0.3s,
    max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition:
    border-radius 0.3s,
    box-shadow 0.3s,
    max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition:
    border-radius 0.3s,
    box-shadow 0.3s,
    max-height 0.5s cubic-bezier(0, 1, 0, 1),
    -webkit-box-shadow 0.3s;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 10;
  max-height: 8rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#logo {
  padding-left: 2.5rem;
  z-index: 10;
}

.header__options {
  padding-right: 2.5rem;
  z-index: 10;
}

.header.scroll .header__container {
  border-radius: 0;
  -webkit-box-shadow:
    rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.header__container > nav {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__container > nav > ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
}

.header__container > nav > ul > li {
  padding: 3.2rem 1.5rem;
}

.header__container > nav > ul > li > a {
  color: var(--text-color);
  font-size: 1.4rem;
  font-weight: 900;
  position: relative;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  text-transform: uppercase;
}

.header__container > nav > ul > li > a:hover {
  color: var(--accent);
}

.header__container > nav > ul > li:not(:last-child) > a::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  right: -2rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #cccccc;
}

.header.sub > .header__container {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.menu-sub > div {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 100%;
  width: 100%;

  background-color: var(--accent);
  max-height: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  -o-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.menu-sub > div > ul {
  padding: 5rem;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [5];
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.menu-sub > div > ul > li > a {
  font-weight: 700;
  color: #fff;
  padding-bottom: 1rem;
  padding-right: 5rem;
  display: inline-block;
}

.menu-sub-child > a {
  border-bottom: 1px solid #fff;
}

.menu-sub.active > div {
  max-height: 1000rem;
}

.menu-sub-child-list {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.menu-sub-child-list > li > a {
  color: #fff;
}

.search-tgl,
.wishlist-btn {
  background: transparent;
  padding: 0;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  color: var(--text-color);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-transform: uppercase;
  text-wrap: nowrap;
}

#form-language .dropdown-toggle {
  background: transparent;
  padding: 0;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  color: var(--text-color);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-transform: uppercase;
  text-wrap: nowrap;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#form-language .dropdown-toggle .bx {
  font-size: 2.2rem;
  color: inherit;
}

#form-language .dropdown-menu > li > button {
  font-size: 1.4rem;
  color: var(--text-color);
}

.search-tgl:hover,
.wishlist-btn:hover {
  color: var(--accent);
}

.search-tgl .bx,
.wishlist-btn .bx {
  font-size: 2.2rem;
  color: inherit;
}

.header__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

.cart-toggle {
  background-color: transparent;
  padding: 0;
  border: none;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.6rem;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: var(--text-color);
  -webkit-box-shadow: none;
  box-shadow: none;
  position: relative;
}

.cart-toggle:hover {
  color: var(--accent);
}

.cart-toggle .bx {
  font-size: 2.2rem;
  color: inherit;
}

#cart-total {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #e94328;
  position: absolute;
  top: -0.8rem;
  left: 1.2rem;
}

/* Your drawer */
#cart > .side-modal,
#search > .side-modal {
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  left: unset;
  width: 40rem;
  margin: 0;
  border: none;
  border-radius: 0;
  display: block;
  overflow: hidden;
  -webkit-box-shadow: 0 0.5rem 2.5rem rgba(0, 0, 0, 0.25);
  box-shadow: 0 0.5rem 2.5rem rgba(0, 0, 0, 0.25);
  z-index: 10000;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
}

#cart.open > .side-modal,
#search.open > .side-modal {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

/* Whole panel layout */
.side-modal__panel {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background:
    radial-gradient(circle at 20% 0%, rgba(46, 164, 79, 0.12), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(31, 122, 58, 0.1), transparent 40%),
    -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#f6fbf6),
        color-stop(35%, #ffffff),
        to(#ffffff)
      );
  background:
    -o-radial-gradient(
      20% 0%,
      circle,
      rgba(46, 164, 79, 0.12),
      transparent 45%
    ),
    -o-radial-gradient(90% 10%, circle, rgba(31, 122, 58, 0.1), transparent 40%),
    -o-linear-gradient(top, #f6fbf6 0%, #ffffff 35%, #ffffff 100%);
  background:
    radial-gradient(circle at 20% 0%, rgba(46, 164, 79, 0.12), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(31, 122, 58, 0.1), transparent 40%),
    linear-gradient(180deg, #f6fbf6 0%, #ffffff 35%, #ffffff 100%);
}

/* Header */
.side-modal__header {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 1.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(1.2rem);
  backdrop-filter: blur(1.2rem);
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.side-modal__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.2rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.side-modal__title--text {
  font-size: 1.8rem;
  font-weight: 900;
}

.side-modal__title--count {
  font-size: 1.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999rem;
  background: rgba(46, 164, 79, 0.1);
  border: 0.1rem solid rgba(46, 164, 79, 0.16);
  width: 2.8rem;
  height: 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Close button */
.side-modal-close {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1rem;
  background-color: transparent;
  padding: 0;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.side-modal-close .bx {
  font-size: 2.1rem;
}

/* Scrollable body */
.side-modal__body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  overflow: auto;
  padding: 1.2rem;
}

/* Footer anchored at bottom */
.side-modal__footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 1.6rem 1.2rem;
  border-top: 0.1rem solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(1.2rem);
  backdrop-filter: blur(1.2rem);
}

.side-modal__products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.2rem;
}

/* Item card */

.side-modal__product {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 10rem 12px 1fr;
  grid-template-columns: 10rem 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 14px;
  background: #fff;
  -webkit-box-shadow: 0 10px 22px rgba(17, 24, 39, 0.06);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.06);
  -webkit-transition:
    border-color 0.12s ease,
    -webkit-transform 0.12s ease,
    -webkit-box-shadow 0.12s ease;
  transition:
    border-color 0.12s ease,
    -webkit-transform 0.12s ease,
    -webkit-box-shadow 0.12s ease;
  -o-transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    border-color 0.12s ease;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    border-color 0.12s ease;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    border-color 0.12s ease,
    -webkit-transform 0.12s ease,
    -webkit-box-shadow 0.12s ease;
  position: relative;
}

.side-modal__product--meta {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.side-modal__product--name {
  display: block;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #111;
  text-decoration: none;
  margin-bottom: 0.6rem;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  padding-right: 1.8rem;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.side-modal__product--name:hover {
  color: var(--accent);
}

.side-modal__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
}

.side-modal__product--qty {
  font-size: 1.4rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999rem;
  background: rgba(0, 0, 0, 0.05);
  border: 0.1rem solid rgba(0, 0, 0, 0.06);
}

.side-modal__product--price {
  font-size: 1.4rem;
}

.side-modal__hint {
  padding: 1rem 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.search-results {
  margin-top: 2rem;
}

/* Remove button */
.side-modal__product--remove {
  position: static;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.5rem;
  display: -ms-grid;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.04);
  border: 0.1rem solid rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0;
}

.side-modal__product--remove i {
  font-size: 1.6rem;
  line-height: 1;
}
.side-modal__block {
  border-radius: 1rem;
  padding: 1.2rem 1.3rem;
  background: rgba(0, 0, 0, 0.03);
  border: 0.1rem solid rgba(0, 0, 0, 0.06);
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.side-modal__block--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: 1.4rem;
}

.side-modal__block--row > span:first-child {
  opacity: 0.75;
  font-weight: 700;
}
.side-modal__block--row > span:last-child {
  font-weight: 900;
}

.side-modal__actions {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.side-modal__btn {
  border-radius: 1.8rem;
  padding: 1rem 1.2rem;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.8rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.08);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.side-modal__btn:hover {
  -webkit-transform: translateY(-0.2rem);
  -ms-transform: translateY(-0.2rem);
  transform: translateY(-0.2rem);
  -webkit-box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.14);
  box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.14);
  border-color: rgba(46, 164, 79, 0.28);
}

.side-modal__btn--secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #111;
}

.side-modal__btn--primary {
  background: -o-linear-gradient(315deg, #1f7a3a, #2ea44f);
  background: linear-gradient(135deg, #1f7a3a, #2ea44f);
  color: #fff;
  border-color: rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 1.8rem 4.5rem rgba(46, 164, 79, 0.25);
  box-shadow: 0 1.8rem 4.5rem rgba(46, 164, 79, 0.25);
}

.side-modal__btn--primary:hover {
  color: #fff;
}

.side-modal__btn--secondary:hover {
  color: #111;
}

.side-modal__note {
  margin-top: 1.2rem;
  font-size: 1.4rem;
  text-align: center;
}

.mini-cart__empty {
  margin: auto;
  width: 100%;
  padding: 2rem;
  text-align: center;

  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 0.1rem solid rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.1);

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

/* icon bubble */
.mini-cart__emptyIcon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.6rem;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  margin: 0 auto 1.4rem;
  background: -o-radial-gradient(
    30% 30%,
    circle,
    #ffffff,
    rgba(46, 164, 79, 0.08)
  );
  background: radial-gradient(
    circle at 30% 30%,
    #ffffff,
    rgba(46, 164, 79, 0.08)
  );
  border: 0.1rem solid rgba(46, 164, 79, 0.14);
  -webkit-box-shadow: 0 1.2rem 3rem rgba(46, 164, 79, 0.14);
  box-shadow: 0 1.2rem 3rem rgba(46, 164, 79, 0.14);
}

.mini-cart__emptyTitle {
  margin: 0.2rem 0 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.mini-cart__emptyText {
  margin: 0 auto 1.6rem;
  max-width: 34rem;
  font-size: 1.25rem;
  line-height: 1.5;
  opacity: 0.75;
}

.side-modal__body {
  scrollbar-width: thin;
  scrollbar-color: rgba(46, 164, 79, 0.45) transparent;
}

.side-modal__body::-webkit-scrollbar {
  width: 0.8rem;
}

.side-modal__body::-webkit-scrollbar-track {
  background: transparent;
  margin: 0.6rem 0;
}

.side-modal__body::-webkit-scrollbar-thumb {
  border-radius: 999rem;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(46, 164, 79, 0.35)),
    to(rgba(31, 122, 58, 0.55))
  );
  background: linear-gradient(
    180deg,
    rgba(46, 164, 79, 0.35),
    rgba(31, 122, 58, 0.55)
  );
  border: 0.2rem solid transparent;
  background-clip: content-box;
}

.side-modal__body::-webkit-scrollbar-thumb:hover {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(46, 164, 79, 0.55)),
    to(rgba(31, 122, 58, 0.75))
  );
  background: linear-gradient(
    180deg,
    rgba(46, 164, 79, 0.55),
    rgba(31, 122, 58, 0.75)
  );
}

/* input */

.side-modal__body--input {
  position: relative;
}

.side-modal__body--input > input.form-control {
  padding: 1.2rem 6rem 1.2rem 1.8rem;
  border-radius: 999rem;
  height: auto;
  font-size: 1.6rem;
  background: rgba(46, 164, 79, 0.1);
  border: 0.1rem solid rgba(46, 164, 79, 0.16);
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition:
    border-color 0.25s,
    -webkit-box-shadow 0.25s,
    -webkit-transform 0.12s;
  transition:
    border-color 0.25s,
    -webkit-box-shadow 0.25s,
    -webkit-transform 0.12s;
  -o-transition:
    box-shadow 0.25s,
    border-color 0.25s,
    transform 0.12s;
  transition:
    box-shadow 0.25s,
    border-color 0.25s,
    transform 0.12s;
  transition:
    box-shadow 0.25s,
    border-color 0.25s,
    transform 0.12s,
    -webkit-box-shadow 0.25s,
    -webkit-transform 0.12s;
}

.side-modal__body--input > input:focus {
  outline: none;
  border-color: rgba(34, 197, 94, 0.35);
}

/* button */
.side-modal__body--input > button {
  height: 100%;
  top: 50%;

  -webkit-transform: translateY(-50%);

  -ms-transform: translateY(-50%);

  transform: translateY(-50%);
  right: 0;
  width: 4.8rem;
  position: absolute;
  background-color: transparent;
  border: none;
  padding: 1.2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  font-size: 2.2rem;
}

.site-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  z-index: 999;
}

body.cart-open .site-backdrop,
body.search-open .site-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* slideshow */

.slideshow {
  position: relative;
}

.slideshow .swiper-button-next,
.slideshow .swiper-button-prev {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
  background-image: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  margin-top: 0;
}

.slideshow .swiper-button-prev::after,
.slideshow .swiper-button-next::after {
  content: "";

  border: solid black;
  border-width: 0 0.1rem 0.1rem 0;
  display: inline-block;
  padding: 0.6rem;
}

.slideshow .swiper-button-prev::after {
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  position: relative;
  left: 0.3rem;
}

.slideshow .swiper-button-next::after {
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: relative;
  right: 0.3rem;
}

.slide__small-heading {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.slideshow .swiper-pager {
  position: absolute;
  bottom: 3rem;
  right: 17rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 1rem;
  z-index: 20;
}

.slide__content {
  position: absolute;
  bottom: 11.5rem;
  right: 17rem;
  background-color: #f0f0f0;
  max-width: 45rem;
  width: 100%;
  border-radius: 1rem;
  padding: 3rem;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.slide__content > div {
  max-width: 36rem;
  margin: auto;
}

.slide__content > div > h2 {
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 2rem;
  margin-top: 0;
  color: #111;
}

.slide__content > div > a {
  font-size: 1.6rem;
  background-color: #000;
  padding: 1.5rem 3rem;
  border-radius: 999rem;
  display: inline-block;
  color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: first baseline;
  -ms-flex-align: first baseline;
  align-items: first baseline;

  width: -webkit-max-content;

  width: -moz-max-content;

  width: max-content;
}

.slide__content > div > a .bx {
  font-size: 1.8rem;
}

.slide__content > div > a:hover {
  -webkit-transform: translateY(-0.2rem);
  -ms-transform: translateY(-0.2rem);
  transform: translateY(-0.2rem);
  -webkit-box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.14);
  box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.14);
}

/* shop by category */

.categories {
  margin-top: var(--margin-section);
}

.section-heading {
  text-align: center;
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 4rem;
  margin-top: 0;

  color: transparent;
  background-image: -o-linear-gradient(
    315deg,
    var(--accent) 0%,
    var(--accent) 40%,
    #000 60%,
    #000 100%
  );
  background-image: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent) 40%,
    #000 60%,
    #000 100%
  );
  background-position: 100%;
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;

  -webkit-transition: background-position 2.4s cubic-bezier(0.25, 1, 0.5, 1);

  -o-transition: background-position 2.4s cubic-bezier(0.25, 1, 0.5, 1);

  transition: background-position 2.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.section-heading.animate-fill {
  background-position: 0;
}

.categories__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin: auto;
  max-width: 145.5rem;
  padding: 0 0.5rem;
  row-gap: 5rem;
}

.categories__list--item {
  padding: 0 0.5rem;
  width: 22.5rem;
}

.categories__list--item > a > span:nth-child(1) {
  border-radius: 50%;
  display: block;
  height: 21.5rem;
  background-repeat: no-repeat;
  background-position: center;

  background-attachment: scroll;
  background-size: cover;
  background-color: #f4f4f4;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;

  background-blend-mode: multiply;
}

.categories__list--item > a > span:nth-child(2) {
  font-size: 1.7rem;
  color: #000;
  display: block;
  margin-top: 3rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.categories__list--item > a:hover > span:nth-child(1) {
  background-color: var(--accent);
  -webkit-transform: translateY(-10px) scale(1.05);
  -ms-transform: translateY(-10px) scale(1.05);
  transform: translateY(-10px) scale(1.05);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.categories__list--item > a:hover > span:nth-child(2) {
  color: var(--accent);
}

/* bestsellers */

.homepage__products {
  background: #60a88f52;
  padding: 10rem 0;
  margin-top: var(--margin-section);
}

.homepage__products > .row {
  max-width: 148.6rem;
  margin: auto;
  padding: 0 0.8rem;
}

.product-layout {
  padding: 0 1.6rem;
}

.product-thumb > .image {
  border-radius: 2rem;
  background-color: #fff;
}

.product-thumb > .image img {
  border-radius: 2rem;
  width: 100%;
}

.product-thumb > .caption > p.product-title {
  margin: 2rem auto;
  text-align: center;
  max-width: 21.5rem;
  min-height: 4rem;
}

.product-thumb > .caption > p.product-title > a {
  font-size: 1.7rem;
  color: #000;
  line-height: 1.2;
}

.product-thumb > .caption > .price {
  text-align: center;
  font-size: 1.7rem;
  color: #000;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.product-thumb > .caption > .price > .price-old {
  text-decoration: line-through;
}

.product-buttons {
  position: absolute;
  bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.product-btn {
  width: 4.2rem;
  height: 4.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow:
    rgba(0, 0, 0, 0.12) 0px 1px 3px,
    rgba(0, 0, 0, 0.24) 0px 1px 2px;
  box-shadow:
    rgba(0, 0, 0, 0.12) 0px 1px 3px,
    rgba(0, 0, 0, 0.24) 0px 1px 2px;
  border: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition:
    background-color 0.4s,
    color 0.4s;
  -o-transition:
    background-color 0.4s,
    color 0.4s;
  transition:
    background-color 0.4s,
    color 0.4s;
}

.product-btn:hover {
  background-color: var(--accent);
  color: #fff;
}

.product-thumb:hover .product-btn {
  -webkit-animation: anim forwards 0.3s;
  animation: anim forwards 0.3s;
}

.product-thumb .product-btn:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.product-thumb .product-btn:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.product-thumb .product-btn:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.product-thumb .product-btn:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

@-webkit-keyframes anim {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes anim {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.product-btn .bx {
  font-size: 2.1rem;
}

/* container for both images */
.product-thumb .image {
  position: relative;
  overflow: hidden;
}

/* Only animate when a second image exists */
.product-image.has-hover .img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition:
    opacity 0.4s ease,
    -webkit-transform 0.4s ease;
  transition:
    opacity 0.4s ease,
    -webkit-transform 0.4s ease;
  -o-transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
}

.product-image.has-hover .img-main {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition:
    opacity 0.4s ease,
    -webkit-transform 0.4s ease;
  transition:
    opacity 0.4s ease,
    -webkit-transform 0.4s ease;
  -o-transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
}

/* Hover effect ONLY applies if .has-hover exists */
.product-thumb:hover .product-image.has-hover .img-main,
.product-layout:hover .product-image.has-hover .img-main {
  opacity: 0;
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.product-thumb:hover .product-image.has-hover .img-hover,
.product-layout:hover .product-image.has-hover .img-hover {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* brands */

#carousel0 {
  margin: var(--margin-section) 0;
}

/* products */
.featured {
  margin: var(--margin-section) 0;
}

.featured__header {
  max-width: 78rem;
  margin: auto;
  padding: 0 1rem;
}

.featured__header > span {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.featured__header > h2 {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  margin-top: 3rem;
  color: #000;
}

.featured--all {
  text-align: center;
}

.featured--all > a {
  background-color: #f0f0f0;
  padding: 1.5rem 4rem;
  color: #000;
  border-radius: 999rem;
  display: inline-block;
  font-weight: 800;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.featured--all > a:hover {
  background-color: var(--accent);
}

/* reviews */
.reviews {
  margin: var(--margin-section) auto;
  position: relative;
}

.reviews__swiper {
  max-width: 114rem;
  margin: auto;
  padding: 0 1.5rem;
}

.review-card {
  text-align: center;
}

.review-card {
  font-size: 2rem;
  line-height: 1.2;
  max-width: 75rem;
  margin: auto;
}

.review-card > span {
  font-size: 2rem;
  display: block;
  text-align: center;
  margin-top: 3.5rem;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.reviews__swiper {
  position: relative;
  padding-top: 5rem;
}

.reviews__arrow--next,
.reviews__arrow--prev {
  padding: 0;
  border: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.reviews__arrow--next .bx,
.reviews__arrow--prev .bx {
  font-size: 4.4rem;
}

.reviews__arrow--next {
  right: 0;
}

.reviews__arrow--prev {
  left: 0;
}

.reviews-top {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.reviews-top .bx {
  font-size: 3.8rem;
}

/* footer */
footer {
  margin-top: var(--margin-section);
  max-width: 185rem;
  padding: 0 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 19rem;
  margin-bottom: 3.5rem;
}

.footer__bottom {
  padding: 2.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__bottom > p {
  font-size: 2rem;
  color: #111;
  margin-bottom: 0;
}

.footer__bottom > p > a {
  color: #111;
  font-weight: 900;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.footer__bottom > p > a:hover {
  color: var(--accent);
}

.footer__column > .footer__heading {
  font-size: 2rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 1rem;
}

.footer__column > ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.footer__column > ul > li {
  padding: 1rem 0;
}

.footer__column > ul > li > a {
  color: #111;
  font-size: 2rem;
  display: inline-block;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.footer__column > ul > li > a:hover {
  color: var(--accent);
}

body:not(.is-home) {
  padding-top: 8rem;
}

.is-inner .header {
  padding: 0;
  max-width: 100%;
}

.is-inner .header__container {
  border-radius: 0;
}

/****** INNER PAGES ******/

.is-inner > .container {
  width: 100%;
}

/* breadcrumb */

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;

  padding: 1rem 2.5rem;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  margin: 0 -1.5rem;
}

/* Items */
.breadcrumb li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Separator (auto-generated) */
.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin: 0 10px;
  color: #8fa27d;
  font-size: 1.8rem;
}

.breadcrumb > li + li::before {
  display: none;
}

/* Links */
.breadcrumb a {
  color: #111;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  -webkit-transition: color 0.25s ease;
  -o-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* Home icon */
.breadcrumb li:first-child a {
  width: 34px;
  height: 34px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  background: rgba(46, 164, 79, 0.1);
  border: 0.1rem solid rgba(46, 164, 79, 0.16);
  color: #111;
  border-radius: 50%;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.breadcrumb li:first-child a:hover {
  background: #556a48;
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.mobile__nav {
  display: none;
}

/* Current page */
.breadcrumb li:last-child a {
  color: #2f3a28;
  font-weight: 600;
  pointer-events: none;
  cursor: default;
}

/* product page */
#product-product > .breadcrumb {
  margin-bottom: 0;
}

#slideshow0 .swiper-slide img {
  width: 100%;
}

/* category page */

.is-inner > .container {
  background-color: #60a88f52;
}

#ajax-filter-container {
  padding-top: 5rem;
}

.is-inner > .container #content > h1,
.is-inner > .container #ajax-filter-container > h1 {
  margin-top: 0;
  margin-bottom: 2rem;
}

.subcategories {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, 14rem);
  margin-bottom: 2rem;
  gap: 1.5rem;
}

.subcategories > div > a {
  font-size: 1.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #111;
  text-align: center;
  line-height: 1.2;
}

.subcategories > div > a > img {
  border-radius: 1.5rem;
  width: 100%;
}

.pagination__container {
  margin: 2rem auto 4rem auto;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover,
.pagination > li > a,
.pagination > li > span {
  color: var(--accent);
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.pagination > li > a,
.pagination > li > span {
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.filters__row {
  margin-bottom: 2rem;
}

/* product page */
.product__page > .row {
  margin: 5rem auto;
  max-width: 160rem;
}

.product__info > h1 {
  margin-top: 0;
  margin-bottom: 2rem;
}

.product__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 2rem;
  gap: 2rem;
}

.product__price > div > h2 {
  margin: 0;
  font-weight: 700;
  font-size: 2.4rem;
}

.product__price > div > span {
  color: #33333367;
  font-weight: 700;
  font-size: 2rem;
}

.product__info > p {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.product__bullets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin-bottom: 2rem;
}

.product__bullets > li {
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product__bullets > li > span:nth-child(1) {
  min-width: 18rem;
  display: inline-block;
}

.product__bullets > li > a {
  font-weight: 700;
  color: #333333;
}

.stock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.stock .bx {
  font-size: 2rem;
}

.stock.in-stock {
  color: green;
}

.stock.in-stock i {
  color: green;
}

.stock.out-of-stock {
  color: red;
}

.stock.out-of-stock i {
  color: red;
}

.stock-progress-wrapper {
  margin: 2.5rem 0;
}

.stock-progress-bar {
  width: 100%;
  height: 6px;
  background: #f5f5f5;
  border-radius: 5px;
  overflow: hidden;
}

.product__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.product__actions label {
  font-size: 1.4rem;
}

.product__actions #button-cart {
  height: 5rem;
  background: transparent;

  border-radius: 999rem;
  background-color: var(--accent);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex: 2;
}

.product__actions #button-cart:hover {
  background-color: #333333;
}

.product__actions #button-wishlist,
.product__actions #button-compare {
  height: 5rem;
  border-radius: 999rem;
  background-color: var(--accent);
  width: 5rem;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  gap: 0.5rem;
  font-size: 1.8rem;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.product__actions #button-wishlist .bx,
.product__actions #button-compare .bx {
  color: #fff;
  font-size: 2.4rem;
}

.product__actions #button-wishlist span,
.product__actions #button-compare span {
  display: none;
}

.product__actions #button-wishlist:hover,
.product__actions #button-compare:hover {
  background-color: #333333;
}

#input-quantity {
  border-radius: 999rem;
  font-size: 1.6rem;
  height: auto;
  font-size: 1.8rem;
  padding: 1rem 3rem;
  height: 5rem;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#paypal_button,
#googlepay_button {
  z-index: 2;
  margin: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.buttons-payments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.form-group.product__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product__actions > .share {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.product__actions > .share > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.product__images > .thumbnails > .image-additional {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}

.product__images > .thumbnails img {
  border-radius: 1rem;
  width: 100%;
}

.product__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem;
}

.product__icons > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  border-radius: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.6rem;
}

.product__icons > div .bx {
  font-size: 2.4rem;
}

.product__text {
  margin: 5rem auto;
  max-width: 160rem;
}

.product__text--container {
  margin: 0 1.5rem;
  padding: 10rem 15rem;
  background-image: url("../image/product-bg.svg");
  background-repeat: repeat;
  background-color: #60a88f99;
  border-radius: 3rem;
}

.product__text--container > h2 {
  margin-top: 0;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

#tab-description p,
#tab-description li {
  font-size: 1.8rem;
  color: #333333;
  line-height: 1.4;
}

.product__related {
  margin-top: 10rem;
}

.product__related > h3 {
  padding: 0 1.5rem;
  margin-top: 0;
  font-weight: 700;
  font-size: 2.4rem;
  margin-top: 5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

/* information page */
.information__page {
  max-width: 124rem;
  margin: auto;
}

.information__page > h1 {
  margin-top: 0;
  margin-bottom: 2rem;
}

.information__page li,
.information__page p {
  font-size: 1.8rem;
  color: #333333;
  line-height: 1.4;
}

.information__page a {
  font-weight: 700;
  color: #333333;
}

/* manufacturer list page */
.manufacturers__page {
  max-width: 124rem;
  padding: 10rem 0;
  margin: auto;
}

.manufacturers__page > h1 {
  margin-top: 0;
  margin-bottom: 2rem;
}

.manufacturers__page a {
  color: #333333;
}

/* contact page */

.contact__page {
  max-width: 124rem;
  margin: auto;
}

.contact__page > h1 {
  margin-top: 0;
  margin-bottom: 2rem;
}

.contact__page--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  margin: 3rem auto;
}

.contact__page--info > div {
  background-color: #fff;
  border-radius: 1rem;
  padding: 4rem;
  width: 33.333%;
}

.contact__page--info > div > span > .bx {
  font-size: 4rem;
}

.contact__page--info > div > h2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 2.4rem;
}

.contact__page--info > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}

.contact__page--info > div > div > a {
  color: var(--accent);
  font-size: 1.8rem;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  line-height: 1.4;
}

.contact__page--info > div > div > a:hover {
  color: var(--text-color);
}

.contact__page--form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10rem;
}

.contact__page--form > div {
  width: 50%;
}

.contact__page--form > div:nth-child(1) {
  padding-right: 10rem;
}

.contact__page--form-text > h3 {
  font-size: 3.3rem;
  margin-top: 0;
  margin-bottom: 2rem;
}

.contact__page--form-text > p {
  font-size: 2.1rem;
  line-height: 1.4;
}

.contact__page--form > div > form {
  background-color: #fff;
  border-radius: 2rem;
  padding: 5rem;
}

.contact__page--form > div > form > fieldset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}

.contact__page--form > div > form .form-group {
  margin: 0;
}

.contact__page--form > div > form label.control-label {
  font-size: 1.4rem;
  text-align: left;
  margin-bottom: 0.5rem;
  display: block;
  padding: 0;
}

.contact__page--form > div > form label.control-label + div {
  padding: 0;
}

.contact__form--send > input {
  width: 100%;
  border-radius: 999rem;
  margin-top: 2rem;
  background-color: var(--accent);
  border: none;
  padding: 1.5rem;
  height: auto;
  color: #fff;
}

.contact__page--form > div > form .text-danger {
  margin-top: 0.5rem;
}

/* general inner pages */
.is-inner > .container #content {
  padding: 10rem 1.5rem;
}

.is-inner > .container #content.product__page {
  padding: 0 1.5rem;
}

/* blog page */

.blog__page {
  max-width: 154rem;
  margin: auto;
}

.blog__page > h1 {
  margin-top: 0;
  margin-bottom: 2rem;
}

.blog__list {
  margin: 0 -1.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
}

.blog__article {
  padding: 0 1.5rem;
}

@media screen and (max-width: 1560px) {
  .header {
    padding: 1rem;
  }

  .slide__content {
    right: 5rem;
  }

  .slideshow .swiper-pager {
    right: 5rem;
  }

  #form-language .dropdown-toggle,
  .search-tgl,
  .wishlist-btn,
  .cart-toggle {
    font-size: 0;
    gap: 0;
  }

  #logo > a > img {
    max-width: 22rem;
  }

  .header__container > nav {
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    position: unset;
    width: unset;
    left: unset;
    top: unset;
  }

  .slide__small-heading {
    font-size: 1.6rem;
  }

  .slide__content > div > h2 {
    font-size: 2.4rem;
    margin-bottom: 0;
  }

  .slide__content {
    max-width: unset;
    width: unset;
  }

  #logo {
    padding-left: 1rem;
  }

  .header__options {
    padding-right: 1rem;
  }

  .menu-sub > div > ul {
    padding: 3.5rem 1.5rem;
  }
}

@media screen and (max-width: 1240px) {
  :root {
    --margin-section: 5rem;
  }

  .header {
    padding: 0;
  }

  .homepage {
    padding-top: 8rem;
  }

  .homepage__products {
    padding: 5rem 0;
  }

  .slide__small-heading {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .slide__content {
    bottom: 9rem;
  }

  .slide__content > div > h2 {
    font-size: 2.1rem;
  }

  .slideshow .swiper-button-next,
  .slideshow .swiper-button-prev {
    width: 4rem;
    height: 4rem;
  }

  .slideshow .swiper-button-prev::after,
  .slideshow .swiper-button-next::after {
    padding: 0.4rem;
  }

  .homepage__products > .row {
    max-width: 72rem;
    padding: 0 0.5rem;
  }

  .product-layout {
    padding: 0 1rem;
  }

  .footer__column {
    width: 33.333%;
  }

  .header__container {
    max-height: unset;
    border-radius: 0;
  }

  .header__container > nav {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .header__container > nav > ul > li {
    padding: 1rem;
  }

  .header__container > nav > ul > li:not(:last-child) > a::after {
    right: -2rem;
  }

  .header__container > nav > ul {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer__top {
    gap: 0;
  }

  .header__container > nav > ul > li > a {
    font-size: 1.3rem;
  }

  body:not(.is-home) {
    padding-top: 10rem;
  }

  /* product page */

  .product__text--container {
    padding: 5rem;
  }

  .product__images {
    margin-bottom: 2rem;
  }

  /* contact page */
  .contact__page--form-text > p {
    font-size: 1.8rem;
  }

  .contact__page--form-text > h3 {
    font-size: 2.6rem;
  }

  .contact__page--form > div:nth-child(1) {
    padding-right: 5rem;
  }

  .contact__page--info {
    gap: 1.5rem;
  }

  .contact__page--info > div {
    padding: 4rem 2rem;
  }
}

@media screen and (max-width: 767px) {
  .footer__column:not(:last-child) > ul {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    -o-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  }

  .footer__column:not(:last-child) > .footer__heading.active + .footer__list {
    max-height: 1000rem;
  }

  .footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 0;
  }

  .footer__bottom {
    padding: 0 0 2rem 0;
  }

  .footer__column {
    width: 100%;
  }

  .footer__bottom > p {
    font-size: 1.8rem;
  }

  .review-card {
    max-width: 64rem;
    font-size: 1.8rem;
  }

  .review-card > span {
    font-size: 1.8rem;
  }

  .reviews__swiper {
    padding: 5rem 4rem 0 4rem;
  }

  .slideshow .swiper-pager {
    display: none;
  }

  .slide__content {
    bottom: 1rem;
    right: 1rem;
    padding: 3rem 1.5rem;
  }

  .section-heading {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }

  .categories__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 1rem;
  }

  .categories__list--item {
    width: 21rem;
  }

  .categories__list--item > a > span:nth-child(1) {
    border-radius: 1.5rem;
    height: 20rem;
  }

  .categories__list--item > a > span:nth-child(2) {
    margin: 1.5rem 0;
  }

  .reviews {
    overflow: hidden;
  }

  .reviews__arrow--prev {
    left: 0.5rem;
  }

  .reviews__arrow--next {
    right: 0.5rem;
  }

  .header__container > nav {
    display: none;
  }

  #logo {
    padding-left: 0;
  }

  .header__options {
    padding: 0;
  }

  .header__container {
    padding: 0 1rem;
    height: 7rem;
    border-radius: 0;
    max-height: unset;
    -webkit-box-shadow:
      rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
      rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    box-shadow:
      rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
      rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  }

  .footer__column > .footer__heading {
    font-size: 1.8rem;
  }

  .footer__column > ul > li > a {
    font-size: 1.8rem;
  }

  .homepage {
    padding-top: 7rem;
  }

  .homepage__products > .row {
    padding: 0 1rem;
  }

  .product-thumb > .caption > p.product-title > a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-thumb > .caption > p.product-title {
    margin: 1rem 0;
    max-width: 100%;
    min-height: unset;
  }

  .mobile__nav {
    display: block;
    margin-left: 2rem;
  }

  .header__options {
    margin-left: auto;
  }

  #menu {
    min-height: unset;
    margin: 0;
    border: none;
    position: unset;
  }

  .navbar-toggle {
    padding: 0;
    border: none;
    margin: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 2.4rem;
  }

  .navbar-collapse {
    position: absolute;
    background-color: var(--accent);
    top: 7rem;
    left: 0;
    width: 100%;
  }

  .navbar-nav > li > a {
    color: #fff;
    padding: 0;
    font-size: 2rem;
  }

  .navbar-nav > li > .dropdown-menu {
    border: none;
    padding: 0;
    border-left: 2px solid #fff;
  }

  .navbar-nav > li > .dropdown-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border-left: 2px solid #fff;
    padding-left: 1rem;
    border-radius: 0;
    gap: 2rem;
    padding: 2rem;
    margin-top: 1rem;
  }

  .navbar-nav > li > .dropdown-menu ul > li > a {
    color: #fff;
    font-size: 1.8rem;
  }

  .navbar-nav > li {
    padding: 2rem;
  }

  .nav > li > a:focus,
  .nav > li > a:hover,
  .nav .open > a,
  .nav .open > a:focus,
  .nav .open > a:hover {
    color: #fff;
    background-color: transparent;
  }

  /* inner pages */

  body:not(.is-home) {
    padding-top: 7rem;
  }

  .breadcrumb {
    padding: 1rem;
  }

  #ajax-filter-container {
    padding-top: 2rem;
  }

  .subcategories {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 2rem;
    gap: 1.5rem;
    margin: 0 -0.5rem 2rem auto;
  }

  .products__row {
    padding: 0 0.5rem;
  }

  .pagination__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    margin: 0 auto 2rem auto;
  }

  .pagination__container > div {
    padding: 0;
  }

  .pagination > li:last-child > a,
  .pagination > li:last-child > span,
  .pagination > li:first-child > a,
  .pagination > li:first-child > span {
    border-radius: 0;
  }

  /* product page */
  .product__images,
  .product__info {
    padding: 0;
  }

  .product__text--container {
    margin: unset;
  }

  .product__related > h3 {
    font-size: 2.4rem;
  }

  .product__actions > .share {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .product__icons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .product__actions > .share > div.shareon {
    gap: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  /* contact page */

  .contact__page--info > div > div > a {
    font-size: 1.6rem;
  }

  .contact__page--info > div > h2 {
    font-size: 2.1rem;
    margin: 1rem auto;
  }

  .contact__page--form {
    display: block;
    margin-top: 5rem;
  }

  .contact__page--form > div:nth-child(1) {
    padding: 0;
    width: 100%;
  }

  .contact__page--form > div {
    width: 100%;
  }

  .contact__page--form > div form {
    margin-top: 2rem;
  }

  .contact__page--info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .contact__page--info > div {
    width: 100%;
  }

  .product-buttons {
    display: none;
  }

  #product-product > .breadcrumb {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 1rem;
  }

  #tab-description p,
  #tab-description li {
    font-size: 1.6rem;
  }

  .subcategories {
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
  }

  .pagination {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .pagination > li > a,
  .pagination > li > span {
    width: 3rem;
    font-size: 1.4rem;
    height: 3rem;
  }
}

@media screen and (max-width: 460px) {
  .slide__content {
    right: unset;
    bottom: unset;
    position: relative;
    padding: 2rem 1rem;
  }

  .slide__content > div {
    max-width: 100%;
  }

  .header__options {
    gap: 1rem;
  }

  .mobile__nav {
    margin-left: 1.5rem;
  }

  #logo > a > img {
    max-width: 15rem;
  }

  .slide__content > div > h2 {
    font-size: 1.9rem;
  }

  .categories__list--item {
    width: 50%;
  }

  .categories__list--item > a > span:nth-child(1) {
    height: 18rem;
  }

  .footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  #cart > .side-modal,
  #search > .side-modal {
    width: 100%;
  }

  .homepage__products > .row {
    padding: 0 0.5rem;
  }

  .product-layout {
    padding: 0 0.5rem;
  }

  .homepage__products {
    padding: 3rem 0;
  }

  :root {
    --margin-section: 3rem;
  }

  .header__container {
    height: 6rem;
    padding: 0 0.5rem;
  }

  .navbar-collapse {
    top: 6rem;
  }

  .homepage {
    padding-top: 6rem;
  }

  /* inner pages */

  body:not(.is-home) {
    padding-top: 6rem;
  }

  /* product page */

  .product__info > h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }

  .product__price {
    margin-bottom: 1rem;
    gap: 1rem;
  }

  .product__price > div > h2 {
    font-size: 2.1rem;
  }

  .product__info > p {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .stock-progress-wrapper {
    margin: 1rem 0;
  }

  .product__actions #button-wishlist,
  .product__actions #button-compare,
  .product__actions #button-cart {
    height: 4rem;
    font-size: 1.6rem;
  }

  .product__actions {
    gap: 1rem;
  }

  #input-quantity {
    height: 4rem;
  }

  .product__page > .row,
  .product__text {
    margin: 2.5rem auto;
  }

  .product__text--container {
    padding: 5rem 2.5rem;
    border-radius: 1rem;
  }

  .product__text--container > h2 {
    font-size: 2.1rem;
  }

  .product__related > h3 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
  }

  .buttons-payments {
    gap: 1rem;
  }

  #paypal_button,
  #googlepay_button {
    width: 100%;
  }

  /* information page */
  .information__page > h1 {
    font-size: 2.4rem;
  }

  .information__page li,
  .information__page p,
  .information__page a {
    font-size: 1.6rem;
  }

  /* contact page */
  .contact__page--form > div form {
    padding: 5rem 2.5rem;
  }

  .contact__page--form-text > p {
    font-size: 1.6rem;
  }

  .is-inner > .container #content {
    padding: 5rem 1.5rem;
  }

  .product__actions #button-compare,
  .product__actions #button-wishlist {
    width: 48%;
  }

  .product__actions #button-cart {
    flex: 2 1 100%;
  }
}
