*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Inter, Arial, sans-serif;
}

body{
  background:#f4f6fb;
  color:#1f2937;
}

/* HEADER */
.header{
  background:#111827;
  padding:20px;
  text-align:center;
}

.logo{
  color:#ffffff;
  font-size:26px;
  font-weight:700;
}

/* LAYOUT */
.container{
  max-width:1200px;
  margin:40px auto;
  padding:0 20px;
}

.section-title{
  text-align:center;
  font-size:28px;
  margin-bottom:40px;
}

/* PRODUCT GRID */
.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
  gap:30px;
}

.product-card{
  background:#ffffff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:transform .3s ease;
}

.product-card:hover{
  transform:translateY(-6px);
}

.product-image img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.product-info{
  padding:20px;
  text-align:center;
}

.product-info h3{
  font-size:18px;
  margin-bottom:10px;
}

.price{
  font-size:18px;
  font-weight:700;
  color:#2563eb;
  margin-bottom:15px;
}

/* BUTTON */
.btn{
  display:inline-block;
  background:#2563eb;
  color:#ffffff;
  padding:10px 18px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}

.btn:hover{
  background:#1e40af;
}

/* EMPTY STATE */
.no-product{
  text-align:center;
  font-size:16px;
  color:#6b7280;
}
