*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:"Inter",sans-serif;
  background:#fff;
}

/* HEADER */

.category-header{
  padding:50px 40px 20px;
}

.category-header h1{
  font-size:32px;
  margin-bottom:10px;
}

.category-header p{
  color:#777;
}

/* GRID */

.category-products{
  padding:20px 40px 60px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* CARD */

.product-card{
  cursor:pointer;
  transition:.3s;
}

.product-card:hover{
  transform:translateY(-4px);
}

.product-image{
  width:100%;
  aspect-ratio:3/4;
  overflow:hidden;
  background:#f5f5f5;
  border-radius:12px;
}

.product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.product-info{
  padding-top:10px;
}

.product-info h4{
  font-size:15px;
  margin-bottom:5px;
}

.product-info span{
  font-weight:600;
}

/* PROMO */

.price-row{
  display:flex;
  gap:10px;
  align-items:center;
}

.old-price{
  color:#999;
  text-decoration:line-through;
}

.new-price{
  color:#e60023;
  font-weight:700;
}

/* MOBILE */

@media(max-width:900px){

  .category-header{
    padding:30px 20px;
  }

  .category-products{
    padding:20px;
  }

  .product-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
  }

}