/* ===== PRODUCTS MAIN PAGE ===== */
.products-intro {
  padding: 50px 0;
  text-align: center;
}

.products-intro p {
  color: var(--color-text);
  max-width: 800px;
  margin: 0 auto;
}

/* Product Cards */
.products-cards {
  padding: 20px 0 80px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prod-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-bg);
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.prod-card-img {
  overflow: hidden;
}

.prod-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.prod-card:hover .prod-card-img img {
  transform: scale(1.03);
}

.prod-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prod-card-body h3 {
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
  margin-bottom: 10px;
}

.prod-card-body p {
  color: var(--color-text-light);
  margin-bottom: 20px;
  flex: 1;
}

.prod-card-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 8px 30px;
  background: #000;
  color: var(--color-white);
  border-radius: 30px;
  transition: background 0.3s ease;
}

.prod-card:hover .prod-card-btn {
  background: #333;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 750px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .products-cards {
    padding: 20px 20px 80px;
  }
}