/* ===== MAIN PAGE ===== */
.main-page {
  margin-top: 30px;
  background: #ffffff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.catalog-title {
  font-size: 28px;
  margin-bottom: 24px;
  text-align: center;
  color: #1f2933;
}

/* ===== GRID КАРТОЧОК ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}

.product-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.product-card a {
  text-decoration: none;
  color: inherit;
}

.product-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.product-name {
  font-size: 16px;
  color: #1f2933;
  margin: 8px 0;
  height: 40px; /* фіксована висота для однакових рядів */
  overflow: hidden;
}

.product-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.product-price .price {
  font-weight: 700;
  color: #dc2626;
  font-size: 18px;
}

.product-price .old-price {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 14px;
}

.product-link {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  background: #16a34a;
  color: #ffffff;
  border-radius: 999px;
  transition: background 0.2s;
}

.product-link:hover {
  background: #15803d;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
  }

  .product-img {
    width: 120px;
    height: 120px;
  }

  .product-name {
    font-size: 14px;
    height: auto;
  }

  .product-price .price {
    font-size: 16px;
  }
}
