/* Product availability styling */
.product-card {
  position: relative;
}

.product-image-container {
  position: relative;
  overflow: hidden;
}

.availability-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.availability-icon i {
  font-size: 20px;
}

.out-of-stock i {
  color: #dc3545;
}

.pending-distribution i {
  color: #ffc107;
}

.product-unavailable .add-to-cart,
.product-unavailable #add-to-cart-btn {
  background-color: #e9ecef !important;
  color: #6c757d !important;
  cursor: not-allowed !important;
  border-color: #ced4da !important;
}

.product-unavailable .product-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.availability-message {
  margin: 15px 0;
  padding: 10px;
  background-color: #f8f9fa;
  border-left: 4px solid #ffc107;
  color: #495057;
}

.availability-message p {
  margin: 5px 0;
}

.availability-message strong {
  color: #dc3545;
}
