/** Shopify CDN: Minification failed

Line 24:15 Expected identifier but found whitespace
Line 24:20 Unexpected "0.3s"

**/
/* .quick-add {
  position: relative;
  grid-row-start: 4;
  margin: 0 0 1rem;
  z-index: 1;
} */

/* .quick-add {
    position: absolute;
    grid-row-start: 4;
    margin: 0 0 1rem;
    z-index: 1;
    top: -536px !important;
    right: 18px;

    opacity: 0;
    transform: translateX(15px); /* right side se hidden */
    transition: all 0.3s ease;
}  */

/* .quick-add {
  position: absolute !important;
  bottom: 12px !important;
  right: 12px !important;
  top: unset !important;
  z-index: 10 !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
}
.card__inner {
  position: relative !important;
} */




/* .card__inner .quick-add {
  position: absolute !important;
  top: 12px !important;
  left: unset !important;
  right: -50px !important; 
  width: fit-content !important;
  height: fit-content !important;
  margin: 0 !important;
  z-index: 20 !important;
  opacity: 0;
  transition: all 0.3s ease !important;
} */

/* .card:hover .card__inner .quick-add {
  right: 12px !important; 
  opacity: 1;
} */

.card--card.gradient, .card__inner.gradient{
    overflow: hidden !important;

}
.card__inner {
  position: relative !important;
  overflow: hidden !important;
}
/* Hover bar that lives at the bottom edge of the card image.
   Position is rigorously full-bleed across the bottom of `.card__inner`
   (which is `position: relative; overflow: hidden;`) so the bar can
   never visually shift the image — a previous regression where a
   `transform: translate(-50%)` (with no `left: 50%`) pulled the bar,
   and visually the card thumbnail along with it, off to the left.

   Uses opacity + translateY for a soft slide-in (compositor-only
   properties so it stays GPU-accelerated). Pointer-events are gated
   so the bar doesn't catch clicks until it's actually visible. */
.card__inner .quick-add {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  top: auto !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 20 !important;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  pointer-events: none;
}

.card:hover .card__inner .quick-add,
.card:focus-within .card__inner .quick-add {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.card--card .quick-add {
  margin: 0 !important;
}

.quick-add-modal {
  box-sizing: border-box;
  opacity: 0;
  position: fixed;
  visibility: hidden;
  z-index: -1;
  margin: 0 auto;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(var(--color-foreground), 0.2);
  height: 100%;
}

.quick-add-modal[open] {
  opacity: 1;
  visibility: visible;
  z-index: 101;
}

.quick-add-modal .scroll-trigger.scroll-trigger {
  animation: none;
  opacity: 1;
  transform: none;
}

.quick-add-modal .quick-order-list__container {
  padding-bottom: 1.5rem;
}

.quick-add-modal__content.quick-add-modal__content--bulk {
  width: 90%;
}

.quick-add-modal__content {
  --modal-height-offset: 3.2rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: var(--modal-height-offset) auto 0;
  width: 100%;
  background-color: rgb(var(--color-background));
  overflow: hidden;
  max-width: var(--page-width);
  width: calc(100% - 3rem);
}

@media screen and (min-width: 750px) {
  .quick-add-modal__content {
    --modal-height-offset: 10rem;
    margin-top: var(--modal-height-offset);
    width: 80%;
    max-height: calc(100% - var(--modal-height-offset) * 2);
    overflow-y: auto;
  }

  quick-add-modal .quick-add-modal__toggle {
    top: 2rem;
    right: 2rem;
  }
}

@media screen and (min-width: 990px) {
  .quick-add-modal__content {
    width: 70%;
  }
}

.quick-add-modal__content img {
  max-width: 100%;
}

.quick-add-modal__content-info.quick-add-modal__content-info--bulk {
  padding-bottom: 0;
}

.quick-add-modal__content-info--bulk h3 {
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.quick-add-modal__content-info--bulk .price,
.quick-add-modal__content-info--bulk .card__information-volume-pricing-note {
  display: inline-block;
}

.section-bulk-quick-order-list-padding {
  padding-top: 2.7rem;
  padding-bottom: 2.7rem;
}

@media screen and (min-width: 750px) {
  .section-bulk-quick-order-list-padding {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }

  .quick-add-modal__content-info--bulk .card__information-volume-pricing-note {
    padding-left: 1.6rem;
  }
}

@media screen and (min-width: 990px) {
  .quick-add-modal__content-info.quick-add-modal__content-info--bulk {
    overflow-y: initial;
  }

  .quick-add-modal__content-info--bulk .quick-order-list__table th {
    padding-top: 2.5rem;
  }

  .quick-add-modal__content-info--bulk thead {
    position: sticky;
    z-index: 3;
    top: 0;
    background-color: rgb(var(--color-background));
  }
}

.quick-add-modal__content-info--bulk .quick-add__product-media,
.quick-add-modal__content-info--bulk .quick-add__product-container,
.quick-add-modal__content-info--bulk .quick-add__info {
  width: 4.8rem;
  height: 7rem;
}

.quick-add-modal__content-info--bulk-details {
  padding-left: 1rem;
}

.quick-add-modal__content-info--bulk-details > a:hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

@media screen and (min-width: 990px) {
  .quick-add-modal__content-info--bulk .quick-add__product-media,
  .quick-add-modal__content-info--bulk .quick-add__product-container,
  .quick-add-modal__content-info--bulk .quick-add__info {
    width: 17rem;
    height: 22rem;
  }

  .quick-add-modal__content-info--bulk-details,
  .quick-add-modal__content-info--bulk quick-order-list {
    padding: 0 2.5rem;
  }
}

.quick-add__product-media {
  margin-bottom: 1rem;
}

.quick-add-modal__content-info--bulk .quick-add__product-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-add-modal__content-info--bulk .quick-add__info {
  display: flex;
}

.quick-add-modal__content-info--bulk .quick-add__content-info__media {
  width: auto;
}

@media screen and (max-width: 989px) {
  .quick-add-modal__content-info--bulk .quick-add__content-info__media {
    display: flex;
    margin: 0;
  }

  .quick-add-modal__content-info--bulk quick-order-list {
    padding-left: 0;
    padding-right: 0;
  }

  .quick-add-modal__content-info.quick-add-modal__content-info--bulk {
    --modal-padding: 1.5rem;
  }
}

@media screen and (min-width: 990px) {
  .quick-add-modal__content-info--bulk .quick-add__info {
    flex-direction: column;
    position: sticky;
    top: 0;
    margin-top: -2.5rem;
    padding-top: 2.5rem;
  }
}

@media screen and (max-width: 989px) {
  .quick-add-modal__content-info--bulk {
    flex-direction: column;
  }
}

.quick-add-modal__content-info {
  --modal-padding: 2.5rem;
  padding-right: 4.4rem;
  display: flex;
  overflow-y: auto;
  overflow-x: hidden;
  padding: var(--modal-padding);
  height: 100%;
}

.quick-add-modal__content-info > * {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}

.quick-add-modal__content-info > product-info {
  padding: 0;
}

@media screen and (max-width: 749px) {
  quick-add-modal .slider .product__media-item.grid__item {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .quick-add-modal__content {
    bottom: var(--modal-height-offset);
  }

  .quick-add-modal__content-info > * {
    max-height: 100%;
  }

  quick-add-modal .product--mobile-columns .product__media-item {
    width: calc(100% - 3rem - var(--grid-mobile-horizontal-spacing));
  }
}

.quick-add-modal__toggle {
  background-color: rgb(var(--color-background));
  border: 0.1rem solid rgba(var(--color-foreground), 0.1);
  border-radius: 50%;
  color: rgba(var(--color-foreground), 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 1.2rem;
  z-index: 5;
  width: 4rem;
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
}

.quick-add-modal__toggle:hover {
  color: rgba(var(--color-foreground), 0.75);
}

.quick-add-modal__toggle .icon {
  height: auto;
  margin: 0;
  width: 2.2rem;
}

quick-add-modal .product:not(.featured-product) .product__view-details {
  display: block;
}

.quick-add-modal__content--bulk .product__view-details .icon {
  margin-left: 1.2rem;
}

quick-add-modal .quick-add-hidden,
quick-add-modal .product__modal-opener:not(.product__modal-opener--image),
quick-add-modal .product__media-item:not(:first-child) {
  display: none !important;
}

quick-add-modal .slider.slider--mobile {
  overflow: visible;
}

quick-add-modal .product__column-sticky .product__media-list {
  margin-bottom: 0;
}

quick-add-modal .product__media-list .deferred-media {
  display: block;
  width: 100%;
}

quick-add-modal .product__column-sticky {
  top: 0;
  position: relative;
}

@media screen and (min-width: 750px) {
  quick-add-modal .product:not(.product--no-media) .product__media-wrapper {
    max-width: 45%;
    width: calc(45% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  quick-add-modal .product:not(.product--no-media) .product__info-wrapper {
    padding-top: 2rem;
    padding-left: 4rem;
    max-width: 54%;
    width: calc(54% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  quick-add-modal .product--columns .product__media-item:not(.product__media-item--single):not(:only-child) {
    max-width: 100%;
    width: 100%;
  }

  quick-add-modal .thumbnail-slider .thumbnail-list.slider--tablet-up {
    display: none;
  }
}

quick-add-modal .page-width {
  padding: 0;
}

quick-add-modal .product__title > h1 {
  display: none;
}

quick-add-modal .product__title > a {
  display: block;
  text-decoration: none;
}

quick-add-modal .product-form__buttons {
  max-width: initial;
}

.quick-add__submit {
  padding: 1rem;
  min-width: 100%;
  box-sizing: border-box;
}

quick-add-modal .product-media-container.constrain-height {
  --viewport-offset: calc((var(--modal-height-offset) + var(--modal-padding) + var(--popup-border-width)) * 2);
}

@media screen and (min-width: 750px) {
  quick-add-modal .product-media-container.constrain-height {
    --constrained-min-height: 400px;
  }
}

quick-add-bulk {
  position: relative;
  grid-row-start: 4;
  margin: 0 0 1rem;
  z-index: 1;
}

.card__content quick-add-bulk .quantity {
  width: 100%;
}

quick-add-bulk .progress-bar-container {
  position: absolute;
  height: 100%;
  display: flex;
  overflow: hidden;
  border-radius: var(--inputs-radius-outset);
  border: var(--inputs-border-width) solid transparent;
  z-index: -1;
}

quick-add-bulk quantity-input {
  justify-content: space-between;
}

quick-add-bulk .quantity__input {
  max-width: calc(6.5rem / var(--font-body-scale));
  flex-grow: 0;
}

.quantity__input-disabled {
  pointer-events: none;
}

/* ------------------------------------------------------------------
   Touch-device override — small floating cart icon at TOP-RIGHT
   ------------------------------------------------------------------
   Lives at the END of this file on purpose: the cascade order is
   `base.css` → `quick-add.css`, so the rules below correctly defeat
   the desktop full-width-bar rules earlier in this file.

   Why top-right (not bottom-left like the original draft):
     • The merchant uses the bottom-left corner for the sale / sold-
       out badge (theme setting `badge_position: bottom left`), so
       a bottom-left cart icon would have collided with the badge.
     • Top-right is the canonical "secondary action" position on
       mobile cards (Pinterest save, Instagram bookmark, Amazon
       wishlist, ASOS / Zara save) — customers' thumbs already know
       to find action affordances there.
     • Sits above the price text in the card stack, so it never
       fights the card title or price for visual attention.

   Note: if a merchant changes `badge_position` to `top right` in
   Theme settings, the badge and this cart chip will overlap. We
   pick top-right anyway because the merchant's current setting is
   `bottom left` and that's the dominant pattern across the catalog.

   Visibility is class-driven by `card-quick-add-reveal.js`:
     • Initial state: hidden, scaled down 85 %, no pointer events
       (so the underlying card link receives the tap and the user
       navigates to the PDP normally).
     • `.is-revealed` is toggled on by the helper script when the
       card scrolls into view OR the user touches the card. Drops
       it back off after ~3 s.
   ------------------------------------------------------------------ */
@media (hover: none) {
  .card__inner .quick-add {
    top: 10px !important;
    right: 10px !important;
    left: auto !important;
    bottom: auto !important;
    width: auto !important;
    opacity: 0 !important;
    transform: scale(0.85) !important;
    transform-origin: top right;
    transition: opacity 0.28s ease,
                transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    pointer-events: none !important;
  }

  .card__inner .quick-add.is-revealed {
    opacity: 1 !important;
    transform: scale(1) !important;
    pointer-events: auto !important;
  }
}

@media (hover: none) and (prefers-reduced-motion: reduce) {
  .card__inner .quick-add {
    transition: opacity 0.2s linear !important;
    transform: none !important;
  }
  .card__inner .quick-add.is-revealed {
    transform: none !important;
  }
}
