body {
  font-family: Arial, sans-serif;
  background: #f5f7fa;
}

/* SECTION */
.products {
  padding: 40px;
  text-align: center;
}

.products h2 {
  margin-bottom: 30px;
}

/* GRID (4 cards in one row) */
.card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* TITLE */
.card h3 {
  margin: 15px 0;
}

/* BUTTONS */
.btns {
  padding: 15px;
}

.btn {
  display: block;
  padding: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
}

/* PRIMARY BUTTON */
.primary {
  background: #04c3d1;
  color: #fff;
}

/* SECONDARY BUTTON */
.secondary {
  background: #6c757d;
  color: #fff;
}

/* HOVER */
.primary:hover {
  background: #155bd5;
}

.secondary:hover {
  background: #5a6268;
}


@media (max-width: 1024px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .card-container {
    grid-template-columns: 1fr;
  }
}
