body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  background: #fafafa;
  color: #5C1D38;
}

.wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 18px;
}

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.shop-top-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.shop-home-header {
  max-width: 760px;
  margin-bottom: 32px;
}

.grid,
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card,
.cart-row,
.collection-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.collection-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.collection-card h2,
.card h2 {
  margin-top: 0;
}

.collection-card p {
  margin-bottom: 0;
}

.collection-card-all {
  border-width: 2px;
}

.collection-card-image {
  display: block;
  width: 100%;
  max-width: 285px;
  height: auto;
  margin: 0 auto 16px auto;
}

.product-image-wrap {
  display: grid;
  gap: 10px;
}

.product-image,
.card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 14px;
  background: #eee;
}

.thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.thumb-button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
}

.thumb-button img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
}

.product-type {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .75rem;
  opacity: .7;
  margin: 0;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: auto;
}

button,
.cart-link,
a {
  cursor: pointer;
}

button,
.cart-link {
  border: 0;
  background: #111;
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.category-nav {
  margin: 1rem 0 2rem;
  text-align: center;
  line-height: 2;
}

.category-link {
  text-decoration: none;
  color: inherit;
  padding: 0 .25rem;
}

.category-link:hover {
  text-decoration: underline;
}

.category-link.active {
  font-weight: 600;
}

.category-separator {
  opacity: .4;
  margin: 0 .35rem;
}

.category-description {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: .85;
}

.shop-home-link {
  margin-bottom: 24px;
}

.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.cart-row input {
  width: 70px;
  padding: 8px;
}

.cart-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.muted {
  color: #666;
  font-size: .85rem;
}

.message {
  margin-top: 16px;
  font-weight: 700;
}
