.product-card .card-add {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 39px;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  min-height: 39px;
  border: 0;
  background: #263d30;
  color: #fff;
  padding: 13px;
  font: inherit;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(0.5rem);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

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

.product-card .card-add:hover,
.product-card .card-add:focus-visible {
  background: #fff;
  color: #263d30;
  outline: none;
}

@media (max-width: 767px) {
  .product-card .card-add {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}
