/* Out of Stock Product Styles */
.product-item.out-of-stock {
  opacity: 0.7;
}

.product-item.out-of-stock .product-image {
  filter: grayscale(50%);
}

.out-of-stock-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.out-of-stock-badge {
  background-color: rgba(220, 53, 69, 0.9);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.out-of-stock-text {
  margin-top: 8px;
}

.out-of-stock-text small {
  color: #dc3545 !important;
  font-weight: 500;
}

/* Out of stock items hide the Add to Cart button completely */