/* Shop Page Styles */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-item {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease, padding 0.3s ease, border-radius 0.3s ease;
  outline: none;
  box-shadow: none;
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.08);
  border-color: var(--brand-accent);
  background: var(--brand-primary);
  padding: 1rem;
  border-radius: 8px;
}

.product-item img {
  width: 100%;
  height: 220px; /* Adjusted height */
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.product-item h5,
.product-item p {
  color: var(--brand-text);
}