body {
  margin: 0;
  padding: 1vh;
  font-family: sans-serif;
}

header.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #ccc;
}

.shop-title {
  font-size: 1.4rem;
  font-weight: bold;
}

.nav-tabs sl-button {
  margin-right: 0.5rem;
}

.nav-tab.active::part(base) {
  font-weight: bold;
  border-bottom: 2px solid black;
}

.cart-icon {
  position: relative;
}

main {
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1200px;
  justify-content: center;
}

.product-card {
  width: 240px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: center;
}

.cart-thumb {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
}

.cart-info {
  flex-grow: 1;
}

.cart-title {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.cart-price {
  font-size: 0.9rem;
  color: #555;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}