@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
:root {
  --size: 500;
}

@media (min-width: 650px) {
  :root {
    --size: 1680;
  }
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

audio, canvas, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

a {
  background: 0 0;
}

a:focus {
  outline: thin dotted;
}

a:active, a:hover {
  outline: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

mark {
  background: #ff0;
  color: #000;
}

code, kbd, pre, samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre-wrap;
}

q {
  quotes: "“" "”" "‘" "’";
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button, input {
  line-height: normal;
}

button, select {
  text-transform: none;
}

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul, li, ol {
  appearance: none;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 400;
}

.wrapper {
  padding: 0 1rem;
  margin: auto;
  max-width: 1680px;
}

.grid_cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 800px) {
  .grid_cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.grid_whish {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 800px) {
  .grid_whish {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.content_grids {
  margin: 60px 0;
}
.content_grids-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.content_grids-title a {
  font-size: clamp(14px, 18 * (100vw / var(--size)), 1000px);
  white-space: nowrap;
}
@media (max-width: 800px) {
  .content_grids-title {
    align-items: flex-end;
  }
}

.sticky_section {
  height: 220vh;
  background-size: cover;
  background-position: top center;
  padding: 6rem 1rem;
}
.sticky_section .wp-card {
  width: 362px;
  padding: 20px;
  background-color: white;
  border-radius: 4px;
  position: sticky;
  top: 120px;
  margin-top: 30px;
}
.sticky_section .wp-card:last-child {
  margin-left: auto;
}
@media (max-width: 800px) {
  .sticky_section {
    height: 180vh;
    padding: 2rem 1rem;
  }
  .sticky_section .wp-card {
    width: 49%;
    padding: 10px;
  }
  .sticky_section .wp-card .card_info-popup {
    width: calc(100vw - 20px);
  }
  .sticky_section .wp-card:last-child {
    margin-top: 200px;
  }
  .sticky_section .wp-card:last-child .card_info-popup {
    right: -13px;
    left: auto;
  }
  .sticky_section .wp-card:has(.show-popup) {
    z-index: 1;
  }
}

.detail_grids {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.detail_grids-image {
  width: 60%;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #dedede;
}
.detail_grids-image img {
  aspect-ratio: 3/4;
  display: block;
  width: 100%;
  object-fit: cover;
}
.detail_grids-info {
  width: 40%;
  position: sticky;
  top: 0;
  height: 100vh;
  background-color: white;
  padding: 4rem;
  border-top: 1px solid #dedede;
}
.detail_grids-info .name-product {
  position: relative;
}
.detail_grids-info .name-product .wishlist {
  position: absolute;
  right: 0;
  top: 14px;
}
.detail_grids-info .name-product .wishlist svg {
  width: 24px;
}
.detail_grids-info .name-product .wishlist.active svg path {
  fill: #1E1E1E;
}
.detail_grids-info small {
  font-weight: 700;
  color: #AEAEAE;
  text-transform: uppercase;
  font-size: clamp(14px, 11 * (100vw / var(--size)), 1000px);
}
.detail_grids-info .description-product {
  margin: 16px 0;
  font-size: clamp(14px, 14 * (100vw / var(--size)), 1000px);
  line-height: 1.4;
}
.detail_grids-info .price-product {
  font-size: clamp(14px, 22 * (100vw / var(--size)), 1000px);
}
.detail_grids-info .colors-product {
  text-transform: uppercase;
  margin: 20px 0;
}
.detail_grids-info .colors-product_title {
  font-size: clamp(14px, 12 * (100vw / var(--size)), 1000px);
}
.detail_grids-info .colors-product_variables {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.detail_grids-info .colors-product_variables span {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  position: relative;
  border: solid 1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.detail_grids-info .colors-product_variables span input {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
}
.detail_grids-info .colors-product_variables span:has(input:checked)::after {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 100%;
  border: 1px solid #1E1E1E;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.detail_grids-info .size-product {
  margin: 16px 0;
  text-transform: uppercase;
}
.detail_grids-info .size-product_title {
  font-size: clamp(14px, 12 * (100vw / var(--size)), 1000px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.detail_grids-info .size-product_title a {
  text-decoration: underline;
}
.detail_grids-info .size-product_variables {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 1;
}
.detail_grids-info .size-product_box {
  width: 100%;
  margin-top: 10px;
}
.detail_grids-info .size-product_box span {
  font-size: clamp(14px, 12 * (100vw / var(--size)), 1000px);
}
.detail_grids-info .size-product_box .box-input {
  margin-top: 10px;
}
.detail_grids-info .size-product_box input {
  width: 100%;
  height: 40px;
  font-size: 14px;
  padding: 0;
  margin: 0;
  appearance: none;
  outline: none;
  border: none;
  background-color: transparent;
  text-align: center;
}
.detail_grids-info .size-product_box input[type=number]::-webkit-inner-spin-button {
  opacity: 1;
}
.detail_grids-info .add_button {
  appearance: none;
  outline: none;
  border: none;
  background-color: #1E1E1E;
  text-align: center;
  width: 100%;
  height: 48px;
  display: block;
  padding: 0;
  margin: 0;
  color: white;
  border: 1px solid #1E1E1E;
  margin-top: 16px;
  font-size: clamp(14px, 13 * (100vw / var(--size)), 1000px);
}
@media (max-width: 800px) {
  .detail_grids {
    flex-direction: column;
  }
  .detail_grids-image {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
  .detail_grids-image img {
    aspect-ratio: 1/1.5;
  }
  .detail_grids-info {
    width: 100%;
    position: relative;
    height: auto;
    padding: 2rem 1rem;
    border-top: none;
    border-bottom: 1px solid #dedede;
  }
  .detail_grids-info .name-product {
    margin-bottom: 20px;
  }
}

h2 {
  font-weight: 400;
  font-size: clamp(14px, 35 * (100vw / var(--size)), 1000px);
}
@media (max-width: 800px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-weight: 400;
  font-size: clamp(14px, 30 * (100vw / var(--size)), 1000px);
}
@media (max-width: 800px) {
  h3 {
    font-size: 20px;
  }
}

/* Importing components */
header {
  width: 100%;
  background-color: white;
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.05);
  position: fixed;
  z-index: 9;
}
header .strip-message {
  background-color: #1E1E1E;
  color: white;
  text-transform: uppercase;
  padding: 6px 0;
  font-size: clamp(14px, 13 * (100vw / var(--size)), 1000px);
}
header .strip-message span {
  display: block;
  text-align: left;
  will-change: transform;
  transform: translateX(100%);
  animation: scroll 25s linear infinite;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  header .strip-message {
    font-size: 11px;
  }
}
header .wrapper {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 1rem;
}
header .actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
header .actions_search {
  display: flex;
  align-items: center;
  gap: 5px;
}
header .actions_search button {
  appearance: none;
  border: none;
  background: transparent;
  outline: none;
}
header .actions_search input {
  appearance: none;
  border: none;
  background: transparent;
  outline: none;
  padding: 0;
  font-size: clamp(14px, 12 * (100vw / var(--size)), 1000px);
  border-bottom: 1px solid #1E1E1E;
}
header .actions_cart {
  position: relative;
}
header .actions_cart small {
  width: 14px;
  height: 14px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #000000;
  color: white;
  font-size: 9px;
}
header .burger, header .submenu {
  display: none;
}
@media (max-width: 1024px) {
  header .wrapper {
    padding: 1rem;
    transition: ease-in 0.5s;
  }
  header .actions {
    gap: 10px;
  }
  header .actions_search {
    display: none;
  }
  header .burger {
    display: flex;
    flex-direction: column;
    width: 40px;
    height: 40px;
    padding: 10px 10px 10px 0;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
  }
  header .burger i, header .burger::after, header .burger::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #1E1E1E;
  }
  header .burger.open::after {
    transform: rotate(45deg) translate(-7px, -7px);
  }
  header .burger.open i {
    transform: rotate(-45deg);
  }
  header .burger.open::before {
    display: none;
  }
  header .logo svg {
    width: 120px;
    margin-left: 20px;
  }
  header.invert .wrapper {
    background-color: black;
    color: white;
  }
  header.invert .wrapper .actions svg {
    filter: invert(1);
  }
  header.invert .wrapper .burger i, header.invert .wrapper .burger::after, header.invert .wrapper .burger::before {
    background-color: white;
  }
}

@keyframes scroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
#popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  z-index: 99;
  display: none;
  opacity: 0;
}
#popup.show {
  display: block;
}
#popup .close-popup {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#popup .close-popup svg {
  transition: ease-in 0.3s;
}
#popup .close-popup:hover svg {
  transform: rotate(90deg);
}
#popup .content {
  max-width: 480px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
#popup .content_big {
  max-width: 760px;
}
#popup .content__form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#popup .content__form.big {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
#popup .content__form.big .box_input {
  width: calc(50% - 20px);
}
@media (max-width: 1024px) {
  #popup .content__form.big {
    flex-direction: column;
  }
  #popup .content__form.big .box_input {
    width: 100%;
  }
}
#popup .content__form label {
  margin-top: 16px;
  display: block;
  color: #AEAEAE;
  font-size: 14px;
}
@media (max-width: 1024px) {
  #popup .content__form label {
    margin-top: 10px;
    font-size: 12px;
  }
}
#popup .content__form small {
  color: #AEAEAE;
  font-size: 14px;
  display: block;
  text-align: right;
}
#popup .content__form select,
#popup .content__form input {
  appearance: none;
  outline: none;
  width: 100%;
  margin: 5px 0;
  padding: 10px;
  border-radius: 0px;
  border: 1px solid #1E1E1E;
  font-size: 14px;
}
#popup .content__form select:focus,
#popup .content__form input:focus {
  border-color: #1E1E1E;
  outline: none;
}
#popup .content__form button {
  margin-top: 1rem;
}
#popup .content .disclaimer {
  color: #AEAEAE;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  gap: 8px;
}
#popup .content .disclaimer::after, #popup .content .disclaimer::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #AEAEAE;
}
#popup .content p.bajada {
  color: #AEAEAE;
}
#popup .content .step-1 {
  display: block;
}
#popup .content .step-2 {
  display: none;
}
#popup-cart {
  position: fixed;
  top: 108px;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.6);
  z-index: 8;
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: ease-in 0.3s;
}
@media (max-width: 1600px) {
  #popup-cart {
    top: 100px;
  }
}
@media (max-width: 960px) {
  #popup-cart {
    top: 95px;
  }
}
#popup-cart.open {
  opacity: 1;
  pointer-events: initial;
}
#popup-cart .content-cart {
  margin-left: auto;
  background-color: white;
  max-width: 390px;
  padding: 20px 26px;
  width: 100%;
}
#popup-cart .content-cart_head {
  display: flex;
  align-items: center;
  gap: 8px;
}
#popup-cart .content-cart_head .close-popup {
  margin-left: auto;
}
#popup-cart .content-cart_main {
  margin: 20px 0;
}
#popup-cart .content-cart_main .item {
  border-bottom: 1px solid #aeaeae;
  display: flex;
  gap: 10px;
  padding: 20px 0;
}
#popup-cart .content-cart_main .item img {
  width: 82px;
  border-radius: 2px;
  object-fit: cover;
  min-width: 82px;
}
#popup-cart .content-cart_main .item_info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
#popup-cart .content-cart_main .item_info span {
  color: #aeaeae;
  display: block;
}
#popup-cart .content-cart_main .item_info .foo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#popup-cart .content-cart_main .item_info .foo input {
  appearance: none;
  outline: none;
  border: none;
  border-radius: 0px;
  font-size: 14px;
  text-align: center;
}
#popup-cart .content-cart_main .item_info .foo a {
  text-decoration: underline;
}
#popup-cart .content-cart_main .item_info .detail {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  padding: 8px 0;
  padding-right: 24px;
}
#popup-cart .content-cart_main .item_info .detail span {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}
#popup-cart .content-cart_main .item_info .detail i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
}
#popup-cart .content-cart_cupon {
  display: flex;
  align-items: center;
  gap: 10px;
}
#popup-cart .content-cart_cupon input {
  appearance: none;
  outline: none;
  height: 50px;
  padding: 0 14px;
  margin: 0;
  border: 1px solid black;
  display: block;
  width: 100%;
  min-width: 175px;
}
#popup-cart .content-cart_cupon .primary-button {
  min-width: 80px;
}
#popup-cart .content-cart_subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
  margin: 20px 0;
  padding-top: 20px;
  border-top: 1px solid #aeaeae;
}
#popup-cart .content-cart_subtotal span {
  color: #1E1E1E;
}
#popup-cart .content-cart_foo {
  margin-top: 20px;
  text-align: center;
}
#popup-cart .content-cart_foo .primary-button {
  margin-bottom: 20px;
}
#popup-cart .content-cart_foo a:not(.primary-button) {
  text-decoration: underline;
}

#register, #forgot-password {
  display: none;
}

footer {
  color: white;
  background-color: #1E1E1E;
  border-radius: 10px 10px 0 0;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}
@media (max-width: 800px) {
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
footer .wrapper .logo {
  width: clamp(14px, 300 * (100vw / var(--size)), 1000px);
}
footer .wrapper span, footer .wrapper a {
  color: #AEAEAE;
  font-size: 12px;
}
footer .wrapper:first-child {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 800px) {
  footer .wrapper:first-child {
    flex-direction: column;
    align-items: center;
  }
}
footer .wrapper .footer-cols {
  display: flex;
  gap: 5rem;
  margin-bottom: clamp(14px, 100 * (100vw / var(--size)), 1000px);
}
footer .wrapper .footer-cols ul li {
  margin-bottom: 8px;
}
footer .wrapper .footer-cols ul > li:first-child {
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 14px;
}
footer .wrapper .footer-cols ul li a {
  transition: ease-out 0.2s;
}
footer .wrapper .footer-cols ul li a:hover {
  color: white;
  text-decoration: underline;
}
@media (max-width: 800px) {
  footer .wrapper .footer-cols {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  footer .wrapper .footer-cols ul {
    margin-bottom: 0px;
  }
}

nav {
  text-transform: uppercase;
  display: flex;
  gap: 16px;
  font-size: clamp(14px, 14 * (100vw / var(--size)), 1000px);
}
nav svg {
  fill: transparent;
}
nav svg.shop-dp_svg {
  display: none;
}
nav .shop-list {
  display: none;
  font-size: 16px;
  margin-top: 0;
}
@media (max-width: 1024px) {
  nav {
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    position: absolute;
    width: 100%;
    top: 100%;
    height: 100vh;
    left: 0;
    gap: 14px;
    flex-direction: column;
    background-color: black;
    color: white;
    padding: 1rem;
    transition: ease-in 0.5s;
  }
  nav.show {
    opacity: 1;
    z-index: 3;
    pointer-events: initial;
  }
  nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    gap: 20px;
    padding: 10px 0;
  }
  nav a span {
    color: white !important;
    font-size: 30px !important;
  }
  nav a svg.shop-dp_svg {
    display: block;
    color: white;
  }
  nav a.active + .shop-list {
    display: block;
  }
}

#nav-shop {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: ease-in 0.5s;
  opacity: 0;
  z-index: 8;
  pointer-events: none;
}
#nav-shop.show {
  opacity: 1;
  pointer-events: initial;
}
#nav-shop .nav-shop {
  padding-top: 120px;
  background-color: white;
  padding-bottom: 1px;
}
#nav-shop .swiper-slide {
  width: auto;
}
#nav-shop .card_category {
  width: 340px;
  height: 450px;
}
#nav-shop .swiper-nav {
  padding: 20px 0 30px;
  text-align: center;
}
#nav-shop .swiper-nav .swiper-pagination-bullet {
  position: relative;
  width: 5px;
  height: 5px;
}
#nav-shop .swiper-nav .swiper-pagination-bullet::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.01);
  transition: ease-in 0.3s;
}
#nav-shop .swiper-nav .swiper-pagination-bullet-active {
  transform: scale(2);
  background-color: #1E1E1E;
  margin: 0 10px;
}
#nav-shop .swiper-nav .swiper-pagination-bullet-active::after {
  transform: translate(-50%, -50%) scale(0.6);
}
@media (max-width: 1024px) {
  #nav-shop.show {
    opacity: 0;
    pointer-events: none;
  }
}

#menu {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 990;
  color: white;
}
#menu-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: #1E1E1E;
  will-change: transform;
}
#menu-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 100px;
}
#menu .menu-item {
  width: 100%;
  font-weight: 800;
  font-size: 50px;
  line-height: 0.9;
  cursor: pointer;
}
#menu .menu-item:not(:last-child) {
  margin-bottom: 10px;
}
#menu:not(.show) {
  opacity: 0;
}
#menu:not(.show), #menu:not(.show) * {
  pointer-events: none;
}

.card {
  font-size: clamp(14px, 14 * (100vw / var(--size)), 1000px);
  position: relative;
}
.card .actions_wish_remove {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
}
.card_image {
  display: block;
  width: 100%;
  aspect-ratio: 3.3/5.5;
  position: relative;
  background-size: cover;
  background-position: center;
}
.card_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: ease-out 0.3s;
  opacity: 0;
}
.card_image svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.card.show-popup .card_image {
  opacity: 0.5;
}
.card.show-popup .card_info-popup {
  transform: translateY(0px);
  opacity: 1;
  pointer-events: initial;
}
@media (max-width: 800px) {
  .card.show-popup .card_info-name a {
    color: #AEAEAE;
  }
}
.card_info {
  position: relative;
}
.card_info-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2px 0;
  border-bottom: 1px solid #1E1E1E;
}
.card_info-name a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  transition: ease-in 0.3s;
}
@media (min-width: 800px) {
  .card_info-name a:hover {
    color: white;
    background-color: #1E1E1E;
    transform: scale(0.75);
  }
}
.card_info-name span {
  font-weight: 600;
  text-transform: uppercase;
}
.card_info-price {
  padding: 6px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card_info-price span {
  font-weight: 600;
  color: #AEAEAE;
}
.card_info-price .variables {
  display: flex;
  align-items: center;
  gap: 5px;
}
.card_info-price .variables i {
  width: 14px;
  height: 14px;
  border-radius: 9px;
}
.card_info-popup {
  position: absolute;
  width: 100%;
  padding: 20px;
  bottom: 76px;
  transition: ease-out 0.3s;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}
.card_info-popup_wp {
  background-color: white;
  padding: 20px;
}
.card_info-popup_wp .colors-product {
  text-transform: uppercase;
  margin: 10px 0;
}
.card_info-popup_wp .colors-product_title {
  font-size: clamp(14px, 12 * (100vw / var(--size)), 1000px);
}
.card_info-popup_wp .colors-product_variables {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.card_info-popup_wp .colors-product_variables span {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  border: solid 1px rgba(0, 0, 0, 0.1);
}
.card_info-popup_wp .colors-product_variables span input {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
}
.card_info-popup_wp .colors-product_variables span:has(input:checked)::after {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 100%;
  border: 1px solid #1E1E1E;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.card_info-popup_wp .size-product {
  margin: 16px 0;
  text-transform: uppercase;
}
.card_info-popup_wp .size-product_title {
  font-size: clamp(14px, 12 * (100vw / var(--size)), 1000px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card_info-popup_wp .size-product_title a {
  text-decoration: underline;
}
.card_info-popup_wp .size-product_variables {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 1;
}
.card_info-popup_wp .size-product_box {
  width: 100%;
  margin-top: 10px;
}
.card_info-popup_wp .size-product_box span {
  font-size: clamp(14px, 12 * (100vw / var(--size)), 1000px);
}
.card_info-popup_wp .size-product_box .box-input {
  margin-top: 10px;
}
.card_info-popup_wp .size-product_box .box-input .number-input-container {
  align-items: flex-start;
}
.card_info-popup_wp .size-product_box .box-input .number-input-container button {
  width: 20px;
  font-size: 12px;
  height: 50%;
}
.card_info-popup_wp .size-product_box .box-input .number-input-container button.minus-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.card_info-popup_wp .size-product_box input {
  width: 100%;
  height: 100%;
  font-size: 12px;
  padding: 0;
  margin: 0;
  appearance: none;
  outline: none;
  border: none;
  background-color: transparent;
  text-align: center;
}
.card_info-popup_wp .size-product_box input[type=number]::-webkit-inner-spin-button {
  opacity: 1;
}
.card_info-popup_wp .add_button {
  appearance: none;
  outline: none;
  border: none;
  text-align: center;
  background: transparent;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin: 0;
  color: white;
  border: 1px solid #1E1E1E;
  margin-top: 16px;
  border: 1px solid black;
  font-size: clamp(14px, 13 * (100vw / var(--size)), 1000px);
  position: relative;
}
.card_info-popup_wp .add_button::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background-color: black;
  transition: ease-in 0.2s;
}
.card_info-popup_wp .add_button > span, .card_info-popup_wp .add_button > svg {
  z-index: 1;
}
.card_info-popup_wp .add_button:hover {
  color: #1E1E1E;
}
.card_info-popup_wp .add_button:hover::after {
  left: auto;
  right: 0;
  width: 0;
}
@media (max-width: 800px) {
  .card_info-popup {
    left: -12px;
    width: 100vw;
    bottom: 75px;
    z-index: 3;
    padding: 0px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
}
.card:hover img, .card:hover svg {
  opacity: 1;
}
.card_category {
  position: relative;
  width: 565px;
  height: 646px;
  display: block;
}
@media (max-width: 800px) {
  .card_category {
    width: 80vw;
    height: auto;
    aspect-ratio: 4/3.5;
  }
}
.card_category-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.card_category-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: ease-out 0.3s;
}
.card_category-button {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  left: 30px;
  bottom: 30px;
  transition: ease-out 0.3s;
}
.card_category-button span {
  font-size: clamp(14px, 40 * (100vw / var(--size)), 1000px);
}
.card_category:hover img {
  transform: scale(1.15);
}
.card_category:hover .card_category-button {
  transform: translateX(20px);
  gap: 20px;
}
@media (max-width: 800px) {
  .card:nth-child(even) .card_info-popup {
    right: -12px;
    left: auto;
  }
}

.primary-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  border: none;
  background: transparent;
  padding: 16px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid black;
  background-color: white;
}
.primary-button::after {
  content: "";
  background-color: black;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0;
  transition: ease-in-out 0.2s;
}
.primary-button span {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  position: relative;
  z-index: 1;
  color: white;
  pointer-events: none;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.primary-button span:last-child {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, 150%);
}
@media (min-width: 960px) {
  .primary-button:hover::after {
    right: 0;
    width: 0;
  }
  .primary-button:hover span {
    color: black;
  }
  .primary-button:hover span:first-child {
    transform: translateY(-150%);
    opacity: 0;
  }
  .primary-button:hover span:last-child {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
.primary-button.border {
  background: black;
  border: 1px solid currentColor;
}
.primary-button.border::after {
  background-color: white;
}
.primary-button.border span {
  color: currentColor;
}
.primary-button.border:hover span {
  color: white;
}
.primary-button.ghost {
  border: none;
  background-color: transparent;
  width: auto;
  font-size: clamp(14px, 14 * (100vw / var(--size)), 1000px);
  padding: 4px;
  position: relative;
}
.primary-button.ghost span {
  white-space: nowrap;
  color: black;
}
.primary-button.ghost::after {
  top: auto;
  content: "";
  width: 0;
  height: 1px;
  background-color: black;
  right: 0;
  bottom: 0;
  transition: ease-in 0.3s;
  position: absolute;
}
.primary-button.ghost:hover::after {
  left: 0;
  width: 100%;
}

.hover-button {
  position: relative;
  transition: ease-out 0.3s;
  z-index: 1;
}
.hover-button::after {
  content: "";
  width: calc(100% + 20px);
  height: 150%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  opacity: 0;
  background-color: #1E1E1E;
  transition: ease-out 0.3s;
  transform: translate(-50%, -50%) scale(0.8);
}
.hover-button:hover, .hover-button.active {
  color: white;
  text-decoration: none !important;
}
.hover-button:hover::after, .hover-button.active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 1024px) {
  .hover-button:hover::after, .hover-button.active::after {
    background-color: black;
  }
}
.hover-button.active svg {
  transform: scale(-1);
}

.nav-button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.nav-button::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  border-radius: 50%;
  background: currentColor;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.nav-button svg {
  width: 35%;
  height: auto;
  position: relative;
  z-index: 1;
  fill: #1E1E1E;
}
.nav-button:hover::before {
  transform: scale(1.2);
}

.breadcrumbs {
  color: #1E1E1E;
  text-transform: uppercase;
  font-size: clamp(14px, 11 * (100vw / var(--size)), 1000px);
  display: flex;
  align-items: center;
  height: 66px;
  gap: 10px;
  letter-spacing: 0.06rem;
}
.breadcrumbs a {
  color: #AEAEAE;
  transition: ease-out 0.3s;
}
.breadcrumbs a:hover {
  color: #1E1E1E;
  text-decoration: underline;
}
.breadcrumbs i {
  transform: rotate(-45deg);
  width: 6px;
  height: 6px;
  border-color: #AEAEAE;
  border-width: 0 1px 1px 0;
  border-style: solid;
}

.table {
  width: 100%;
  padding: 10px 0;
}
@media (max-width: 960px) {
  .table {
    overflow-x: scroll;
  }
}
.table_row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.table_row > div {
  flex-shrink: 1;
  font-size: clamp(14px, 14 * (100vw / var(--size)), 1000px);
}
.table_row .image {
  min-width: 68px;
  max-width: 68px;
  background-size: cover;
  aspect-ratio: 4/5;
  border-radius: 2px;
}
.table_row .name {
  width: 250px;
  min-width: 250px;
  font-weight: 500;
}
.table_row .name span {
  color: #AEAEAE;
  display: block;
}
.table_row .color {
  display: flex;
  align-items: center;
  gap: 10px;
}
.table_row .color i {
  width: 14px;
  height: 14px;
  border-radius: 100%;
}
.table_row .quantity .box-input {
  width: 90px;
}
.table_row .quantity .box-input input {
  width: 100%;
  height: 100%;
  font-size: 14px;
  padding: 0;
  margin: 0;
  appearance: none;
  outline: none;
  border: none;
  background-color: transparent;
  text-align: center;
}
.table_row .quantity .box-input input[type=number]::-webkit-inner-spin-button {
  opacity: 1;
}
.table_row .actions {
  text-align: right;
}
.table_row .actions a {
  text-decoration: underline;
}

.tabla-compras_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #AEAEAE;
  font-size: 14px;
  gap: 20px;
}
.tabla-compras_main .row {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.tabla-compras .cell {
  min-width: 150px;
  text-align: center;
}
.tabla-compras .cell:first-child {
  text-align: left;
}
.tabla-compras .action {
  min-width: 150px;
}
.tabla-compras .action a {
  max-width: 150px;
}
.tabla-compras.tabla-pedidos .cell {
  font-size: 13px;
  min-width: 200px;
}
.tabla-compras.tabla-pedidos .cell:first-child {
  min-width: 90px;
}
.tabla-compras.tabla-pedidos .cell:nth-child(2) {
  text-align: left;
  min-width: 250px;
}
.tabla-compras.tabla-pedidos .cell .num {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000000;
  margin: auto;
}
@media (max-width: 1470px) {
  .tabla-compras.tabla-pedidos .cell {
    min-width: 150px;
  }
  .tabla-compras.tabla-pedidos .cell:first-child {
    min-width: 70px;
  }
  .tabla-compras.tabla-pedidos .cell:nth-child(2) {
    text-align: left;
    min-width: 150px;
  }
}

.number-input-container {
  display: flex;
  align-items: center;
  border: 1px solid #333;
  border-radius: 2px;
  overflow: hidden;
  width: auto;
  height: 36px;
  position: relative;
}

.number-input-container button {
  border: none;
  width: 30px;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
  color: #333;
}

.number-input-container button:hover {
  background-color: #f0f0f0;
}

.number-input-container button:active {
  background-color: #e0e0e0;
}

.number-input-container input {
  border: none;
  outline: none;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  flex: 1;
  height: 100%;
  background-color: white;
  color: #333;
}

.minus-btn {
  border-right: 1px solid #ddd;
}

.plus-btn {
  border-left: 1px solid #ddd;
}

/* Ocultar los spinners por defecto del input number */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.content-filters {
  display: flex;
  gap: 24px;
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .content-filters {
    margin-left: auto;
    flex-direction: column;
    align-items: flex-end;
  }
}
.content-filters .filter {
  position: relative;
  z-index: 2;
}
.content-filters .filter-title {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding-bottom: 4px;
}
.content-filters .filter-main {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: ease-out 0.4s;
  position: absolute;
  z-index: 2;
  top: 100%;
  width: 330px;
  padding: 30px;
  background-color: white;
  right: 0;
  font-size: 14px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.content-filters .filter-main strong {
  display: block;
  margin-bottom: 20px;
}
.content-filters .filter-main.mini {
  width: 220px;
}
.content-filters .filter-main .grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  row-gap: 20px;
}
.content-filters .filter-main .grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}
.content-filters .filter-main .grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}
.content-filters .filter-main .grid .item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.content-filters .filter-main .grid .item.color span {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  border: solid 1px rgba(0, 0, 0, 0.1);
}
.content-filters .filter-main .grid .item.color span input {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
}
.content-filters .filter-main .grid .item.color span:has(input:checked)::after {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 100%;
  border: 1px solid #1E1E1E;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.content-filters .filter-main .grid .item.radio input {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  border: solid 1px black;
  appearance: none;
  margin: 0;
  padding: 0;
}
.content-filters .filter-main .grid .item.radio input::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #1E1E1E;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: ease-in 0.3s;
  transform: translate(-50%, -50%) scale(0.5);
}
.content-filters .filter-main .grid .item.radio input:checked::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.content-filters .filter-by:not(.clean) {
  border-bottom: 1px solid #AEAEAE;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.content-filters .filter-by:not(.clean):last-child {
  border-bottom: none;
}
.content-filters .filter.open {
  z-index: 3;
}
.content-filters .filter.open .filter-title {
  border-bottom: 1px solid;
}
.content-filters .filter.open .filter-main {
  transform: translateY(0);
  pointer-events: initial;
  opacity: 1;
}
.content-filters .primary-button span {
  text-transform: none;
}

header {
  width: 100%;
  background-color: white;
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.05);
  position: fixed;
  z-index: 9;
}
header .strip-message {
  background-color: #1E1E1E;
  color: white;
  text-transform: uppercase;
  padding: 6px 0;
  font-size: clamp(14px, 13 * (100vw / var(--size)), 1000px);
}
header .strip-message span {
  display: block;
  text-align: left;
  will-change: transform;
  transform: translateX(100%);
  animation: scroll 25s linear infinite;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  header .strip-message {
    font-size: 11px;
  }
}
header .wrapper {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 1rem;
}
header .actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
header .actions_search {
  display: flex;
  align-items: center;
  gap: 5px;
}
header .actions_search button {
  appearance: none;
  border: none;
  background: transparent;
  outline: none;
}
header .actions_search input {
  appearance: none;
  border: none;
  background: transparent;
  outline: none;
  padding: 0;
  font-size: clamp(14px, 12 * (100vw / var(--size)), 1000px);
  border-bottom: 1px solid #1E1E1E;
}
header .actions_cart {
  position: relative;
}
header .actions_cart small {
  width: 14px;
  height: 14px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #000000;
  color: white;
  font-size: 9px;
}
header .burger, header .submenu {
  display: none;
}
@media (max-width: 1024px) {
  header .wrapper {
    padding: 1rem;
    transition: ease-in 0.5s;
  }
  header .actions {
    gap: 10px;
  }
  header .actions_search {
    display: none;
  }
  header .burger {
    display: flex;
    flex-direction: column;
    width: 40px;
    height: 40px;
    padding: 10px 10px 10px 0;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
  }
  header .burger i, header .burger::after, header .burger::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #1E1E1E;
  }
  header .burger.open::after {
    transform: rotate(45deg) translate(-7px, -7px);
  }
  header .burger.open i {
    transform: rotate(-45deg);
  }
  header .burger.open::before {
    display: none;
  }
  header .logo svg {
    width: 120px;
    margin-left: 20px;
  }
  header.invert .wrapper {
    background-color: black;
    color: white;
  }
  header.invert .wrapper .actions svg {
    filter: invert(1);
  }
  header.invert .wrapper .burger i, header.invert .wrapper .burger::after, header.invert .wrapper .burger::before {
    background-color: white;
  }
}

@keyframes scroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
.related {
  padding-top: 4rem;
  position: relative;
}

header {
  width: 100%;
  background-color: white;
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.05);
  position: fixed;
  z-index: 9;
}
header .strip-message {
  background-color: #1E1E1E;
  color: white;
  text-transform: uppercase;
  padding: 6px 0;
  font-size: clamp(14px, 13 * (100vw / var(--size)), 1000px);
}
header .strip-message span {
  display: block;
  text-align: left;
  will-change: transform;
  transform: translateX(100%);
  animation: scroll 25s linear infinite;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  header .strip-message {
    font-size: 11px;
  }
}
header .wrapper {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 1rem;
}
header .actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
header .actions_search {
  display: flex;
  align-items: center;
  gap: 5px;
}
header .actions_search button {
  appearance: none;
  border: none;
  background: transparent;
  outline: none;
}
header .actions_search input {
  appearance: none;
  border: none;
  background: transparent;
  outline: none;
  padding: 0;
  font-size: clamp(14px, 12 * (100vw / var(--size)), 1000px);
  border-bottom: 1px solid #1E1E1E;
}
header .actions_cart {
  position: relative;
}
header .actions_cart small {
  width: 14px;
  height: 14px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #000000;
  color: white;
  font-size: 9px;
}
header .burger, header .submenu {
  display: none;
}
@media (max-width: 1024px) {
  header .wrapper {
    padding: 1rem;
    transition: ease-in 0.5s;
  }
  header .actions {
    gap: 10px;
  }
  header .actions_search {
    display: none;
  }
  header .burger {
    display: flex;
    flex-direction: column;
    width: 40px;
    height: 40px;
    padding: 10px 10px 10px 0;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
  }
  header .burger i, header .burger::after, header .burger::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #1E1E1E;
  }
  header .burger.open::after {
    transform: rotate(45deg) translate(-7px, -7px);
  }
  header .burger.open i {
    transform: rotate(-45deg);
  }
  header .burger.open::before {
    display: none;
  }
  header .logo svg {
    width: 120px;
    margin-left: 20px;
  }
  header.invert .wrapper {
    background-color: black;
    color: white;
  }
  header.invert .wrapper .actions svg {
    filter: invert(1);
  }
  header.invert .wrapper .burger i, header.invert .wrapper .burger::after, header.invert .wrapper .burger::before {
    background-color: white;
  }
}

@keyframes scroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
#cart {
  overflow: hidden;
  margin-bottom: 0;
}
#cart h2 {
  padding: 2rem 0;
}
#cart .checkout-page {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
#cart .checkout-page .wrapper {
  display: flex;
  gap: 20px;
}
@media (max-width: 960px) {
  #cart .checkout-page .wrapper {
    flex-direction: column;
  }
}
#cart .checkout-page .wrapper .aside {
  font-size: clamp(14px, 14 * (100vw / var(--size)), 1000px);
  position: relative;
  min-width: 450px;
  padding: 40px;
  padding-bottom: 4rem;
}
#cart .checkout-page .wrapper .aside::after {
  content: "";
  width: 50vw;
  height: 100%;
  background-color: white;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
#cart .checkout-page .wrapper .aside > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  #cart .checkout-page .wrapper .aside {
    min-width: 100%;
    padding: 20px;
  }
  #cart .checkout-page .wrapper .aside::after {
    content: "";
    width: 100%;
  }
}
#cart .checkout-page .wrapper .aside_title {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  font-weight: 600;
}
#cart .checkout-page .wrapper .aside_cupon {
  display: flex;
  align-items: center;
  gap: 10px;
}
#cart .checkout-page .wrapper .aside_cupon input {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 1px solid #1E1E1E;
  height: 48px;
  padding: 0 10px;
  background-color: transparent;
  outline: none;
}
#cart .checkout-page .wrapper .aside_amount {
  margin: 30px 0;
}
#cart .end_button {
  appearance: none;
  outline: none;
  border: none;
  background-color: transparent;
  text-align: center;
  width: 100%;
  height: 48px;
  display: block;
  padding: 0;
  margin: 0;
  color: white;
  border: 1px solid #1E1E1E;
  font-size: clamp(14px, 13 * (100vw / var(--size)), 1000px);
}
#cart .end {
  padding: 3rem 0;
  text-align: center;
  align-items: center;
  max-width: 660px;
}
#cart .end h2 span {
  color: #AEAEAE;
}
#cart .end .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 500px;
  margin: auto;
  margin-top: 50px;
}
@media (max-width: 960px) {
  #cart .end .buttons {
    flex-direction: column;
    padding: 0 20px;
  }
}
#cart .end .buttons a:not(.primary-button) {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 10px;
  text-decoration: underline;
}
#cart .end .buttons a:not(.primary-button) svg {
  transition: ease-out 0.3s;
}
#cart .end .buttons a:not(.primary-button):hover svg {
  transform: translateX(-10px);
}

* {
  font-smooth: almays;
  text-shadow: 0px 0px 1px transparent;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  font-weight: 400;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

@-moz-document url-prefix() {
  body {
    font-weight: lighter !important;
  }
}
body, html {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(14px, 16 * (100vw / var(--size)), 1000px);
  background-color: #F8F8F8;
}

main {
  padding-top: 100px;
  width: 100%;
  margin-bottom: 4rem;
}
@media (max-width: 960px) {
  main {
    padding-top: 95px;
  }
}

.flex {
  display: flex;
}

button, a {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-transform: inherit;
  padding: 0;
}
button, button:focus, a, a:focus {
  outline: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  fill: currentColor;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}
.fade-in.show {
  opacity: 1;
}

.fade-in-y {
  opacity: 0;
  transform: translateY(200px);
  transition: opacity 1s ease-in, transform 1s cubic-bezier(0.26, 0.1, 0, 1);
}
.fade-in-y.show {
  opacity: 1;
  transform: none;
}

.underline {
  position: relative;
}
.underline::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 0% 0%;
  transition: transform 1s cubic-bezier(0.49, 0.23, 0, 1);
}
.underline:hover::after {
  transform: scaleX(1);
}

.no-events, .no-events * {
  pointer-events: none !important;
}

.no-transition, .no-transition * {
  transition: none !important;
}

.no-transform {
  transform: none !important;
}

.no-opacity {
  opacity: 0 !important;
}

.no-overflow {
  overflow: hidden !important;
  overflow-y: hidden !important;
}

.vh100 {
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

[data-bg-img] {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

[data-scroll-section]:not([data-scroll-sticky]) {
  will-change: transform;
}

[data-scroll-speed] {
  will-change: transform;
}
