.shop-hero{
  padding:60px 0 35px;
  text-align:center;
}

.shop-hero h1{
  font-family:var(--title);
  font-size:clamp(42px,5vw,68px);
  margin:12px 0;
}

.shop-hero p{
  color:var(--muted);
  font-size:18px;
  max-width:700px;
  margin:0 auto;
}

.shop-page{
  padding:20px 0 90px;
}

.shop-filters{
  width:min(1120px,92%);
  margin:0 auto 42px;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr auto;
  gap:12px;
  background:#fff;
  padding:18px;
  border-radius:24px;
  box-shadow:0 20px 60px rgba(229,125,167,.12);
}

.shop-filters input,
.shop-filters select{
  height:52px;
  border:1px solid var(--border);
  border-radius:16px;
  padding:0 15px;
  font-family:var(--body);
}

.shop-filters button{
  height:52px;
  border:0;
  border-radius:16px;
  padding:0 24px;
  background:linear-gradient(135deg,var(--pink),var(--purple));
  color:#fff;
  font-weight:800;
  cursor:pointer;
}

.products-grid{
  width:min(1120px,92%);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.product-card{
  background:#fff;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(229,125,167,.14);
  transition:.3s;
}

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

.product-image{
  position:relative;
  display:block;
  height:270px;
  overflow:hidden;
}

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

.product-badge{
  position:absolute;
  top:16px;
  left:16px;
  padding:8px 14px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--pink),var(--purple));
  color:#fff;
  font-size:12px;
  font-weight:800;
}

.product-info{
  padding:24px;
}

.product-info h3{
  font-family:var(--title);
  font-size:26px;
  margin-bottom:8px;
}

.product-info p{
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
  margin-bottom:12px;
}

.product-price small{
  display:block;
  color:#999;
  text-decoration:line-through;
  margin-bottom:4px;
}

.product-price strong{
  color:var(--pink);
  font-size:24px;
}

.product-button{
  margin-top:18px;
  height:48px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--pink),var(--purple));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
}

@media(max-width:1000px){
  .shop-filters{
    grid-template-columns:1fr 1fr;
  }

  .products-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:560px){
  .shop-filters,
  .products-grid{
    grid-template-columns:1fr;
  }
}