/* ===== PRODUCT PAGE ===== */

.product-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:25px;
}

.product-card{
  background:#161616;
  border-radius:16px;
  overflow:hidden;
  text-align:center;
  transition:.35s;
  padding-bottom:20px;
}

.product-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.product-card h3{
  margin:15px 10px 8px;
}

.product-card p{
  padding:0 15px;
  color:#ccc;
  font-size:0.95rem;
}

.price{
  font-size:1.4rem;
  font-weight:bold;
  color:#00ff9c;
  margin:12px 0;
}

.product-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 30px #00ff9c;
}

.buttons{
  display:flex;
  justify-content:center;
  gap:10px;
}

/* Tablet */
@media(min-width:768px){
  .product-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Desktop */
@media(min-width:1024px){
  .product-grid{
    grid-template-columns:repeat(3,1fr);
  }
}