/* ==== Blite-Inspired Style ==== */
body {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  color: #000;
  background-color: #fff;
}

.product-title {
  font-size: 28px;
  font-weight: 700;
  text-transform: none;
}

.size-selector button {
  border: 1px solid #000;
  padding: 10px 16px;
  margin-right: 8px;
  font-weight: 500;
  background-color: #fff;
  color: #000;
  transition: 0.2s ease;
}

.size-selector button.active,
.size-selector button:hover {
  background-color: #000;
  color: #fff;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}

button.quantity-btn {
  padding: 6px 12px;
  font-size: 18px;
  background-color: transparent;
  border: 1px solid #000;
  cursor: pointer;
}

.add-to-cart {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  padding: 12px 24px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.add-to-cart:hover {
  background-color: #000;
  color: #fff;
}
