
/* Estilos para produtos EXTRA*/
.product-item {
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.product-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-media {
  position: relative;
  overflow: hidden;
}

.product-img img {
  transition: transform 0.3s ease;
}

.product-img:hover img {
  transform: scale(1.05);
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.1rem;
  color: #007bff;
  margin-bottom: 10px;
}

.product-meta {
  font-size: 0.9rem;
  color: #555;
}

.product-actions .add_to_cart_button {
  background: #007bff;
  color: white !important;
  padding: 8px 20px;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.3s ease;
}

.product-actions .add_to_cart_button:hover {
  background: #0056b3;
}

.stock .text-success {
  color: #28a745;
}

.stock .text-danger {
  color: #dc3545;
}