body {
  margin: 0;
  font-family: Arial;
  background: #f5f5f5;
}

.header {
  background: #ff5722;
  padding: 10px;
  position: sticky;
  top: 0;
}

.search {
  width: 100%;
  padding: 8px;
  border-radius: 20px;
  border: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 8px;
}

.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.content {
  padding: 8px;
}

.name {
  font-size: 13px;
  height: 34px;
  overflow: hidden;
}

.price {
  color: #ff5722;
  font-weight: bold;
}

.buy-btn {
  display: flex;
  justify-content: center;
  gap: 5px;
  background: #ff5722;
  color: white;
  padding: 6px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 6px;
}

.tabs {
  display: flex;
  background: white;
  border-bottom: 1px solid #ddd;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-size: 13px;
}

.tab.active {
  color: #ff5722;
  border-bottom: 2px solid #ff5722;
  font-weight: bold;
}
