.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-shell {
  background: rgba(44, 36, 32, 0.04);
  padding: 0.5rem;
  border-radius: calc(var(--radius-xl) + 0.375rem);
  border: 1px solid rgba(44, 36, 32, 0.04);
  transition: var(--transition);
  position: relative;
  animation: fadeInUp 0.7s cubic-bezier(0.32, 0.72, 0, 1) both;
  display: flex;
  flex-direction: column;
}
.product-shell:nth-child(1) { animation-delay: 0.1s; }
.product-shell:nth-child(2) { animation-delay: 0.15s; }
.product-shell:nth-child(3) { animation-delay: 0.2s; }
.product-shell:nth-child(4) { animation-delay: 0.25s; }
.product-shell.hide {
  display: none !important;
}
.product-shell:hover {
  background: rgba(44, 36, 32, 0.06);
  border-color: rgba(44, 36, 32, 0.08);
  transform: translateY(-4px);
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(44, 36, 32, 0.04);
  transition: var(--transition);
  flex: 1;
  width: 100%;
}
.category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(253, 251, 247, 0.9);
  color: var(--espresso-muted);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 2;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(44, 36, 32, 0.04);
}
.product-image-container {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.32, 0.72, 0, 1);
}
.product-shell:hover .product-image {
  transform: scale(1.06);
}
.product-info {
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: left;
}
.product-info h3 {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.price {
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0.35rem 0 1rem;
}
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
