body {
  font-family: Arial, sans-serif;
  background:#f2f2f2;
  margin:0;
}

.filters {
  text-align:center;
  padding:15px;
}

.filters button {
  margin:5px;
  padding:8px 15px;
  border:none;
  cursor:pointer;
  border-radius:5px;
}

.container {
  padding:20px;
}

.product-grid {
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
  gap:15px;
}

.product-card {
  background:#fff;
  border-radius:8px;
  text-decoration:none;
  color:#000;
  overflow:hidden;
}

.product-image {
  position:relative;
}

.product-image img {
  width:100%;
}

.deal-badge {
  position:absolute;
  bottom:5px;
  left:5px;
  background:#ff2f4f;
  color:#fff;
  font-size:12px;
  padding:3px 6px;
  border-radius:4px;
}

.platform-badge {
  position:absolute;
  top:5px;
  right:5px;
  font-size:11px;
  padding:3px 6px;
  color:#fff;
  border-radius:4px;
}

.aliexpress { background:#ff4747; }
.amazon { background:#ff9900; }
.noon { background:#fedd00; color:#000; }

.product-info {
  padding:10px;
}

.price .new {
  color:#ff2f4f;
  font-weight:bold;
}

.price .old {
  text-decoration:line-through;
  font-size:12px;
  color:#777;
}

/* Product Page */
.product-page {
  display:flex;
  gap:20px;
  padding:20px;
  background:#fff;
  margin:20px;
  border-radius:8px;
}

.product-gallery img {
  width:300px;
}

.buy-now {
  display:inline-block;
  margin-top:20px;
  padding:12px 20px;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
}

/* Responsive */
@media (max-width:768px) {
  .product-page {
    flex-direction:column;
  }
  .product-gallery img {
    width:100%;
  }
}
