.woo-product-cell {
  background: #fff;
  box-shadow: 0 4px 24px rgba(60, 60, 60, 0.08),
    0 1.5px 4px rgba(60, 60, 60, 0.06);
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 12px 0;
  animation: fadeInUp 0.7s;
}

.woo-product-image img {
  border-radius: 16px 16px 0 0;
  object-fit: cover;
  height: 180px;
  width: 100%;
  transition: transform 0.3s;
}

.woo-product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 12px 0 0;
  color: #222;
  min-height: 2.4em;
}
.woo-product-price {
  color: #1abc9c;
  font-weight: bold;
  font-size: 1.05rem;
  margin: 8px 0 12px;
}
.add-to-cart-form button {
  background: linear-gradient(90deg, #1abc9c 0%, #16a085 100%);
  color: #fff;
  border: none;
  padding: 10px 0;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(30, 200, 160, 0.08);
}
.add-to-cart-form button:active {
  background: #16a085;
}
.add-to-cart-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.view-cart-msg .product_view_cart {
  background: #1abc9c;
  color: #fff;
  border-radius: 8px;
  padding: 8px 0;
  display: block;
  margin-top: 8px;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.view-cart-msg .product_view_cart:hover {
  background: #16a085;
}
@media (max-width: 768px) {
  .woo-product-image img {
    height: 120px;
  }
}
