* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f5f5f5;
}

header {
  background: white;
  padding: 20px 40px;
  border-bottom: 1px solid #ddd;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar input {
  padding: 8px;
  width: 250px;
}

.container {
  display: flex;
  padding: 30px;
  gap: 30px;
}

.sidebar {
  width: 250px;
  background: white;
  padding: 20px;
  border-radius: 6px;
}

.content {
  flex: 1;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: white;
  padding: 15px;
  border-radius: 6px;
  position: relative;
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: red;
  color: white;
  padding: 4px 8px;
  font-size: 12px;
}

.price {
  font-weight: bold;
  margin: 5px 0;
}

.rating {
  color: green;
}

button {
  background: #2d6a4f;
  color: white;
  border: none;
  padding: 8px;
  width: 100%;
  cursor: pointer;
  margin-top: 8px;
}

button:hover {
  background: #1b4332;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  text-decoration: none;
  color: white;
}
