/* Products page custom styles */
.product-list {
  padding: 48px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(2,36,91,0.06);
}

.product-card__media {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}

.product-card__excerpt {
  color: #6b7280;
  font-size: .95rem;
  line-height: 1.35;
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.product-card__actions {
  display: flex;
  gap: 8px;
}

@media (min-width: 992px) {
  .product-card {
    flex-direction: row;
    align-items: stretch;
  }
  .product-card__media {
    width: 35%;
    height: auto;
  }
  .product-card__body {
    width: 65%;
  }
}
