<style>

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#020817;
  color:white;
  font-family:Arial, Helvetica, sans-serif;
}

.container{
  padding:100px 24px 24px;
}

h1{
  font-size:48px;
  margin-bottom:24px;
}

.topbart{
  display:flex;
  gap:12px;
  margin-bottom:40px;
  flex-wrap:wrap;
  display:none;
}

input{
  flex:1;
  min-width:240px;
  padding:18px;
  border:none;
  border-radius:16px;
  font-size:16px;
}

button{
  border:none;
  background:linear-gradient(135deg,#7c3aed,#9333ea);
  color:white;
  padding:16px 20px;
  border-radius:16px;
  cursor:pointer;
  font-weight:bold;
}

.section{
  margin-bottom:60px;
}

.section-title{
  font-size:36px;
  margin-bottom:24px;
  color:#a78bfa;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:20px;
}

.card{
  background:#172033;
  border-radius:28px;
  overflow:hidden;
  border:1px solid #334155;
}

.card img{
  width:100%;
  height:240px;
  object-fit:cover;
  background:#0f172a;
}

.card-content{
  padding:20px;
}

.badge{
  display:inline-block;
  background:linear-gradient(135deg,#7c3aed,#9333ea);
  padding:8px 14px;
  border-radius:999px;
  font-size:14px;
  margin-bottom:24px;
}

.card h3{
  font-size:24px;
  margin-bottom:18px;
}

.member-price{
  font-size:36px;
  color:#a78bfa;
  font-weight:bold;
  margin-bottom:8px;
}

.member-label{
  color:#cbd5e1;
  margin-bottom:14px;
  font-size:14px;
}

.customer-price{
  font-size:18px;
  margin-bottom:12px;
}

.savings{
  color:#4ade80;
  font-weight:bold;
  margin-bottom:18px;
  font-size:14px;
}

.card button{
  width:100%;
  padding:16px;
  font-size:18px;
}

.cart-toggle{
  position:fixed;
  bottom:20px;
  right:20px;
  width:90px;
  height:90px;
  border-radius:999px;
  font-size:34px;
  z-index:999;
}

.cart-count{
  position:absolute;
  top:-6px;
  right:-6px;
  background:#22c55e;
  width:34px;
  height:34px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
}

.cart{
  position:fixed;
  top:0;
  right:0;
  width:420px;
  height:100vh;
  background:#0f172a;
  border-left:1px solid #334155;
  padding:24px;
  overflow:auto;
  transform:translateX(100%);
  transition:.25s;
  z-index:1000;
}

.cart.active{
  transform:translateX(0);
}

.cart-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:24px;
}

.cart-item{
  border-bottom:1px solid #334155;
  padding-bottom:18px;
  margin-bottom:18px;
}

.qty{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:12px;
}

.qty button{
  width:48px;
  height:48px;
  padding:0;
  font-size:22px;
}

.total{
  margin-top:24px;
  font-size:28px;
  font-weight:bold;
}

.checkout-btn{
  width:100%;
  margin-top:24px;
  font-size:28px;
  padding:24px;
  background:linear-gradient(135deg,#16a34a,#22c55e);
}

@media(max-width:700px){

  h1{
    font-size:38px;
  }

  .card h3{
    font-size:34px;
  }

  .member-price{
    font-size:42px;
  }

  .cart{
    width:100%;
  }

}
</style>