/*
 * Unified product-card Quick add control.
 * Hidden by default. Desktop: reveal only while the pointer is over the
 * matching product image. Mobile: reveal only when card.js marks the image
 * touched during a swipe.
 */
.block-product-card__quick-add-position {
  position: absolute;
  inset-inline: 12px;
  inset-block-end: 12px;
  z-index: 4;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: visibility 0s linear 180ms, opacity 180ms ease, transform 180ms ease;
}

@media (min-width: 960px) {
  :is(
      .block-product-image__layer-image-wrapper,
      .block-product-card__layer-image-wrapper
    ):hover
    .block-product-card__quick-add-position,
  :is(
      .block-product-image__layer-image-wrapper,
      .block-product-card__layer-image-wrapper
    ).hover
    .block-product-card__quick-add-position,
  .block-product-card__quick-add-position:focus-within {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
}

.block-product-card__quick-add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 10px 16px;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  list-style: none;
  transition: color 160ms ease, opacity 160ms ease;
}

.block-product-card__quick-add::-webkit-details-marker {
  display: none;
}

.block-product-card__quick-add:hover {
  color: #111;
  background: #fff;
  opacity: 0.94;
}

.block-product-card__quick-add.disabled,
.block-product-card__quick-add:disabled {
  color: rgb(17 17 17 / 45%);
  cursor: not-allowed;
}

.block-product-card__quick-add-label {
  display: inline-block;
}

.block-product-card__quick-add .icon-loading {
  display: none;
  width: 18px;
  height: 18px;
  margin: 0;
  color: currentColor;
  animation: animation-button-loading linear 1.5s infinite;
}

.block-product-card__quick-add.loading {
  pointer-events: none;
}

.block-product-card__quick-add.loading .block-product-card__quick-add-label {
  display: none;
}

.block-product-card__quick-add.loading .icon-loading {
  display: block;
}

@media (max-width: 959px) {
  .block-product-card__quick-add-position {
    inset-inline: 8px;
    inset-block-end: 8px;
  }

  :is(
      .block-product-image__layer-image-wrapper,
      .block-product-card__layer-image-wrapper
    ).mobile-quick-add-visible
    .block-product-card__quick-add-position,
  .block-product-card__quick-add-position:focus-within {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .block-product-card__quick-add {
    min-height: 42px;
    padding: 8px 12px;
    color: #111;
    font-size: 13px;
    background: #fff;
    border: 0;
    box-shadow: none;
  }
}
