.block-product-card__quick-add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid rgb(0 0 0 / 5%);
  border-radius: 50%;
}

.block-product-card__quick-add svg {
  width: 17px;
  height: 17px;
  color: #29252c;
}

@media (max-width: 959px) {
  .block-product-card__quick-add {
    width: 32px;
    height: 32px;
    border: 1px solid rgb(var(--color-light-text) / 100%);
  }
}

.block-product-card__quick-add .icon-loading {
  display: none;
  margin: 8px;
  color: rgb(255 255 255 / 100%);
  animation: animation-button-loading linear 1.5s infinite;
}

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

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

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


/* Collection pages should show clean product tiles without the quick-add overlay. */
body[data-page-type="collection"] .block-product-card__quick-add {
  display: none !important;
}


/* Product detail recommendations should keep clean product cards. */
body[data-page-type="product"] .block-product-card__quick-add {
  display: none !important;
}


/* Match homepage product-card presentation on product-page recommendations. */
body[data-page-type="product"] .block-product-card__image-wrapper > .block-product-card__image {
  object-fit: contain !important;
}
body[data-page-type="product"] .block-product-card__discount-tag {
  display: none !important;
}
body[data-page-type="product"] .block-product-card .block-product-buy-button,
body[data-page-type="product"] .block-product-card .block-product-buy-button-wrapper .button {
  box-sizing: border-box !important;
  min-height: 38px !important;
  width: 100% !important;
  border: 1px solid #0c2074 !important;
  border-radius: 6px !important;
  background: #fff !important;
  color: #0c2074 !important;
}


/* Mobile product-page cards: two complete columns with readable German actions. */
@media (max-width: 959px) {
  body[data-page-type="product"] .block-product-card .block-product-buy-button,
  body[data-page-type="product"] .block-product-card .block-product-buy-button-wrapper .button {
    min-height: 36px !important;
    padding: 0 8px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }
  body[data-page-type="product"] .block-product-card-info {
    gap: 8px !important;
  }
}
