
body{margin:0;font-family:system-ui;background:#0b0f14;color:#e9edf2}
.wrap{max-width:1100px;margin:auto;padding:16px}
.header{display:flex;justify-content:space-between;align-items:center;border:1px solid #222;padding:14px;border-radius:16px}
.brand{display:flex;gap:12px;align-items:center}
.logo{width:42px;height:42px;border-radius:12px;display:grid;place-items:center;background:#222}
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:14px;margin-top:14px}
.card{
  display:flex;
  flex-direction:column;
  height:100%;
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  background:rgba(255,255,255,.03);
  overflow:hidden;
}
.img{
  height:200px;
  background:rgba(255,255,255,.05);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
}

.img img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}
.content{
  display:flex;
  flex-direction:column;
  flex-grow:1;
  padding:14px;
}
.title{
  font-weight:800;
  font-size:15px;
  margin-bottom:4px;
}

.muted{
  color:#a7b0bd;
  font-size:13px;
  margin-bottom:8px;
}
.price{
  display:flex;
  align-items:baseline;
  gap:8px;
  margin-bottom:10px;
}

.now{
  font-weight:900;
  font-size:20px;
}

.was{
  font-size:14px;
  text-decoration:line-through;
  color:#a7b0bd;
}
.btn{
  margin-top:auto;
  text-align:center;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  color:#e9edf2;
  font-weight:700;
  text-decoration:none;
}
.code{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:12px;
  font-size:13px;
  color:#a7b0bd;
}
.copy{background:#333;color:#fff;border:0;border-radius:8px;padding:6px 10px}

.img{
  position:relative;
}

.badge{
  position:absolute;
  top:10px;
  left:10px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg, #ff4d4f, #ff7a18);
  box-shadow:0 6px 18px rgba(0,0,0,.35);
  letter-spacing:.3px;
}
.affiliate-note{
  margin-top:28px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
  font-size:12px;
  color:#a7b0bd;
  line-height:1.5;
}