*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1;
  text-rendering: optimizeSpeed;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

b,
strong {
  font-weight: bolder;
}

input[type=radio] {
  accent-color: #574696;
  cursor: pointer;
}

.breadcrumb {
  margin-top: 10px;
  margin-bottom: 20px;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 3px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  color: #000000;
}
.breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  margin-right: 3px;
  color: #000000;
}
.breadcrumb__item--current {
  color: var(--checkout-secondary, #7000FF);
  font-weight: 600;
  pointer-events: none;
}
.breadcrumb__link {
  color: inherit;
  text-decoration: none;
}
.breadcrumb__link:hover {
  color: var(--checkout-secondary, #7000FF);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 90;
}
.cart-overlay[hidden] {
  display: none;
}

.cart {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: auto 0 0 auto;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1003;
}
@media (min-width: 560px) {
  .cart {
    width: 472px;
  }
}
.cart__header {
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 99;
  height: 80px;
  padding: 20px;
  background-color: #574696;
}
.cart__header-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.cart__header-wrapper h2 {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
}
.cart__header-wrapper p {
  font-size: 9px;
  font-weight: 400;
  color: #FFFFFF;
}
.cart__header-close {
  cursor: pointer;
}
.cart__header-close:hover svg path {
  fill: #ff1919;
}
.cart__container {
  padding: 30px 15px 0;
}
@media (min-width: 560px) {
  .cart__container {
    padding: 30px 20px 0;
  }
}
.cart__content {
  flex: 1;
  overflow-y: auto;
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
  /* Webkit */
}
.cart__content::-webkit-scrollbar {
  width: 6px;
}
.cart__content::-webkit-scrollbar-track {
  background: transparent;
}
.cart__content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  background-clip: padding-box;
}
.cart__content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}
.cart__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 20px;
}
.cart__item-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  row-gap: 15px;
}
@media (min-width: 568px) {
  .cart__item-row {
    flex-wrap: nowrap;
  }
}
.cart__item-body {
  display: flex;
  width: 100%;
  gap: 10px;
}
.cart__item-image {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  object-fit: cover;
  object-position: top;
}
@media (min-width: 768px) {
  .cart__item-image {
    width: 70px;
    height: 70px;
  }
}
.cart__item-details {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cart__item-category {
  font-size: 8px;
  font-weight: 400;
  line-height: normal;
  color: #999;
}
.cart__item-name {
  font-size: 10px;
  font-weight: 900;
  line-height: 12px;
  color: #000000;
  text-transform: capitalize;
  width: 100%;
  margin-bottom: 2px;
}
@media (min-width: 560px) {
  .cart__item-name {
    width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.cart__item-price {
  display: none;
  align-items: baseline;
}
.cart__item-price--mobile {
  display: flex;
}
@media (min-width: 560px) {
  .cart__item-price {
    display: flex;
  }
  .cart__item-price--mobile {
    display: none;
  }
}
.cart__item-old {
  font-size: 8px;
  font-weight: 400;
  line-height: normal;
  color: #999;
  margin-right: 5px;
}
.cart__item-current {
  font-size: 12px;
  font-weight: 800;
  line-height: normal;
  color: var(--checkout-secondary, #7000FF);
}
.cart__item-kit {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  row-gap: 5px;
}
@media (min-width: 568px) {
  .cart__item-kit {
    align-items: flex-end;
    flex-wrap: nowrap;
    width: unset;
    gap: 0;
    position: absolute;
    bottom: 0;
  }
}
.cart__item-kit span {
  font-size: 8px;
  font-weight: 500;
  line-height: normal;
  color: #000000;
}
.cart__item-kit label {
  font-size: 8px;
  font-weight: 500;
  line-height: normal;
  color: #000000;
}
.cart__item-kit input {
  width: 12px;
  height: 12px;
  margin-right: 5px;
}
.cart__item-kit input[type=checkbox] {
  accent-color: #574696;
}
.cart__item-kit select {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 22px;
  padding: 3px 11px;
  border-radius: 5px;
  border: 1px solid #999;
  background: #FFFFFF;
  color: #000000;
  font-size: 10px;
  font-weight: 600;
  line-height: normal;
}
@media (min-width: 568px) {
  .cart__item-kit select {
    width: 95px;
    margin-left: 58px;
  }
}
.cart__item-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
  margin-right: 25px;
}
@media (min-width: 568px) {
  .cart__item-wrapper {
    align-items: flex-start;
    width: unset;
    margin-top: 5px;
    margin-right: 0;
  }
}
.cart__item-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-right: 30px;
}
.cart__item-actions a {
  width: 16px;
  height: 16px;
}
.cart__item-actions svg {
  width: 18px;
  height: 18px;
  stroke-width: 2px;
}
.cart__item-minus:hover {
  filter: brightness(0) saturate(100%) invert(41%) sepia(98%) saturate(721%) hue-rotate(321deg) brightness(72%) contrast(100%);
}
.cart__item-plus:hover svg path {
  stroke: var(--checkout-secondary, #7000FF);
}
.cart__item-qtd {
  display: flex;
  width: 43px;
  height: 30px;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  color: #000000;
  text-align: center;
  border: none;
  outline: none;
  border-radius: 5px;
  background: #f1f1f1;
  -moz-appearance: textfield;
}
.cart__item-qtd::-webkit-outer-spin-button, .cart__item-qtd::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart__item-toggle {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: absolute;
  right: 0;
  bottom: 13px;
}
@media (min-width: 568px) {
  .cart__item-toggle {
    top: 17px;
    bottom: unset;
  }
}
.cart__item-toggle svg {
  min-height: 14px;
  margin-top: 2px;
}
.cart__item-toggle[aria-expanded=true] {
  transform: rotate(90deg);
}
.cart__item-accordion {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease-in-out;
  margin-top: 15px;
}
@media (min-width: 568px) {
  .cart__item-accordion {
    margin-top: 10px;
  }
}
.cart__item-accordion ol {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 15px;
  gap: 10px;
  counter-reset: item;
}
@media (min-width: 568px) {
  .cart__item-accordion ol {
    padding-left: 30px;
  }
}
.cart__item-accordion li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 5px;
  counter-increment: item;
}
@media (min-width: 568px) {
  .cart__item-accordion li {
    gap: 10px;
  }
}
.cart__item-accordion li::before {
  content: counter(item) ".";
  position: absolute;
  left: -15px;
  top: 42%;
  color: #000000;
  font-size: 10px;
  font-weight: 500;
}
.cart__item-accordion li div {
  display: flex;
  flex-direction: column;
}
.cart__item-accordion img {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}
.cart__item-accordion h4 {
  font-size: 8px;
  font-weight: 700;
  line-height: 13px;
  color: #000000;
  width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart__item-accordion span {
  font-size: 7px;
  font-weight: 400;
  color: #999;
}
.cart__item-accordion input {
  display: flex;
  width: 44px;
  height: 25px;
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
  color: #000000;
  text-align: center;
  border: none;
  outline: none;
  border-radius: 5px;
  background: #f1f1f1;
  -moz-appearance: textfield;
  margin-right: 5px;
}
.cart__item-accordion input::-webkit-outer-spin-button, .cart__item-accordion input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart__item-accordion p {
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
  color: #000000;
  text-align: right;
}
.cart__item-discount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  font-size: 8px;
  font-weight: 600;
  line-height: normal;
  margin-top: 15px;
  gap: 5px;
}
.cart__item-discount span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 20px;
  padding: 0 8px;
  border-radius: 3px;
  color: #000000;
}
@media (min-width: 568px) {
  .cart__item-discount {
    align-items: center;
    flex-direction: row;
    width: unset;
    margin-top: 5px;
  }
  .cart__item-discount span {
    width: unset;
  }
}
.cart__item-discount .redbg {
  background: #fee5e5;
  border: 1px solid #db8c8c;
}
.cart__item-discount .redtxt {
  color: #b74040;
}
.cart__item-discount .greentxt {
  color: #3e7f55;
}
.cart__item-discount .greenbg {
  background-color: #e5feee;
  border: 1px solid #a1d4b3;
}
.cart__summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cart__subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #d8d8d8;
  padding: 5px 15px;
  font-size: 18px;
  line-height: normal;
  color: #000000;
  margin-bottom: 24px;
}
.cart__subtotal span {
  font-weight: 400;
}
.cart__subtotal strong {
  font-weight: 800;
}
.cart__coupon {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.cart__coupon-title {
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  color: #000000;
  margin-bottom: 5px;
}
.cart__coupon-form {
  display: flex;
  width: 100%;
  gap: 10px;
}
.cart__coupon-input {
  width: 100%;
  height: 40px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  color: #000000;
  background-color: #f1f1f1;
  margin-bottom: 5px;
}
.cart__coupon-input--applied {
  border: 1px solid #574696;
}
.cart__coupon-input--error {
  border: 1px solid #b74040;
}
.cart__coupon-input:hover {
  color: var(--checkout-secondary, #7000FF);
}
.cart__coupon-input:focus {
  outline: none;
}
.cart__coupon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100px;
  min-width: 100px;
  height: 40px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
  color: #fff;
}
.cart__coupon-button--apply {
  border: 1px solid #000000;
  background: #000000;
}
.cart__coupon-button--apply:hover {
  border: 1px solid var(--checkout-secondary, #7000FF);
  background-color: var(--checkout-secondary, #7000FF);
}
.cart__coupon-button--remove {
  border: 1px solid #000000;
  background: #000000;
}
.cart__coupon-button--remove:hover {
  border: 1px solid #b74040;
  background-color: #b74040;
}
.cart__coupon-feedback {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  font-weight: 400;
  line-height: normal;
  color: #000000;
  margin-bottom: 15px;
}
.cart__coupon-description {
  font-size: 10px;
}
.cart__coupon-description b {
  font-size: 10px;
  font-weight: 700;
  color: #574696;
}
.cart__coupon-description--error {
  color: #b74040;
}
.cart__coupon-discount {
  font-size: 10px;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
  color: #000000;
}
.cart__coupon-add {
  align-self: flex-end;
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 12px;
  text-decoration-line: underline;
  color: #000000;
  cursor: pointer;
}
.cart__shipping {
  display: flex;
  flex-direction: column;
}
.cart__shipping-title {
  display: flex;
  align-items: baseline;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  color: #000000;
  gap: 5px;
  margin-bottom: 5px;
}
.cart__shipping-cep {
  font-size: 9px;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  color: #666;
}
.cart__shipping-cep:hover {
  color: var(--checkout-secondary, #7000FF);
}
.cart__shipping-form {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.cart__shipping-wrapper {
  position: relative;
  flex: 1;
}
.cart__shipping-input {
  width: 100%;
  height: 40px;
  padding: 0 27px 0 20px;
  border: none;
  border-radius: 5px;
  background: #f1f1f1;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  color: #000000;
}
.cart__shipping-input:hover {
  color: var(--checkout-secondary, #7000FF);
}
.cart__shipping-input:focus {
  outline: none;
}
.cart__shipping-clear {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.cart__shipping-clear:hover * {
  filter: brightness(0) saturate(100%) invert(13%) sepia(98%) saturate(6788%) hue-rotate(1deg) brightness(112%) contrast(113%);
}
.cart__shipping-calculate {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100px;
  min-width: 100px;
  height: 40px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
  color: #FFFFFF;
  background-color: #000000;
}
.cart__shipping-calculate:hover {
  background-color: var(--checkout-secondary, #7000FF);
}
.cart__shipping-options {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cart__shipping-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}
.cart__shipping-radio {
  margin-top: 3px;
  accent-color: #574696;
  width: 11px;
  height: 11px;
  cursor: pointer;
}
.cart__shipping-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  color: #000000;
}
.cart__shipping-method {
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  line-height: normal;
  margin-left: 5px;
}
.cart__shipping-deadline {
  font-size: 8px;
  font-weight: 400;
  line-height: normal;
}
.cart__shipping-price {
  display: flex;
  font-size: 10px;
  font-weight: 700;
  line-height: normal;
}
.cart__footer {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding: 20px 15px;
  gap: 15px;
}
@media (min-width: 560px) {
  .cart__footer {
    padding: 20px;
  }
}
.cart__total {
  display: flex;
  align-self: start;
  justify-content: space-between;
  width: 100%;
  font-size: 22px;
  font-weight: 800;
  line-height: normal;
  color: #000000;
}
.cart__total--discount {
  font-size: 12px;
  font-weight: 400;
}
.cart__continue {
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
  text-decoration: underline;
  text-align: center;
  color: #000000;
}
.cart__continue:hover {
  color: var(--checkout-secondary, #7000FF);
}
.cart__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 5px;
  border: 1px solid var(--checkout-primary, #FFC700);
  background-color: var(--checkout-primary, #FFC700);
  font-size: 13px;
  font-weight: 700;
  line-height: normal;
  color: #000000;
  text-transform: uppercase;
  text-decoration: none;
}
.cart__checkout:hover {
  border: 1px solid var(--checkout-secondary, #7000FF);
  background-color: var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}

.cart--open {
  transform: translateY(0);
}
@media (min-width: 992px) {
  .cart--open {
    transform: translateX(0);
  }
}

.filter {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: #FFFFFF;
  z-index: 1004;
  overflow-y: auto;
  padding: 20px;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: block;
}
@media (min-width: 560px) {
  .filter {
    width: 90%;
    max-width: 500px;
  }
}
@media (min-width: 1250px) {
  .filter {
    position: static;
    height: auto;
    width: 300px;
    min-width: 300px;
    transform: none;
    box-shadow: none;
    overflow-y: visible;
    padding: 0;
    z-index: auto;
  }
}
.filter--open {
  transform: translateX(0);
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}
.filter--open::-webkit-scrollbar {
  width: 6px;
}
.filter--open::-webkit-scrollbar-track {
  background: transparent;
}
.filter--open::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  background-clip: padding-box;
}
.filter--open::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}
.filter__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  padding-right: 40px;
}
@media (min-width: 1250px) {
  .filter__top {
    padding: 0;
  }
}
.filter__title {
  font-size: 28px;
  font-weight: 900;
  color: #000000;
  width: 80%;
  word-break: break-word;
}
@media (min-width: 1400px) {
  .filter__title {
    font-size: 30px;
  }
}
.filter__subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  width: 95%;
}
@media (min-width: 1400px) {
  .filter__subtitle {
    font-size: 18px;
  }
}
.filter__clean {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 400;
  text-decoration: underline;
  white-space: nowrap;
  color: var(--checkout-secondary, #7000FF);
  cursor: pointer;
  margin-top: 10px;
}
.filter__clean:hover {
  color: #700069;
}
.filter__applied {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  width: 100%;
}
.filter__applied-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 10px;
  gap: 8px;
}
.filter__applied-tag {
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 5px;
  background-color: #FFFFFF;
  border: 1px solid #e5e7eb;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 400;
  color: #000000;
}
.filter__applied-tag svg {
  width: 10px;
  height: 10px;
}
.filter__applied-tag svg path {
  fill: #000000;
}
.filter__applied-tag:hover {
  background-color: #cccccc;
  border: 1px solid #666666;
}
.filter__group {
  background: #FFFFFF;
  border-top: 1px solid #e5e7eb;
  overflow: hidden;
}
.filter__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  user-select: none;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: #000000;
}
.filter__header:hover {
  color: var(--checkout-secondary, #7000FF);
}
.filter__header:hover svg path {
  fill: var(--checkout-secondary, #7000FF);
}
.filter__header svg {
  flex-shrink: 0;
  transition: transform 200ms ease;
}
.filter__header--open svg {
  transform: rotate(180deg);
}
.filter__body {
  max-height: 500px;
  overflow: hidden;
  padding: 5px 0 20px;
  opacity: 1;
  transition: max-height 300ms ease, padding 300ms ease, opacity 300ms ease;
}
.filter__body--hidden {
  max-height: 0;
  padding-bottom: 0;
  opacity: 0;
}
.filter__sizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
.filter__sizes input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.filter__sizes span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 35px;
  border-radius: 3px;
  border: 1px solid #999999;
  background-color: #FFFFFF;
  font-size: 10px;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
}
.filter__sizes span:hover {
  background-color: var(--checkout-secondary, #7000FF);
  border-color: var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.filter__sizes input:checked ~ span {
  background-color: var(--checkout-secondary, #7000FF);
  border-color: var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.filter__sizes input:focus-visible ~ span {
  outline: 1px solid var(--checkout-secondary, #7000FF);
  outline-offset: 2px;
}
.filter__size {
  height: 35px;
  border: 1px solid #999999;
  border-radius: 4px;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
  background: #FFFFFF;
  transition: border-color 150ms, background 150ms, color 150ms;
}
.filter__size:hover {
  border-color: var(--checkout-secondary, #7000FF);
}
.filter__size--active {
  background: var(--checkout-secondary, #7000FF);
  border-color: var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
  font-weight: 600;
}
.filter__check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter__check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  position: relative;
}
.filter__check-item:hover {
  color: var(--checkout-secondary, #7000FF);
}
.filter__check-item input[type=checkbox] {
  width: 19px;
  height: 19px;
  accent-color: var(--checkout-secondary, #7000FF);
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 3px;
}
.filter__check-item input[type=checkbox]:hover {
  border-color: var(--checkout-secondary, #7000FF);
}
.filter__colors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.filter__colors input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.filter__colors span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 3px;
  cursor: pointer;
}
.filter__colors input:checked ~ span {
  color: #FFFFFF;
}
.filter__colors label:has(input:checked) {
  background-color: var(--checkout-secondary, #7000FF);
}
.filter__colors label:has(input:focus-visible) {
  outline: 1px solid var(--checkout-secondary, #7000FF);
  outline-offset: 2px;
}
.filter__color-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 45px;
  border-radius: 3px;
  gap: unset;
  font-size: unset;
  font-weight: unset;
  line-height: unset;
}
.filter__color-item:hover {
  background-color: var(--checkout-secondary, #7000FF);
}
.filter__color-item:hover .filter__color-label {
  color: #FFFFFF;
}
.filter__color-item--active {
  background-color: var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.filter__color-item--active .filter__color-label {
  color: #FFFFFF;
}
.filter__color-swatch {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
}
.filter__color-swatch--amarelo {
  background-color: #ffd900;
}
.filter__color-swatch--azul {
  background-color: #2261fa;
}
.filter__color-swatch--bege {
  background-color: #e7dfb7;
}
.filter__color-swatch--branco {
  background-color: #ffffff;
}
.filter__color-swatch--cinza {
  background-color: #686868;
}
.filter__color-swatch--marrom {
  background-color: #815214;
}
.filter__color-swatch--vermelho {
  background-color: #ff0000;
}
.filter__color-swatch--preto {
  background-color: #000000;
}
.filter__color-label {
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
  color: #000000;
}
.filter__close {
  position: absolute;
  top: 18px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 5px;
  color: #000000;
  z-index: 2;
}
.filter__close:hover {
  color: #ff1919;
}
@media (min-width: 1250px) {
  .filter__close {
    display: none;
  }
}
.filter__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1003;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.filter__overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1250px) {
  .filter__overlay {
    display: none !important;
  }
}

.modal {
  display: none;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1003;
  padding: 10px;
  animation: overlayIn 0.2s ease;
}
@media (min-width: 560px) {
  .modal__overlay {
    padding: 15px;
  }
}
.modal__container {
  background: #ffffff;
  width: 100%;
  max-width: 560px;
  max-height: 95vh;
  overflow-y: auto;
  border-radius: 5px;
  position: relative;
  animation: modalIn 0.25s ease;
}
@media (min-width: 560px) {
  .modal__container {
    max-height: 90vh;
  }
}
.modal__container--dual {
  max-width: 800px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
  /* Webkit */
}
.modal__container--dual::-webkit-scrollbar {
  width: 6px;
}
.modal__container--dual::-webkit-scrollbar-track {
  background: transparent;
}
.modal__container--dual::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  background-clip: padding-box;
}
.modal__container--dual::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #000000;
  line-height: 1;
  z-index: 10;
  padding: 4px;
  transition: opacity 0.2s ease;
}
.modal__close:hover svg path {
  fill: #ff1919;
}
.modal__close.is-hidden {
  display: none;
}

@keyframes overlayIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.auth {
  box-sizing: border-box;
}
.auth__step {
  display: none;
}
.auth__step--active {
  display: block;
}
.auth__dual {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 420px;
}
@media (min-width: 750px) {
  .auth__dual {
    grid-template-columns: 1fr 1fr;
  }
}
.auth__dual::after {
  content: "";
  display: none;
  position: absolute;
  top: 46%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 95%;
  height: 1px;
  background: linear-gradient(180deg, #ffffff 0%, #cccccc 15%, #cccccc 85%, #ffffff 100%);
}
@media (min-width: 760px) {
  .auth__dual::after {
    display: block;
    top: 50%;
    left: 50%;
    right: unset;
    margin: unset;
    transform: translateY(-50%);
    width: 1px;
    height: 500px;
  }
}
.auth__dual-panel {
  padding-top: 20px;
  background-color: #FFFFFF;
}
.auth__dual-panel--login {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
}
.auth__dual-panel--login .auth__dual-subtitle {
  margin-bottom: 12px;
}
.auth__dual-panel--create {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 760px) {
  .auth__dual-panel {
    padding: 55px 0;
  }
  .auth__dual-panel--login {
    padding-left: 20px;
    padding-right: 30px;
  }
  .auth__dual-panel--login .auth__dual-subtitle {
    margin-bottom: 35px;
  }
  .auth__dual-panel--create {
    padding-left: 30px;
    padding-right: 20px;
  }
}
@media (min-width: 998px) {
  .auth__dual-panel--login {
    padding-left: 40px;
    padding-right: 60px;
  }
  .auth__dual-panel--create {
    padding-left: 60px;
    padding-right: 40px;
  }
}
.auth__dual-title {
  font-size: 26px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (min-width: 560px) {
  .auth__dual-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
}
@media (min-width: 998px) {
  .auth__dual-title {
    font-size: 30px;
  }
}
.auth__dual-title b {
  font-weight: 900;
}
.auth__dual-subtitle {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #666666;
  margin-bottom: 12px;
}
@media (min-width: 560px) {
  .auth__dual-subtitle {
    font-size: 14px;
  }
}
@media (min-width: 998px) {
  .auth__dual-subtitle {
    font-size: 16px;
  }
}
.auth__dual-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  color: #666666;
}
.auth__dual-divider::before, .auth__dual-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}
.auth__dual-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #666666;
  line-height: 1.5;
  text-align: center;
  margin-top: 15px;
}
@media (min-width: 560px) {
  .auth__dual-disclaimer {
    margin-top: 25px;
  }
}
.auth__dual-disclaimer a {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-decoration-line: underline;
  color: var(--checkout-secondary, #7000FF);
}
.auth__dual-panel--create .auth__dual-disclaimer {
  color: #666;
}
.auth__single {
  padding: 20px 15px 30px;
}
@media (min-width: 760px) {
  .auth__single {
    padding: 30px;
  }
}
@media (min-width: 998px) {
  .auth__single {
    padding: 32px 40px 40px;
  }
}
.auth__back {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  text-transform: uppercase;
  color: #666666;
  cursor: pointer;
  padding: 0;
  float: right;
  margin-bottom: 22px;
  transition: opacity 0.2s ease;
}
@media (min-width: 760px) {
  .auth__back {
    font-size: 18px;
  }
}
.auth__back:hover {
  opacity: 0.5;
}
.auth__title {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 12px;
  clear: both;
}
@media (min-width: 560px) {
  .auth__title {
    font-size: 28px;
  }
}
@media (min-width: 998px) {
  .auth__title {
    font-size: 30px;
  }
}
.auth__title--2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.auth__title b {
  font-weight: 900;
}
.auth__subtitle {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #666666;
  line-height: 18px;
  margin-bottom: 12px;
}
.auth__subtitle-highlight {
  font-size: 18px;
  color: var(--checkout-secondary, #7000FF);
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 20px;
}
@media (min-width: 560px) {
  .auth__subtitle {
    font-size: 16px;
    margin-bottom: 35px;
  }
  .auth__subtitle-highlight {
    font-size: 20px;
  }
}
.auth__form-group {
  margin-bottom: 10px;
}
@media (min-width: 760px) {
  .auth__form-group {
    margin-bottom: 20px;
  }
}
.auth__form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: normal;
  color: #000000;
  margin-bottom: 5px;
}
@media (min-width: 560px) {
  .auth__form-label {
    font-size: 15px;
  }
}
.auth__form-input {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: #666666;
  transition: border-color 0.2s ease;
  outline: none;
}
@media (min-width: 560px) {
  .auth__form-input {
    height: 60px;
  }
}
.auth__form-input::placeholder {
  color: #666666;
}
.auth__form-input:focus {
  border-color: #000000;
}
.auth__form-input--error {
  border-color: #e53e3e;
}
.auth__form-error {
  font-size: 14px;
  color: #e53e3e;
  margin-top: 4px;
  display: none;
}
.auth__form-error.is-visible {
  display: block;
}
.auth__btn {
  display: block;
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
  text-align: center;
}
@media (min-width: 560px) {
  .auth__btn {
    height: 60px;
  }
}
.auth__btn--primary {
  background-color: var(--checkout-primary, #FFC700);
  border: 1px solid var(--checkout-primary, #FFC700);
  color: #000000;
  height: 50px;
}
.auth__btn--primary:hover {
  background: var(--checkout-secondary, #7000FF);
  border: 1px solid var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.auth__btn--secondary {
  background-color: var(--checkout-primary, #FFC700);
  border: 1px solid var(--checkout-primary, #FFC700);
  color: #000000;
}
.auth__btn--secondary:hover {
  background: var(--checkout-secondary, #7000FF);
  border: 1px solid var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.auth__btn--dark {
  background-color: #FFFFFF;
  border: 1px solid #000000;
  color: #000000;
}
.auth__btn--dark:hover {
  background-color: var(--checkout-secondary, #7000FF);
  border: 1px solid var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.auth__btn--outline {
  background: transparent;
  border: 1px solid #000000;
  color: #000000;
}
.auth__btn--outline:hover {
  background: #f5f5f5;
}
.auth__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.auth__send-label {
  font-size: 13px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
  display: block;
}
@media (min-width: 560px) {
  .auth__send-label {
    padding: 15px;
  }
}
.auth__send-methods {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.auth__send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  border: 1px solid #000000;
  border-radius: 5px;
  background: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: normal;
  color: #000000;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.auth__send-btn:hover, .auth__send-btn--active {
  background: var(--checkout-secondary, #7000FF);
  border: 1px solid var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.auth__otp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 15px 0 8px;
}
.auth__otp-input {
  flex: 1;
  aspect-ratio: 1;
  max-width: 45px;
  border: 1px solid #999999;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: #000000;
  outline: none;
  transition: border-color 0.2s ease;
}
.auth__otp-input:focus {
  border-color: var(--checkout-secondary, #7000FF);
}
@media (min-width: 560px) {
  .auth__otp-input-input {
    max-width: 60px;
    font-size: 25px;
  }
}
@media (min-width: 760px) {
  .auth__otp-input {
    margin: 28px 0 8px;
  }
  .auth__otp-input-input {
    max-width: 72px;
    font-size: 30px;
  }
}
.auth__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 14px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  color: #666666;
}
.auth__divider::before, .auth__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e8e8e8;
}
.auth__link-btn {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
  color: #000000;
  text-decoration: underline;
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: center;
  transition: opacity 0.2s ease;
}
.auth__link-btn:hover {
  color: var(--checkout-secondary, #7000FF);
}
.auth__forgot {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
  text-decoration: underline;
  color: #000000;
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 15px;
  width: 100%;
  transition: opacity 0.2s ease;
}
.auth__forgot:hover {
  color: var(--checkout-secondary, #7000FF);
}
.auth__disclaimer {
  font-size: 11px;
  font-weight: 400;
  line-height: 18px;
  color: #999999;
  text-align: justify;
  margin: 35px 0 20px;
}
@media (min-width: 560px) {
  .auth__disclaimer {
    font-size: 12px;
  }
}
@media (min-width: 998px) {
  .auth__disclaimer {
    font-size: 14px;
  }
}
.auth__disclaimer--2 {
  margin: 15px 0 55px;
}
.auth__success-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #666666;
  margin-bottom: 35px;
}

.discount {
  padding: 30px 20px 30px;
}
@media (min-width: 560px) {
  .discount {
    padding: 50px 30px 32px;
  }
}
@media (min-width: 998px) {
  .discount {
    padding: 70px 40px 32px;
  }
}
.discount__title {
  font-size: 26px;
  font-weight: 400;
  line-height: 30px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 5px;
}
@media (min-width: 560px) {
  .discount__title {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (min-width: 998px) {
  .discount__title {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (min-width: 1400px) {
  .discount__title {
    font-size: 40px;
    line-height: 44px;
  }
}
.discount__title b {
  font-weight: 900;
}
.discount__subtitle {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #666666;
  margin-bottom: 15px;
}
@media (min-width: 560px) {
  .discount__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
@media (min-width: 998px) {
  .discount__subtitle {
    font-size: 16px;
  }
}
.discount__field {
  margin-bottom: 10px;
}
@media (min-width: 560px) {
  .discount__field {
    margin-bottom: 15px;
  }
}
.discount__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: normal;
  color: #000000;
  margin-bottom: 8px;
}
@media (min-width: 560px) {
  .discount__label {
    font-size: 15px;
  }
}
.discount__radio-group {
  display: flex;
  align-items: center;
  gap: 23px;
}
.discount__radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  color: #000000;
  cursor: pointer;
}
@media (min-width: 560px) {
  .discount__radio {
    font-size: 16px;
  }
}
.discount__radio input[type=radio] {
  width: 16px;
  height: 16px;
}
.discount__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.discount__check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  color: #666666;
  cursor: pointer;
}
@media (min-width: 560px) {
  .discount__check {
    font-size: 14px;
  }
}
@media (min-width: 998px) {
  .discount__check {
    font-size: 16px;
  }
}
.discount__check input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #574696;
  cursor: pointer;
  flex-shrink: 0;
}
.discount__disclaimer {
  font-size: 11px;
  font-weight: 400;
  color: #666666;
  text-align: center;
  margin-top: 15px;
}
@media (min-width: 560px) {
  .discount__disclaimer {
    font-size: 12px;
  }
}
@media (min-width: 998px) {
  .discount__disclaimer {
    font-size: 13px;
  }
}
.discount__disclaimer a {
  color: var(--checkout-secondary, #7000FF);
  font-weight: 600;
  text-decoration: underline;
}

.choose {
  position: fixed;
  z-index: 1001;
  background: #FFFFFF;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 360px;
  max-width: calc(100vw - 30px);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}
.choose.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.choose__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s;
}
.choose__overlay.active {
  visibility: visible;
  opacity: 1;
}
.choose__content {
  padding: 30px;
  position: relative;
}
.choose__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.choose__close:hover {
  filter: brightness(0) saturate(100%) invert(41%) sepia(98%) saturate(721%) hue-rotate(321deg) brightness(72%) contrast(100%);
}
.choose__title {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 15px;
}
.choose__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.choose__size input {
  display: none;
}
.choose__size span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 35px;
  border: 1px solid #999;
  border-radius: 3px;
  background-color: #FFFFFF;
  font-size: 10px;
  font-weight: 600;
  line-height: normal;
  color: #000000;
  cursor: pointer;
  transition: border-color 150ms, background 150ms, color 150ms;
}
.choose__size span:hover {
  border-color: var(--checkout-secondary, #7000FF);
  background-color: var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.choose__size input:checked + span {
  background-color: var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
  border-color: var(--checkout-secondary, #7000FF);
}
.choose__size--unavailable span {
  border-color: #cccccc;
  color: #cccccc;
  cursor: not-allowed;
}
.choose__size--unavailable span:hover {
  border-color: #cccccc;
  background-color: transparent;
  color: #cccccc;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}
@media (min-width: 760px) {
  .pagination {
    gap: 46px;
  }
}
.pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: #000000;
  text-decoration: underline;
}
@media (min-width: 560px) {
  .pagination__btn {
    font-size: 16px;
  }
}
@media (min-width: 998px) {
  .pagination__btn {
    font-size: 18px;
  }
}
.pagination__btn:hover {
  color: var(--checkout-secondary, #7000FF);
}
.pagination__btn--prev.disabled, .pagination__btn--next.disabled {
  color: #999;
  pointer-events: none;
}
.pagination__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.pagination__page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 39px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  color: #000000;
  text-decoration: none;
  transition: border-color 150ms, background 150ms, color 150ms;
}
@media (min-width: 560px) {
  .pagination__page {
    width: 40px;
    height: 44px;
    font-size: 18px;
  }
}
@media (min-width: 998px) {
  .pagination__page {
    width: 50px;
    height: 54px;
    font-size: 20px;
  }
}
.pagination__page:hover {
  border: 1px solid var(--checkout-secondary, #7000FF);
}
.pagination__page--active {
  background: var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.pagination__ellipsis {
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 17px;
  height: 30px;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  color: #000000;
}

.announcement {
  display: flex;
  width: 100%;
  height: 50px;
  position: relative;
  background: #f1f1f1;
}
.announcement__container {
  display: flex;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}
@media (min-width: 560px) {
  .announcement__container {
    padding: 0 20px;
  }
}
@media (min-width: 998px) {
  .announcement__container {
    padding: 0 30px;
  }
}
.announcement__slider {
  height: 100%;
}
.announcement__arrow:hover svg path {
  fill: var(--checkout-secondary, #7000FF);
}
.announcement .keen-slider__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.announcement .keen-slider__slide p {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  color: #000000;
  text-align: center;
  padding: 0 30px;
}
@media (min-width: 560px) {
  .announcement .keen-slider__slide p {
    padding: 0 10px;
  }
}
.announcement .keen-slider__slide a {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  color: #000000;
}
.announcement .keen-slider__slide a:hover {
  color: var(--checkout-secondary, #7000FF);
}
@media (min-width: 560px) {
  .announcement .keen-slider__slide p,
  .announcement .keen-slider__slide a {
    font-size: 14px;
    padding: 0;
  }
}
@media (min-width: 1900px) {
  .announcement {
    padding: 0 240px;
  }
}

.department {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 80px;
}
.department__slider {
  height: 100%;
  width: 100%;
}
.department .keen-slider__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 10px;
}
.department .keen-slider__slide a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: ease-in-out 0.2s;
}
.department .keen-slider__slide a:hover {
  transform: scale(1.02);
}
.department .keen-slider__slide img {
  width: 124px;
  height: 124px;
  object-fit: cover;
  border-radius: 150px;
  background-color: #666;
}
@media (min-width: 360px) {
  .department .keen-slider__slide img {
    width: 144px;
    height: 144px;
  }
}
@media (min-width: 420px) {
  .department .keen-slider__slide img {
    width: 184px;
    height: 184px;
  }
}
@media (min-width: 560px) {
  .department .keen-slider__slide img {
    width: 160px;
    height: 160px;
  }
}
@media (min-width: 660px) {
  .department .keen-slider__slide img {
    width: 184px;
    height: 184px;
  }
}
@media (min-width: 760px) {
  .department .keen-slider__slide img {
    width: 164px;
    height: 164px;
  }
}
@media (min-width: 998px) {
  .department .keen-slider__slide img {
    width: 174px;
    height: 174px;
  }
}
@media (min-width: 1200px) {
  .department .keen-slider__slide img {
    width: 214px;
    height: 214px;
  }
}
@media (min-width: 1400px) {
  .department .keen-slider__slide img {
    width: 244px;
    height: 244px;
  }
}
@media (min-width: 1900px) {
  .department .keen-slider__slide img {
    width: 264px;
    height: 264px;
  }
}
.department .keen-slider__slide h3 {
  position: absolute;
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  line-height: 24px;
  text-transform: uppercase;
}
@media (min-width: 560px) {
  .department .keen-slider__slide h3 {
    font-size: 19px;
  }
}
@media (min-width: 998px) {
  .department .keen-slider__slide h3 {
    font-size: 20px;
  }
}

.header {
  display: block;
  background-color: #000000;
}
.header__top {
  display: none;
  height: 50px;
  font-size: 12px;
  border-bottom: 1px solid #202020;
}
@media (min-width: 998px) {
  .header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.header__top-numero {
  display: flex;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 400;
  margin-left: 5px;
  gap: 5px;
}
.header__top-numero:hover {
  color: var(--checkout-primary, #FFC700);
}
.header__top-numero:hover svg path {
  fill: var(--checkout-primary, #FFC700);
}
.header__top ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.header__top ul li {
  position: relative;
}
.header__top ul a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
}
.header__top ul a:hover {
  color: var(--checkout-primary, #FFC700);
}
.header__top ul a:hover svg path {
  fill: var(--checkout-primary, #FFC700);
}
.header__top ul button {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}
.header__top ul button:hover {
  color: var(--checkout-primary, #FFC700);
}
.header__top-socials {
  display: flex;
  gap: 15px;
  margin-left: 5px;
}
.header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.header__main-logo {
  width: 180px;
}
@media (min-width: 560px) {
  .header__main-logo {
    width: 240px;
  }
}
.header__main-container {
  display: none;
}
@media (min-width: 998px) {
  .header__main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
}
@media (min-width: 1400px) {
  .header__main-container {
    gap: 30px;
  }
}
.header__main-container ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.header__main-container ul a {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
}
.header__main-container ul a:hover {
  color: var(--checkout-primary, #FFC700);
}
.header__main-container ul a:hover svg path {
  fill: var(--checkout-primary, #FFC700);
}
.header__main-wrapper {
  display: none;
}
@media (min-width: 998px) {
  .header__main-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
}
@media (min-width: 1400px) {
  .header__main-wrapper {
    gap: 30px;
  }
}
.header__main-wrapper form {
  width: 180px;
  height: 48px;
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  position: relative;
}
.header__main-wrapper form label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.header__main-wrapper form input {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  padding: 0 33px 0 15px;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  outline: none;
}
.header__main-wrapper form input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.header__main-wrapper form button {
  position: absolute;
  right: 15px;
  top: 15px;
}
.header__main-wrapper form button:hover svg path {
  fill: var(--checkout-secondary, #7000FF);
}
.header__main-wrapper a:hover svg path {
  fill: var(--checkout-primary, #FFC700);
}
.header__main-cart {
  color: #FFFFFF;
  position: relative;
}
.header__main-cart svg {
  width: 26px;
  height: 28px;
}
.header__main-cart:hover svg path {
  stroke: var(--checkout-primary, #FFC700);
}
.header__main-cart span {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--checkout-primary, #FFC700);
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 998px) {
  .header__main-cart svg {
    width: 30px;
    height: 32px;
  }
  .header__main-cart span {
    top: -10px;
    right: -10px;
    width: 22px;
    height: 22px;
  }
}
.header__dropdown {
  position: relative;
}
.header__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__dropdown-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  min-width: 250px;
  gap: 10px;
  background-color: #FFFFFF;
  border-radius: 0 0 5px 5px;
  padding: 30px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
.header__dropdown-menu li a {
  color: #000000;
}
.header__dropdown-menu li a:hover {
  color: var(--checkout-secondary, #7000FF);
}
.header__dropdown:hover .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
@media (min-width: 998px) {
  .mobile {
    display: none;
  }
}
.mobile__search {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  z-index: 10001;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile__search.active {
  opacity: 1;
  pointer-events: all;
}
.mobile__search-content {
  display: flex;
  justify-content: center;
  position: relative;
}
.mobile__search-content button {
  width: 40px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
}
.mobile__search input {
  width: 100%;
  height: 60px;
  padding: 0 40px 0 15px;
  font-size: 14px;
  border-radius: 5px;
  border: none;
  outline: none;
}
.mobile__search-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10002;
}
.mobile__search-close span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #FFFFFF;
  border-radius: 999px;
  top: 50%;
  left: 0;
}
.mobile__search-close span:first-child {
  transform: rotate(45deg);
}
.mobile__search-close span:last-child {
  transform: rotate(-45deg);
}
.mobile__search-trigger {
  cursor: pointer;
}
.mobile__search-trigger svg {
  width: 22px;
  height: 22px;
}
.mobile__hamburger {
  position: relative;
  z-index: 1003;
  width: 30px;
  height: 25px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 998px) {
  .mobile__hamburger {
    display: none;
  }
}
.mobile__hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.mobile__hamburger.active {
  height: 21px;
}
.mobile__hamburger.active span {
  height: 3px;
  border-radius: 999px;
}
.mobile__hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.mobile__hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.mobile__menu {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  z-index: 1000;
  transform: translateY(-100%);
  opacity: 0;
  overflow: hidden;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.mobile__menu.active {
  transform: translateY(0);
  opacity: 1;
}
.mobile__menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 45px;
  align-items: center;
}
.mobile__menu li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.mobile__menu li a,
.mobile__menu button {
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  color: #FFFFFF;
}

.footer {
  display: flex;
  flex-direction: column;
  background-color: #000000;
  padding-top: 35px;
}
@media (min-width: 560px) {
  .footer {
    padding-top: 77px;
  }
}
.footer nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  row-gap: 50px;
  margin-bottom: 40px;
}
@media (min-width: 560px) {
  .footer nav {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 60px;
  }
}
@media (min-width: 860px) {
  .footer nav {
    grid-template-columns: 250px 250px 250px;
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  .footer nav {
    grid-template-columns: repeat(5, auto);
    justify-content: unset;
  }
}
.footer__logo {
  width: 200px;
  height: 200px;
  border: 1px solid #fff;
  border-radius: 50%;
  grid-column: 1/-1;
  justify-self: center;
}
@media (min-width: 860px) {
  .footer__logo {
    grid-column: auto;
  }
}
.footer__container {
  display: flex;
  justify-content: space-between;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 860px) {
  .footer__content {
    align-items: flex-start;
  }
}
.footer__content h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer__content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__content ul li {
  display: flex;
  justify-content: center;
}
@media (min-width: 860px) {
  .footer__content ul li {
    justify-content: flex-start;
  }
}
.footer__content ul a,
.footer__content ul button {
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  color: #FFFFFF;
}
.footer__content ul a:hover,
.footer__content ul button:hover {
  color: var(--checkout-primary, #FFC700);
}
.footer__content-wpp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 198px;
  height: 38px;
  background-color: #FFFFFF;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #000000;
  gap: 5px;
  margin-bottom: 15px;
}
.footer__content-wpp:hover {
  background-color: var(--checkout-primary, #FFC700);
  color: #000000;
}
.footer__content-wpp:hover svg path {
  fill: #000000;
}
.footer__content-email {
  margin-bottom: 15px;
}
.footer__content p {
  font-size: 12px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 18px;
}
.footer__content-socials {
  display: flex;
  gap: 15px;
}
.footer__content-socials a:hover svg path {
  fill: var(--checkout-primary, #FFC700);
}
.footer__content--2 h3:last-of-type {
  margin-top: 30px;
}
@media (min-width: 860px) {
  .footer__content--3 {
    grid-column: 2/3;
  }
}
@media (min-width: 1200px) {
  .footer__content--3 {
    grid-column: unset;
  }
}
.footer__content--4 {
  text-align: center;
}
.footer__content--4 img {
  margin-bottom: 35px;
}
.footer__content--4 p {
  width: 249px;
  margin-bottom: 30px;
}
@media (min-width: 860px) {
  .footer__content--4 {
    grid-column: 3/4;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .footer__content--4 {
    grid-column: unset;
  }
}
.footer__note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #202020;
  height: auto;
  padding: 11px 0;
  gap: 15px;
}
@media (min-width: 760px) {
  .footer__note {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    height: 50px;
  }
}
.footer__note p {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  color: #666666;
  text-align: center;
}
.footer__note a {
  font-weight: 700;
  color: #666666;
}
.footer__note a:hover {
  color: var(--checkout-primary, #FFC700);
}
.footer__note img {
  width: 86px;
}
.footer a {
  text-decoration: none;
}

.categories {
  display: block;
}
.categories__page {
  display: flex;
  margin-bottom: 60px;
}
@media (min-width: 1250px) {
  .categories__page {
    gap: 45px;
  }
}
@media (min-width: 1366px) {
  .categories__page {
    gap: 65px;
  }
}

.products {
  width: 100%;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media (min-width: 560px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 820px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 998px) {
  .products__grid {
    gap: 10px;
    row-gap: 20px;
  }
}
@media (min-width: 1400px) {
  .products__grid {
    gap: 29px;
  }
}
.products__grid--list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.products__grid--list .bestsellers__content {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: start;
}
@media (min-width: 560px) {
  .products__grid--list .bestsellers__content {
    grid-template-columns: 120px 1fr;
  }
}
@media (min-width: 768px) {
  .products__grid--list .bestsellers__content {
    grid-template-columns: 150px 1fr;
  }
}
@media (min-width: 998px) {
  .products__grid--list .bestsellers__content {
    grid-template-columns: 180px 1fr;
  }
}
.products__grid--list .bestsellers__content .bestsellers__content-wrapper {
  position: relative;
}
.products__grid--list .bestsellers__content .bestsellers__content-wrapper > a:first-child {
  grid-column: 1;
  grid-row: 1/span 1000;
  display: block;
  height: 100%;
  width: 100%;
}
.products__grid--list .bestsellers__content .bestsellers__img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
}
@media (min-width: 560px) {
  .products__grid--list .bestsellers__content .bestsellers__img {
    height: 120px;
  }
}
@media (min-width: 768px) {
  .products__grid--list .bestsellers__content .bestsellers__img {
    height: 150px;
  }
}
@media (min-width: 998px) {
  .products__grid--list .bestsellers__content .bestsellers__img {
    height: 180px;
  }
}
.products__grid--list .bestsellers__content .bestsellers__content-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 600px) {
  .products__grid--list .bestsellers__content .bestsellers__content-container {
    flex-direction: row;
  }
}
.products__grid--list .bestsellers__content .bestsellers__content-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
@media (min-width: 600px) {
  .products__grid--list .bestsellers__content .bestsellers__content-actions {
    max-width: 180px;
  }
}
@media (min-width: 768px) {
  .products__grid--list .bestsellers__content .bestsellers__content-actions {
    max-width: 200px;
  }
}
@media (min-width: 998px) {
  .products__grid--list .bestsellers__content .bestsellers__content-actions {
    max-width: 180px;
  }
}
@media (min-width: 1200px) {
  .products__grid--list .bestsellers__content .bestsellers__content-actions {
    max-width: 200px;
  }
}
.products__grid--list .bestsellers__content .bestsellers__content-cart {
  width: 100%;
}
.products__grid--list .bestsellers__content .bestsellers__content-buy {
  width: 100%;
  height: 60px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 15px;
  gap: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: #000000;
}
@media (min-width: 680px) {
  .topbar {
    flex-direction: row;
    margin-bottom: 35px;
    gap: 0;
  }
}
.topbar__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 20px;
}
.topbar__wrapper--filter {
  justify-content: flex-end;
}
.topbar__wrapper p {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}
.topbar__wrapper b {
  font-weight: 700;
}
.topbar__wrapper svg {
  flex-shrink: 0;
}
@media (min-width: 560px) {
  .topbar__wrapper p {
    font-size: 16px;
  }
}
.topbar__viewtype {
  display: flex;
  align-items: center;
  gap: 15px;
}
.topbar__viewtype-btn:hover svg path {
  fill: var(--checkout-secondary, #7000FF);
}
.topbar__viewtype-btn--active svg path {
  fill: var(--checkout-secondary, #7000FF);
}
.topbar__share {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar__share:hover p {
  color: var(--checkout-secondary, #7000FF);
}
.topbar__share:hover svg path {
  fill: var(--checkout-secondary, #7000FF);
}
.topbar__filter {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar__filter:hover p {
  color: var(--checkout-secondary, #7000FF);
}
.topbar__filter:hover svg path {
  fill: var(--checkout-secondary, #7000FF);
}
@media (min-width: 1250px) {
  .topbar__filter {
    display: none;
  }
}
.topbar select {
  width: 125px;
  min-width: unset;
  border: none;
  background-color: unset;
  cursor: pointer;
  color: #000000;
}
.topbar select:hover {
  color: var(--checkout-secondary, #7000FF);
}
.topbar select option {
  cursor: pointer;
  color: #000000;
}

.bestsellers {
  display: flex;
  flex-direction: column;
}
.bestsellers__slider .keen-slider__slide {
  padding: 10px;
}
.bestsellers__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}
@media (min-width: 560px) {
  .bestsellers__wrapper {
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin-bottom: 35px;
  }
}
.bestsellers__wrapper h3 {
  font-size: 24px;
  font-weight: 300;
  line-height: normal;
  color: #000000;
  text-transform: uppercase;
}
@media (min-width: 560px) {
  .bestsellers__wrapper h3 {
    font-size: 26px;
  }
}
@media (min-width: 998px) {
  .bestsellers__wrapper h3 {
    font-size: 28px;
  }
}
@media (min-width: 1400px) {
  .bestsellers__wrapper h3 {
    font-size: 30px;
  }
}
.bestsellers__wrapper h3 b {
  font-weight: 900;
}
.bestsellers__wrapper div {
  display: flex;
}
.bestsellers__wrapper a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 105px;
  height: 30px;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 5px;
  border: 1px solid #000000;
  transition: ease-in-out 0.3s;
}
@media (min-width: 560px) {
  .bestsellers__wrapper a {
    height: 36px;
    font-size: 13px;
  }
}
.bestsellers__wrapper a:hover {
  background-color: var(--checkout-secondary, #7000FF);
  border: 1px solid var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.bestsellers__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #000000;
  width: 45px;
  height: 30px;
  padding-left: 3px;
}
@media (min-width: 560px) {
  .bestsellers__arrow {
    width: 48px;
    height: 36px;
  }
}
.bestsellers__arrow:hover {
  background-color: var(--checkout-secondary, #7000FF);
  border: 1px solid var(--checkout-secondary, #7000FF);
}
.bestsellers__arrow:hover svg path {
  fill: #FFFFFF;
}
.bestsellers__arrow--left {
  margin-right: 10px;
  margin-left: 20px;
  padding-left: 0;
  padding-right: 3px;
}
.bestsellers__img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top;
  margin-bottom: 7px;
}
.bestsellers__img--small {
  height: 338px;
}
.bestsellers__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 27px;
  padding: 0 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
}
.bestsellers__tag--promo {
  background-color: #FFC700;
  color: #1F1F1F;
}
.bestsellers__tag--new {
  background-color: #7000FF;
  color: #FFFFFF;
}
.bestsellers__tag--pre {
  background-color: #f08102;
  color: #FFFFFF;
}
.bestsellers__tag--limited {
  background-color: #afc100;
  color: #FFFFFF;
}
.bestsellers__tag--best {
  background-color: #005eff;
  color: #FFFFFF;
}
.bestsellers__tag--last {
  background-color: #da0314;
  color: #FFFFFF;
}
.bestsellers__tag--soldout {
  background-color: #000000;
  color: #FFFFFF;
}
.bestsellers__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  transition: ease-in-out 0.2s;
}
.bestsellers__content:hover {
  transform: scale(1.03);
}
.bestsellers__content-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.bestsellers__content-favorite {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #FFFFFF;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 10px;
  transition: ease-in-out 0.3s;
}
.bestsellers__content-favorite svg {
  width: 20px;
  height: 20px;
}
.bestsellers__content-favorite svg path {
  fill: #000000;
  transition: ease-in-out 0.3s;
}
.bestsellers__content-favorite:hover {
  background-color: var(--checkout-secondary, #7000FF);
}
.bestsellers__content-favorite:hover svg path {
  fill: #FFFFFF;
}
.bestsellers__content-favorite--active {
  background-color: var(--checkout-secondary, #7000FF);
}
.bestsellers__content-favorite--active svg path {
  fill: #FFFFFF;
}
.bestsellers__content-category {
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  color: #999;
}
@media (min-width: 560px) {
  .bestsellers__content-category {
    font-size: 12px;
    margin-bottom: 2px;
  }
}
.bestsellers__content-title {
  font-size: 18px;
  font-weight: 900;
  line-height: 22px;
  color: #000000;
  margin-bottom: 5px;
}
@media (min-width: 560px) {
  .bestsellers__content-title {
    font-size: 20px;
  }
}
.bestsellers__content-review {
  display: flex;
  gap: 10px;
  margin-bottom: 11px;
}
.bestsellers__content-review span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid #999;
  color: #999;
  font-size: 8px;
  font-weight: 400;
  line-height: normal;
}
.bestsellers__content-review p {
  color: #000000;
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
  margin-left: 4px;
}
.bestsellers__content-old {
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  color: #999;
  margin-bottom: 1px;
}
@media (min-width: 560px) {
  .bestsellers__content-old {
    font-size: 12px;
  }
}
.bestsellers__content-price {
  display: flex;
  gap: 8px;
  margin-bottom: 1px;
}
.bestsellers__content-price p {
  font-size: 20px;
  font-weight: 800;
  line-height: 26px;
  color: var(--checkout-secondary, #7000FF);
}
.bestsellers__content-price span {
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
  color: #27a82b;
}
@media (min-width: 560px) {
  .bestsellers__content-price p {
    font-size: 22px;
  }
  .bestsellers__content-price span {
    font-size: 16px;
  }
}
.bestsellers__content-desc {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #666;
  margin-bottom: 8px;
}
.bestsellers__content-desc span {
  font-weight: 400;
}
.bestsellers__content-shipping {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  color: #27a82b;
  margin-bottom: 17px;
}
.bestsellers__content-actions {
  display: flex;
  gap: 10px;
}
.bestsellers__content-actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
}
.bestsellers__content-actions .notifyme {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid var(--checkout-primary, #FFC700);
  color: #000000;
}
.bestsellers__content-actions .notifyme:hover {
  background-color: var(--checkout-secondary, #7000FF);
  border: 1px solid var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.bestsellers__content-cart {
  width: 90px;
  gap: 5px;
  background: color-mix(in oklch, var(--checkout-primary, #FFC700) 45%, #FFFFFF 55%);
  color: color-mix(in srgb, var(--checkout-primary, #FFC700) 53.5%, #000000 46.5%);
}
.bestsellers__content-cart svg path {
  stroke: color-mix(in srgb, var(--checkout-primary, #FFC700) 53.5%, #000000 46.5%);
}
.bestsellers__content-cart:hover {
  color: #FFFFFF;
  background: var(--checkout-secondary, #7000FF);
}
.bestsellers__content-cart:hover svg path {
  stroke: #FFFFFF;
}
.bestsellers__content-buy {
  width: 100%;
  background-color: var(--checkout-primary, #FFC700);
  color: #000000;
}
.bestsellers__content-buy:hover {
  color: #FFFFFF;
  background: var(--checkout-secondary, #7000FF);
}
.bestsellers__content--soldout .bestsellers__img,
.bestsellers__content--soldout .bestsellers__img--small {
  filter: grayscale(100%);
}
.bestsellers__content--soldout .bestsellers__content-category,
.bestsellers__content--soldout .bestsellers__content-title,
.bestsellers__content--soldout .bestsellers__content-review,
.bestsellers__content--soldout .bestsellers__content-old,
.bestsellers__content--soldout .bestsellers__content-price,
.bestsellers__content--soldout .bestsellers__content-desc,
.bestsellers__content--soldout .bestsellers__content-shipping {
  filter: grayscale(100%);
  opacity: 0.6;
}

.error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding-bottom: 180px;
  color: #000;
}
.error h1 {
  font-size: 120px;
  font-weight: 900;
  color: #000000;
  margin-top: 80px;
  text-transform: uppercase;
}
.error h2 {
  font-size: 50px;
  font-weight: 700;
  color: #000000;
  margin-top: 30px;
}
.error__p {
  width: 809px;
  font-size: 24px;
  font-weight: 400;
  color: #666666;
  text-align: center;
  line-height: normal;
  margin-top: 30px;
  margin-bottom: 80px;
}
.error__a {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-style: solid;
}
.error__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 249px;
  height: 60px;
  padding: 20px;
  gap: 10px;
  border-radius: 5px;
  border: 1px solid var(--checkout-primary, #FFC700);
  background: var(--checkout-primary, #FFC700);
  margin-top: 80px;
  transition: all ease-in-out 0.3s;
}
.error__button:hover {
  background-color: var(--checkout-secondary, #7000FF);
  border: 1px solid var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.error__button a {
  font-size: 13px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
}
.error a:visited {
  color: inherit;
}

.title-interna {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 40px 16px;
  background-color: #000000;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .title-interna {
    min-height: 280px;
    padding: 50px 20px;
  }
}
@media (min-width: 1200px) {
  .title-interna {
    min-height: 320px;
    padding: 60px 30px;
  }
}
.title-interna::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at top left, rgba(255, 199, 0, 0.16), transparent 34%), radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 28%);
  pointer-events: none;
}
.title-interna p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .title-interna p {
    font-size: 38px;
  }
}
@media (min-width: 1200px) {
  .title-interna p {
    font-size: 44px;
  }
}

.institutional {
  padding-bottom: 95px;
}
.institutional__hero {
  display: flex;
  align-items: center;
  min-height: 220px;
  padding: 36px 0;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .institutional__hero {
    min-height: 280px;
    padding: 48px 0;
  }
}
.institutional__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at top left, rgba(255, 199, 0, 0.16), transparent 34%), radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 28%);
  pointer-events: none;
}
.institutional__hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: #FFFFFF;
}
.institutional__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.institutional__title {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .institutional__title {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .institutional__title {
    font-size: 46px;
  }
}
.institutional__lead {
  margin: 14px 0 0;
  max-width: 640px;
  font-size: 15px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 768px) {
  .institutional__lead {
    font-size: 17px;
    line-height: 30px;
  }
}
.institutional__body {
  margin-top: 24px;
}
.institutional__card {
  padding: 24px 18px;
  border-radius: 14px;
  background: #FFFFFF;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .institutional__card {
    padding: 32px 28px;
  }
}
.institutional__intro {
  margin-bottom: 28px;
  padding: 18px 18px 16px;
  border-left: 4px solid var(--checkout-primary, #FFC700);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 199, 0, 0.08) 0%, rgba(255, 255, 255, 0.92) 100%);
}
.institutional__intro p {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  color: #545454;
}
@media (min-width: 768px) {
  .institutional__intro p {
    font-size: 16px;
    line-height: 28px;
  }
}
.institutional__content {
  font-size: 15px;
  line-height: 28px;
  color: #333333;
}
@media (min-width: 768px) {
  .institutional__content {
    font-size: 16px;
    line-height: 30px;
  }
}
.institutional__content h1,
.institutional__content h2,
.institutional__content h3,
.institutional__content h4,
.institutional__content h5,
.institutional__content h6 {
  color: #000000;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 14px;
}
.institutional__content h1 {
  font-size: 30px;
}
.institutional__content h2 {
  font-size: 24px;
  margin-top: 32px;
}
.institutional__content h3 {
  font-size: 20px;
  margin-top: 28px;
}
.institutional__content p {
  margin: 0 0 16px;
}
.institutional__content a {
  color: var(--checkout-secondary, #7000FF);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}
.institutional__content a:hover {
  color: var(--checkout-secondary-hover, #700069);
}
.institutional__content ul,
.institutional__content ol {
  margin: 0 0 20px;
  padding-left: 22px;
}
.institutional__content li {
  margin-bottom: 10px;
}
.institutional__content ul li::marker {
  color: var(--checkout-primary, #FFC700);
}
.institutional__content ol li::marker {
  color: var(--checkout-secondary, #7000FF);
  font-weight: 700;
}
.institutional__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  background: #FFFFFF;
  border: 1px solid #ededed;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}
.institutional__content th,
.institutional__content td {
  padding: 14px 16px;
  border-bottom: 1px solid #ededed;
  text-align: left;
  vertical-align: top;
}
.institutional__content th {
  background: #f4f4f5;
  font-size: 13px;
  font-weight: 800;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.institutional__content tr:last-child td {
  border-bottom: none;
}
.institutional__content blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--checkout-secondary, #7000FF);
  background: #f4f4f5;
  color: #545454;
  font-style: italic;
}
.institutional__content hr {
  border: 0;
  border-top: 1px solid #ededed;
  margin: 28px 0;
}
.institutional__content img {
  max-width: 100%;
  height: auto;
}

.home {
  display: block;
}
.home__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  padding: 0 10px;
  background-color: #000000;
  position: relative;
}
@media (min-width: 560px) {
  .home__banner {
    padding: 0 20px;
  }
}
.home__banner img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.home__banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 20px;
  right: 20px;
}
.home__banner-content h1 {
  font-size: 40px;
  font-weight: 900;
  line-height: 50px;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 9px;
  width: 295px;
}
@media (min-width: 560px) {
  .home__banner-content h1 {
    font-size: 56px;
    line-height: 65px;
    width: 395px;
  }
}
@media (min-width: 998px) {
  .home__banner-content h1 {
    font-size: 85px;
    line-height: 95px;
    width: 600px;
  }
}
@media (min-width: 1400px) {
  .home__banner-content h1 {
    font-size: 114px;
    line-height: 128px;
    width: 799px;
  }
}
.home__banner-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 35px;
}
@media (min-width: 560px) {
  .home__banner-content p {
    font-size: 16px;
  }
}
.home__banner-content a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: 1px solid var(--checkout-primary, #FFC700);
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
  transition: ease-in-out 0.3s;
}
@media (min-width: 560px) {
  .home__banner-content a {
    height: 60px;
  }
}
@media (min-width: 650px) {
  .home__banner-content a {
    width: 238px;
  }
}
.home__banner-content a:hover {
  background-color: var(--checkout-primary, #FFC700);
  color: #000000;
}
.home .department {
  margin-top: 80px;
  margin-bottom: 70px;
}
.home__panels {
  display: block;
  margin: 70px 0 65px;
}
@media (min-width: 680x) {
  .home__panels {
    margin-bottom: 100px;
  }
}
.home__panels-banner {
  display: flex;
  position: relative;
  height: 400px;
}
.home__panels-banner img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.home__panels-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 25px;
  left: 25px;
}
@media (min-width: 560px) {
  .home__panels-content {
    bottom: 30px;
    left: 30px;
  }
}
@media (min-width: 998px) {
  .home__panels-content {
    bottom: 35px;
    left: 35px;
  }
}
@media (min-width: 1400px) {
  .home__panels-content {
    bottom: 50px;
    left: 50px;
  }
}
.home__panels-content h3 {
  font-size: 24px;
  font-weight: 300;
  line-height: 35px;
  color: #FFFFFF;
}
.home__panels-content h3 b {
  font-size: 35px;
  font-weight: 900;
}
@media (min-width: 560px) {
  .home__panels-content h3 {
    font-size: 26px;
    line-height: 40px;
  }
  .home__panels-content h3 b {
    font-size: 45px;
  }
}
@media (min-width: 998px) {
  .home__panels-content h3 {
    font-size: 28px;
    line-height: 50px;
  }
  .home__panels-content h3 b {
    font-size: 50px;
  }
}
@media (min-width: 1400px) {
  .home__panels-content h3 {
    font-size: 30px;
    line-height: 66px;
  }
  .home__panels-content h3 b {
    font-size: 60px;
  }
}
.home__panels-content a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: 1px solid var(--checkout-primary, #FFC700);
  background: var(--checkout-primary, #FFC700);
  width: 180px;
  height: 50px;
  font-size: 13px;
  font-weight: 700;
  line-height: normal;
  color: #000000;
  text-decoration: none;
  margin-top: 15px;
}
@media (min-width: 560px) {
  .home__panels-content a {
    height: 52px;
  }
}
.home__panels-content a:hover {
  background-color: var(--checkout-secondary, #7000FF);
  border: 1px solid var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.home__panels-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}
@media (min-width: 560px) {
  .home__panels-wrapper {
    gap: 15px;
    margin-top: 15px;
  }
}
@media (min-width: 998px) {
  .home__panels-wrapper {
    flex-direction: row;
  }
}
.home__panels-half {
  width: 100%;
}
@media (min-width: 998px) {
  .home__panels-half {
    width: 50%;
  }
}
.home__products {
  display: flex;
  flex-direction: column;
  margin-top: 65px;
  margin-bottom: 80px;
}
.home__products-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-content: start;
  row-gap: 20px;
}
@media (min-width: 560px) {
  .home__products-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (min-width: 850px) {
  .home__products-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 29px;
  }
}
@media (min-width: 1200px) {
  .home__products-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: #d2d2d2;
  height: 400px;
  gap: 2px;
}
@media (min-width: 680px) {
  .benefits {
    grid-template-columns: repeat(2, 1fr);
    height: 380px;
  }
}
@media (min-width: 998px) {
  .benefits {
    grid-template-columns: repeat(4, 1fr);
    height: 350px;
  }
}
.benefits__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f1f1f1;
  padding: 0 10px;
}
.benefits__content h4 {
  font-size: 16px;
  font-weight: 900;
  line-height: 22px;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
}
.benefits__content p {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #666666;
  text-align: center;
  width: 100%;
}
@media (min-width: 680px) {
  .benefits__content {
    gap: 6px;
  }
  .benefits__content h4 {
    font-size: 18px;
  }
  .benefits__content p {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .benefits__content p {
    width: 304px;
  }
}
@media (min-width: 1700px) {
  .benefits__content {
    padding: 0;
  }
}

.newsletter {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #574696;
  padding: 55px 10px;
}
@media (min-width: 560px) {
  .newsletter {
    padding: 60px 20px;
  }
}
@media (min-width: 998px) {
  .newsletter {
    padding: 70px 30px;
  }
}
@media (min-width: 1400px) {
  .newsletter {
    height: 362px;
  }
}
.newsletter__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 896px;
  margin: 0 auto;
}
.newsletter h3 {
  font-size: 26px;
  font-weight: 900;
  color: #FFFFFF;
}
@media (min-width: 560px) {
  .newsletter h3 {
    font-size: 28px;
  }
}
@media (min-width: 998px) {
  .newsletter h3 {
    font-size: 30px;
  }
}
.newsletter p {
  font-size: 14px;
  font-weight: 400;
  color: #cccccc;
  margin-bottom: 14px;
}
.newsletter form {
  width: 100%;
}
.newsletter__form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
  margin-bottom: 18px;
}
@media (min-width: 760px) {
  .newsletter__form {
    flex-direction: row;
    gap: 10px;
  }
}
.newsletter__field {
  width: 100%;
}
.newsletter__field label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
.newsletter__field input {
  display: flex;
  width: 100%;
  height: 50px;
  padding: 20px;
  align-items: center;
  border-radius: 5px;
  background-color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: #000000;
  border: none;
}
.newsletter__field input::placeholder {
  color: #666666;
}
@media (min-width: 760px) {
  .newsletter__field input {
    height: 60px;
    padding: 23px 20px 16px;
  }
}
.newsletter__terms {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}
@media (min-width: 760px) {
  .newsletter__terms {
    flex-direction: row;
    gap: 10px;
  }
}
.newsletter__terms input {
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  accent-color: var(--checkout-primary, #FFC700);
}
.newsletter__terms label {
  font-size: 11px;
  font-weight: 400;
  line-height: normal;
  color: #ccc;
  max-width: 772px;
}
.newsletter__terms label a {
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  color: var(--checkout-primary, #FFC700);
}
.newsletter__terms label a:hover {
  color: #ffa800;
}
@media (min-width: 760px) {
  .newsletter__terms label {
    font-size: 14px;
  }
  .newsletter__terms label a {
    font-size: 14px;
  }
}
.newsletter__button {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 195px;
  height: 50px;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #000000;
  border-radius: 5px;
  border: 1px solid var(--checkout-primary, #FFC700);
  background-color: var(--checkout-primary, #FFC700);
  transition: 0.3s ease-in-out;
}
@media (min-width: 760px) {
  .newsletter__button {
    height: 60px;
  }
}
.newsletter__button:hover {
  border: 1px solid #ffa800;
  background-color: #ffa800;
}

.product__grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 10px;
  margin-bottom: 50px;
  align-items: start;
}
@media (min-width: 998px) {
  .product__grid {
    display: grid;
    grid-template-columns: minmax(580px, 1fr) minmax(320px, 400px);
    gap: 30px;
  }
}
@media (min-width: 1400px) {
  .product__grid {
    gap: 60px;
  }
}
.product__gallery {
  display: none;
}
@media (min-width: 998px) {
  .product__gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
  }
}
.product__gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 20px;
  margin-bottom: 20px;
}
.product__gallery-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 60px;
  font-size: 13px;
  font-weight: 700;
  line-height: normal;
  color: #000;
  background-color: var(--checkout-primary, #FFC700);
  border: 1px solid var(--checkout-primary, #FFC700);
  border-radius: 5px;
  cursor: pointer;
}
.product__gallery-btn:hover {
  background-color: var(--checkout-secondary, #7000FF);
  border: 1px solid var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.product__gallery-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.product__slider {
  display: block;
  width: 100%;
  height: auto;
}
.product__slider-container {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 998px) {
  .product__slider-container {
    display: none;
  }
}
.product__slider-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.product__slider-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.product__slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all ease-in-out 0.3;
  padding: 0;
}
@media (min-width: 768px) {
  .product__slider-arrow {
    width: 48px;
    height: 48px;
  }
}
.product__slider-arrow:hover {
  background: rgb(255, 255, 255);
}
.product__slider-arrow svg {
  width: 12px;
  height: 20px;
}
@media (min-width: 768px) {
  .product__slider-arrow svg {
    width: 14px;
    height: 24px;
  }
}
.product__slider-arrow--left {
  left: 10px;
}
@media (min-width: 768px) {
  .product__slider-arrow--left {
    left: 20px;
  }
}
.product__slider-arrow--right {
  right: 10px;
}
@media (min-width: 768px) {
  .product__slider-arrow--right {
    right: 20px;
  }
}
.product__slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  height: 20px;
}
@media (min-width: 768px) {
  .product__slider-dots {
    gap: 12px;
    margin-top: 10px;
  }
}
.product__slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: #cccccc;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (min-width: 768px) {
  .product__slider-dot {
    width: 10px;
    height: 10px;
  }
}
.product__slider-dot:hover {
  background: #999999;
}
.product__slider-dot--active {
  background: var(--checkout-secondary, #7000FF);
  transform: scale(1.2);
}
.product__img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}
.product__img--hidden {
  display: none;
}
.product__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1700px) {
  .product__img {
    width: 480px;
    height: 480px;
  }
}
.product__info {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  padding-top: 7px;
}
.product__category {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #999999;
}
@media (min-width: 560px) {
  .product__category {
    font-size: 14px;
  }
}
.product__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.product__title {
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: 32px;
  color: #000000;
  width: 320px;
}
@media (min-width: 560px) {
  .product__title {
    font-size: 24px;
  }
}
@media (min-width: 1400px) {
  .product__title {
    font-size: 26px;
  }
}
.product__wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 47px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  position: absolute;
  top: 7px;
  right: 0;
}
.product__wishlist--active {
  background-color: var(--checkout-secondary, #7000FF);
  border-radius: 5px;
}
.product__wishlist--active svg {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(166deg) brightness(102%) contrast(101%);
}
.product__wishlist:hover {
  background-color: var(--checkout-secondary, #7000FF);
  border-radius: 5px;
}
.product__wishlist:hover svg {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(166deg) brightness(102%) contrast(101%);
}
.product__code {
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
  color: #000000;
  margin-bottom: 15px;
}
.product__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 17px;
}
.product__rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 16px;
  font-size: 8px;
  font-weight: 400;
  line-height: normal;
  color: #999999;
  border: 1px solid #999999;
  border-radius: 2px;
  margin-left: 10px;
}
.product__rating span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid #999;
  color: #999;
  font-size: 8px;
  font-weight: 400;
  line-height: normal;
}
.product__rating p {
  color: #000000;
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
  margin-left: 4px;
}
.product__stars {
  display: flex;
}
.product__pricing {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.product__price {
  display: flex;
  font-size: 26px;
  font-weight: 800;
  line-height: 26px;
  color: var(--checkout-secondary, #7000FF);
  margin-bottom: 2px;
}
.product__price-old {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #999;
  margin-bottom: 4px;
}
.product__price-discount {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: #27a82b;
  text-transform: uppercase;
  margin-left: 8px;
  position: relative;
  bottom: -2px;
}
.product__installments {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #666;
}
.product__avista {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--checkout-primary, #FFC700);
}
.product__coupon {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #000000;
  margin-bottom: 20px;
}
@media (min-width: 560px) {
  .product__coupon {
    font-size: 14px;
  }
}
.product__coupon strong {
  font-weight: 600;
}
.product__section {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 25px;
}
.product__section-group {
  width: 100%;
  margin-top: 30px;
}
.product__section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  user-select: none;
}
.product__section-header > svg {
  transition: transform 200ms ease;
  transform: rotate(180deg);
}
.product__section-header--open > svg {
  transform: rotate(0deg);
}
.product__section-header:hover h3:first-of-type,
.product__section-header:hover span:first-of-type {
  color: var(--checkout-secondary, #7000FF);
}
.product__section-header:hover > svg:last-child path {
  fill: var(--checkout-secondary, #7000FF);
}
.product__section-heading {
  display: flex;
  align-items: center;
  gap: 6px;
}
.product__section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  color: #000000;
}
.product__section-body {
  max-height: 1000px;
  overflow: hidden;
  padding-bottom: 20px;
  transition: max-height 300ms ease, padding 300ms ease, opacity 300ms ease;
}
.product__section-body--collapsed {
  max-height: 400px;
}
.product__section-body--hidden {
  max-height: 0;
  padding-bottom: 0;
  opacity: 0;
}
.product__section-bodyV2 {
  height: auto;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease, opacity 300ms ease;
}
.product__section-bodyV2--collapsed {
  max-height: 400px;
}
.product__colors {
  display: flex;
  gap: 5px;
}
.product__color {
  width: 76px;
  height: 76px;
  cursor: pointer;
  background: #e1e1e1;
  overflow: hidden;
  transition: border-color 150ms;
}
.product__color img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product__color:hover {
  border: 1px solid var(--checkout-secondary, #7000FF);
}
.product__color--active {
  border: 2px solid var(--checkout-secondary, #7000FF);
}
.product__color--disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.product__sizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.product__size {
  height: 35px;
  border: 1px solid #999999;
  border-radius: 3px;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  background: #FFFFFF;
  transition: border-color 150ms, background 150ms, color 150ms;
}
.product__size-guide {
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
  color: #000000;
  text-decoration: underline;
}
.product__size:hover {
  background: var(--checkout-secondary, #7000FF);
  border-color: var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.product__size--active {
  background: var(--checkout-secondary, #7000FF);
  border-color: var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.product__size--unavailable {
  color: #cccccc;
  border-color: #cccccc;
  cursor: not-allowed;
}
.product__size--unavailable:hover {
  color: #cccccc;
  border-color: #cccccc;
  background-color: #FFFFFF;
}
.product__size-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  visibility: hidden;
  pointer-events: none;
}
.product__size-modal.active {
  visibility: visible;
  pointer-events: all;
}
.product__size-modal.active .product__size-modal-overlay {
  opacity: 1;
}
.product__size-modal.active .product__size-modal-content {
  transform: translateX(0);
}
.product__size-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10000;
}
.product__size-modal-content {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: #fff;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 480px) {
  .product__size-modal-content {
    max-width: 90%;
  }
}
.product__size-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 0;
}
.product__size-modal-close span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #333;
  border-radius: 999px;
  top: 50%;
  left: 0;
}
.product__size-modal-close span:first-child {
  transform: rotate(45deg);
}
.product__size-modal-close span:last-child {
  transform: rotate(-45deg);
}
.product__size-modal-close:hover span {
  background: #000;
}
.product__size-modal-header {
  padding: 25px 20px 15px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}
.product__size-modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
.product__size-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  -webkit-overflow-scrolling: touch;
}
.product__purchase {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.product__purchase-btn {
  flex: 1;
  height: 50px;
  background-color: var(--checkout-primary, #FFC700);
  border: 1px solid var(--checkout-primary, #FFC700);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  color: #000000;
  cursor: pointer;
}
@media (min-width: 560px) {
  .product__purchase-btn {
    height: 60px;
    font-size: 13px;
  }
}
@media (min-width: 998px) {
  .product__purchase-btn {
    height: 70px;
  }
}
.product__purchase-btn:hover {
  background-color: var(--checkout-secondary, #7000FF);
  border: 1px solid var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.product__purchase-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  background-color: color-mix(in oklch, var(--checkout-primary, #FFC700) 45%, #FFFFFF 55%);
  border: 1px solid color-mix(in oklch, var(--checkout-primary, #FFC700) 45%, #FFFFFF 55%);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  color: color-mix(in srgb, var(--checkout-primary, #FFC700) 53.5%, #000000 46.5%);
  cursor: pointer;
  gap: 10px;
  margin-bottom: 30px;
  transition: all ease-in-out 0.3;
}
.product__purchase-cart svg path {
  stroke: color-mix(in srgb, var(--checkout-primary, #FFC700) 53.5%, #000000 46.5%);
}
@media (min-width: 560px) {
  .product__purchase-cart {
    height: 50px;
    font-size: 13px;
  }
}
.product__purchase-cart:hover {
  background-color: var(--checkout-secondary, #7000FF);
  border: 1px solid var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.product__purchase-cart:hover svg path {
  stroke: #FFFFFF;
}
.product__share {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  gap: 20px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  margin-bottom: 25px;
}
.product__share-label {
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  color: #000000;
}
.product__share-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
}
.product__share-btn:hover {
  color: var(--checkout-secondary, #7000FF);
}
.product__share-btn:hover svg {
  filter: brightness(0) saturate(100%) invert(14%) sepia(86%) saturate(5571%) hue-rotate(268deg) brightness(89%) contrast(133%);
}
.product__description {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #000000;
}
@media (min-width: 560px) {
  .product__description {
    font-size: 14px;
  }
}
.product__description-wrapper {
  position: relative;
  margin: 5px 0 13px;
}
.product__description-wrapper--collapsed {
  max-height: 100px;
  overflow: hidden;
}
.product__description-wrapper--collapsed .product__description-fade {
  display: block;
}
.product__description-fade {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, #fff);
}
.product__description-more {
  font-size: 13px;
  font-weight: 600;
  line-height: 12px;
  color: #000000;
  text-decoration: underline;
  cursor: pointer;
}
.product__description-more:hover {
  color: var(--checkout-secondary, #7000FF);
}
.product__feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000000;
  column-count: 2;
}
@media (min-width: 560px) {
  .product__feature-list {
    font-size: 16px;
    column-gap: 50px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 998px) {
  .product__feature-list {
    font-size: 18px;
  }
}
.product__feature-list li {
  display: flex;
  align-items: flex-start;
}
.product__feature-list li:before {
  content: "";
  display: flex;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: currentColor;
  margin-right: 8px;
  position: relative;
  top: 6px;
}
.product__review-total {
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  color: #000000;
  margin-right: 8px;
}
.product__review-recommend {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  color: #000000;
  margin-bottom: 40px;
}
@media (min-width: 560px) {
  .product__review-recommend {
    font-size: 14px;
  }
}
.product__review-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.product__review-text {
  font-size: 13px;
  font-weight: 700;
  line-height: 22px;
  color: #000000;
  margin: 15px 0 0;
}
@media (min-width: 560px) {
  .product__review-text {
    font-size: 14px;
  }
}
.product__review-author {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #000000;
  margin: 10px 0 8px;
}
.product__review-endorsement {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #000000;
  margin-bottom: 10px;
}
.product__review-endorsement strong {
  font-weight: 700;
}
.product__review-votes {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.product__review-vote {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 30px;
  border: 1px solid #999999;
  border-radius: 3px;
  background: #FFFFFF;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  color: #000000;
  cursor: pointer;
  transition: border-color 150ms;
}
.product__review-vote--active {
  border-color: var(--checkout-secondary, #7000FF);
  background-color: var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.product__review-vote--active svg {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(317deg) brightness(105%) contrast(101%);
}
.product__review-vote:hover {
  border-color: var(--checkout-secondary, #7000FF);
  background-color: var(--checkout-secondary, #7000FF);
  color: #FFFFFF;
}
.product__review-vote:hover svg {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(317deg) brightness(105%) contrast(101%);
}
.product__review-all {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  line-height: 12px;
  color: #000000;
  text-decoration: underline;
  margin-top: 10px;
}
.product__review-all:hover {
  color: var(--checkout-secondary, #7000FF);
}
.product .bestsellers {
  margin-bottom: 90px;
}
.product__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.product__viewer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  height: auto;
}
@media (min-width: 998px) {
  .product__viewer {
    height: 900px;
  }
}
.product__viewer-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 96px;
  flex-shrink: 0;
}
.product__viewer-thumb {
  width: 96px;
  height: 96px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: #e1e1e1;
  padding: 0;
  position: relative;
  transition: border-color 150ms;
}
.product__viewer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product__viewer-thumb:hover {
  border-color: var(--checkout-secondary, #7000FF);
}
.product__viewer-thumb--active {
  border-color: var(--checkout-secondary, #7000FF);
}
.product__viewer-thumb--more img {
  filter: brightness(0.4);
}
.product__viewer-thumb--hidden {
  display: none;
}
.product__viewer-count {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
}
.product__viewer-stage {
  display: flex;
  gap: 16px;
  flex: 1;
  position: sticky;
  top: 0;
}
.product__viewer-zoom {
  position: relative;
  flex: 1;
}
.product__viewer-main {
  width: 100%;
  display: block;
  cursor: crosshair;
}
.product__viewer-lens {
  display: none;
  position: absolute;
  width: 250px;
  height: 250px;
  border: 2px solid var(--checkout-secondary, #7000FF);
  border-radius: 2px;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 10;
  cursor: crosshair;
}
.product .bordertop {
  border-top: 1px solid #e5e7eb;
  padding: 25px 0;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 10px;
}
@media (min-width: 560px) {
  .container {
    padding: 0 20px;
  }
}
@media (min-width: 998px) {
  .container {
    padding: 0 30px;
  }
}
@media (min-width: 1700px) {
  .container {
    padding: 0;
  }
}

/*# sourceMappingURL=main.min.css.map */
