/** Shopify CDN: Minification failed

Line 7:1 Expected identifier but found "."
Line 111:0 Unexpected "}"

**/
..drawer__inner-empty {
  padding: var(--main-padding);
  border-top: 1px solid rgb(var(--color-border));
}

.cart__empty-text {
  margin: 0 0 2.4rem;
}

.drawer.active .drawer__inner {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  z-index: calc(var(--header-z-index) + 10);
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  transition: visibility var(--duration-default) ease;
}
.drawer.active {
  visibility: visible;
}
.drawer__contents {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.drawer__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 60rem;
  max-width: 100vw;
  background-color: rgb(var(--color-background));
  filter: drop-shadow(0px 4rem 6rem rgba(var(--color-foreground), 0.05));
  overflow: hidden;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-long) ease;
}
[dir=rtl] .drawer__inner {
  transform: translateX(-100%);
}
.drawer .drawer__heading-wrapper {
  padding: var(--main-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer .drawer__heading-wrapper {
  padding: 2.4rem var(--main-padding);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.drawer .drawer__heading-wrapper .drawer__heading {
  margin: 0;
  flex: 1;
  max-width: 100%;

  font-size: clamp(2rem, 2.5vw, 2.8rem) !important;
  line-height: 1.05 !important;
  font-weight: 500 !important;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

/* Botón cerrar siempre arriba a la derecha */
html[dir="ltr"] .drawer .drawer__header button.drawer__close,
html[dir="rtl"] .drawer .drawer__header button.drawer__close,
.drawer .drawer__header button.drawer__close {
  position: absolute !important;
  top: 2.4rem !important;
  right: 2.4rem !important;
  left: auto !important;
  margin: 0 !important;
  transform: none !important;
  z-index: 50 !important;
}

/* Referencia de posición */
.drawer .drawer__inner {
  position: relative !important;
}

.drawer .drawer__header {
  position: static !important;
}

/* Espacio para que el título no choque con el botón */
.drawer .drawer__heading-wrapper {
  padding-right: 12rem !important;
}
}

.drawer .drawer__heading-wrapper {
  flex: 1;
}

.drawer__footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: auto;
  padding: var(--main-padding);
  gap: 2.4rem;
  border-top: 1px solid rgb(var(--color-border));
  position: relative;
}
.drawer .cart-item {
  padding: 3.2rem var(--main-padding);
  border-bottom: 0.1rem solid rgb(var(--color-border));
}
.drawer .cart-item__details {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.drawer .cart-item__inner-top {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem 1.2rem;
}
.drawer .cart-item__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.drawer .cart-item__media svg,
.drawer .cart-item__media img,
.drawer .cart-item__media video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: all var(--duration-long) ease;
}
.drawer .cart-item__media:before {
  content: "";
  display: block;
  padding-bottom: 135%;
}
.drawer .cart-item__link {
  display: block;
  background: transparent;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: var(--border-radius);
}
@media screen and (hover: hover) and (pointer: fine) {
  .drawer .cart-item__link:hover + img {
    transform: scale(1.05);
  }
}
.drawer .cart-item__link:empty {
  display: block;
}
.drawer .cart-item__link:focus-visible {
  outline-offset: -0.1rem;
}
.drawer .cart-item__name {
  display: block;
  transition: opacity var(--duration-default) linear;
}
.drawer .cart-item__name:hover {
  opacity: 0.7;
}
.drawer .cart-item__collection-name {
  margin-bottom: 0.2rem;
}
.drawer .cart-item__details-header {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.8rem;
}
.drawer .cart-item dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 2rem;
}
.drawer .cart-item .product-option {
  display: flex;
  flex-wrap: wrap;
  color: rgb(var(--color-foreground));
  cursor: default;
}
.drawer .cart-item .product-option dd {
  margin: 0;
  color: rgb(var(--color-foreground-title));
}
.drawer .cart-item__totals {
  position: relative;
}
.drawer .cart-item__totals .loading-overlay {
  position: absolute;
  z-index: 1;
  width: 1.8rem;
  left: 0;
  top: 0;
  bottom: 0;
}
.drawer .cart-item__totals .loading-overlay:not(.hidden) + .cart-item__price-wrapper {
  opacity: 0.5;
}
.drawer .cart-item__totals .loading-overlay__spinner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.8rem;
  height: 100%;
  transform: translateY(-50%);
}
.drawer .cart-item__price-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.drawer .cart-item__discounted-prices {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  column-gap: 0.6rem;
}
.drawer .cart-item__quantity-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
}
.drawer .cart-item__quantity-price .field {
  width: auto;
}
.drawer .cart-item__error {
  display: flex;
  align-items: center;
}
.drawer .cart-item__error-text {
  font-size: 1.2rem;
  line-height: var(--font-body-line-height);
  order: 1;
  margin-top: 0.4rem;
}
.drawer .cart-item__error-text:empty + svg {
  display: none;
}
.drawer .cart-item__error-text + svg {
  flex-shrink: 0;
  width: 1.2rem;
  margin-right: 0.7rem;
  margin-top: 0.4rem;
}
.drawer .totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}
.drawer .totals .totals__subtotal {
  margin: 0;
}
.drawer .cart-drawer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.8rem 2.4rem;
}
@media screen and (min-width: 576px) {
  .drawer .cart-drawer__bottom {
    flex-direction: row;
  }
}
.drawer .cart-drawer__bottom .button {
  width: 100%;
}
.drawer .cart-products__swiper {
  max-width: 100%;
}
.drawer .cart-products__swiper .cart-products__swiper-wrapper {
  height: auto;
}
.drawer .cart-products__swiper .card-wrapper {
  padding: 0;
  margin: 2.4rem;
  background-color: transparent;
}
.drawer .cart-products__swiper .cart-products__swiper-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgb(var(--color-border));
  border-bottom: 1px solid rgb(var(--color-border));
}
.drawer .cart-products__swiper .drawer_slider_heading {
  padding: 1.2rem 2.4rem;
  margin: 0;
}
.drawer .cart-products__swiper .swiper-btn__wrapper {
  display: flex;
  justify-content: flex-end;
}
.drawer .cart-products__swiper .cart-swiper-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgb(var(--color-border));
  cursor: pointer;
  transition: all var(--duration-default) linear;
}
.drawer .cart-products__swiper .cart-swiper-btn svg {
  transition: all var(--duration-default) linear;
}
.drawer .cart-products__swiper .cart-swiper-btn:hover svg {
  opacity: 0.6;
}
.drawer .cart-products__swiper:has(.swiper:not(.swiper-initialized)) .swiper-btn__wrapper {
  display: none;
}

.cart-drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(var(--color-overlay), 0.3);
}
.cart-drawer__overlay:empty {
  display: block;
}
.cart-drawer__footer .totals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 2rem;
}
.cart-drawer .tax-note {
  display: block;
  color: rgba(var(--color-foreground));
}
.cart-drawer #Details-CartDrawer textarea {
  resize: none;
}
.cart-drawer #Details-CartDrawer summary {
  margin-bottom: 4.8rem;
}
.cart-drawer #Details-CartDrawer .summary__title {
  pointer-events: none;
}
.cart-drawer #Details-CartDrawer #CartDrawer-Note {
  margin-bottom: 2rem;
}

cart-drawer-items.is-empty + .drawer__footer {
  display: none;
}

cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}

.cart-drawer__form {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
}

cart-drawer-items {
  overflow: auto;
}

@media screen and (max-height: 650px) {
  cart-drawer-items {
    overflow: visible;
  }

  .drawer__inner {
    overflow-y: scroll;
  }
}
.cart-drawer .unit-price {
  margin-top: 0.6rem;
}

cart-drawer-items::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

cart-drawer-items::-webkit-scrollbar-thumb {
  background-color: rgba(var(--color-foreground), 0.7);
  border-radius: 100px;
}

.cart_note-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 12;
  width: 100%;
  height: auto;
  background-color: rgb(var(--color-background));
  display: block;
  opacity: 0;
  transition: opacity var(--duration-default) ease;
  padding: var(--main-padding);
}
.cart_note-wrapper .field {
  flex-direction: column;
}

#cart_note-close {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  z-index: 2;
}

#Details-CartDrawer[open] .cart_note-wrapper {
  opacity: 1;
}

.cart__note-label {
  margin-bottom: 0.8rem;
  display: inline-block;
}

.option-color-swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  position: relative;
  flex: none;
  margin-right: 4px;
  display: block;
}
.option-color-swatch:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--swatch-border-radius);
  border: 0.1rem solid var(--swatch-border);
  box-shadow: 0px 0px 1px 0px var(--swatch-bg);
  background-color: var(--swatch-color);
}
.option-color-swatch::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  transition: all var(--duration-default) linear;
  height: 1px;
  background: currentColor;
}

.product-option-color {
  display: flex;
  align-items: center;
  padding: 6px;
  border-radius: var(--border-radius-button);
  border: 1px solid rgb(var(--color-border));

  /* Botón cerrar del carrito siempre a la derecha */
.drawer .drawer__header .drawer__close,
.drawer__header .drawer__close,
button.drawer__close {
  position: absolute !important;
  top: 2.4rem !important;
  right: 2.4rem !important;
  left: auto !important;
  margin: 0 !important;
  transform: none !important;
  z-index: 30 !important;
}

/* El contenedor permite posicionar el botón correctamente */
.drawer .drawer__header {
  position: relative !important;
  width: 100% !important;
}

/* Dejar espacio para que el título no choque con Cerrar */
.drawer .drawer__heading-wrapper {
  padding-right: 11rem !important;
}
}