/* Copyright (C) YOOtheme GmbH, http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only */

div.zoo-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin: 0 !important;
  padding: 0;
  list-style: none;
  max-width: 1400px;
  margin: 0 auto;
}
.productNewItem {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  width: 100%;
  height: auto;
}
.productNewItem:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.productNewItem p {
  font-size: 16px;
  line-height: 1.4;
  background-color: #f8f9fa;
  margin: 0;
  padding: 16px 20px 20px;
  font-weight: 500;
  text-align: left;
  align-items: center;
  a {
    color: #2c3e50 !important;
  }
}
.productNewItem img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border: none;
  border-radius: 0;
  transition: opacity 0.3s ease;
  background-color: #fff;
  padding: 10px;
}
.productNewItem img:hover {
  opacity: 0.9;
}
