.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;
}


/* === Premium Light-Luxury Quick Add - Added by ChatGPT === */
.block-product-card__quick-add {
  background: linear-gradient(135deg, #191614 0%, #302920 100%) !important;
  border: 1px solid rgba(190, 143, 70, 0.42) !important;
  box-shadow: 0 8px 18px rgba(24, 22, 20, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.block-product-card__quick-add svg {
  color: #fff !important;
}

.block-product-card__quick-add:hover {
  transform: translateY(-1px);
  border-color: rgba(190, 143, 70, 0.68) !important;
  box-shadow: 0 12px 24px rgba(24, 22, 20, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
}
