.plaster-shop-app {
  --ink: #2B2620;
  --muted: #6B6255;
  --bg: #E4DFD3;
  --surface: #F5F2EA;
  --alert: #B4432E;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  max-width: 900px;
  margin: 0 auto;
}
.plaster-shop-title { font-weight: 700; margin-bottom: 16px; }
.plaster-shop-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.plaster-tag-select-wrap { margin-bottom: 20px; }
.plaster-tag-select {
  background: var(--surface); border: 1px solid rgba(43,38,32,.15); color: var(--ink);
  border-radius: 10px; padding: 9px 14px; font-size: 14px; max-width: 220px; width: 100%;
  cursor: pointer;
}
.plaster-filter {
  background: var(--surface); border: 1px solid rgba(43,38,32,.1); color: var(--muted);
  border-radius: 999px; padding: 8px 16px; font-size: 14px; cursor: pointer;
}
.plaster-filter.active { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.plaster-empty { text-align: center; padding: 40px; background: var(--surface); border-radius: 16px; }

.plaster-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.plaster-card-item {
  background: var(--surface); border-radius: 16px; padding: 14px; display: flex; flex-direction: column; gap: 6px;
}
.plaster-card-photo { width: 100%; aspect-ratio: 1/1; border-radius: 10px; overflow: hidden; background: rgba(43,38,32,.06); }
.plaster-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.plaster-card-noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.plaster-card-name { font-weight: 600; font-size: 14px; margin: 0; }
.plaster-card-desc { font-size: 12px; color: var(--muted); margin: 0; white-space: pre-wrap; }
.plaster-card-row { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
.plaster-card-price { font-weight: 700; font-size: 17px; }
.plaster-badge.alert { color: var(--alert); font-size: 12px; }
.plaster-add-btn {
  margin-top: 4px; padding: 9px; border-radius: 999px; border: none; background: var(--ink); color: var(--surface);
  font-size: 14px; font-weight: 500; cursor: pointer;
}
.plaster-add-btn:disabled { background: rgba(43,38,32,.15); color: var(--muted); cursor: default; }

.plaster-cart-fab {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9998;
  background: var(--ink); color: var(--surface); border: none; border-radius: 999px;
  padding: 15px; font-weight: 600; font-size: 15px; cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.plaster-drawer { position: fixed; inset: 0; background: rgba(43,38,32,.4); z-index: 9999; display: flex; align-items: flex-end; justify-content: center; }
.plaster-drawer-panel { background: var(--surface); width: 100%; max-width: 480px; border-radius: 20px 20px 0 0; padding: 20px; max-height: 85vh; overflow-y: auto; }
.plaster-drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 10px; }
.plaster-drawer-header h3 { margin: 0; flex: 1; }
.plaster-drawer-header button { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--ink); }
.plaster-cart-line { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(43,38,32,.08); }
.plaster-cart-line .qty-controls { display: flex; align-items: center; gap: 8px; }
.plaster-cart-line button { width: 26px; height: 26px; border-radius: 50%; border: none; background: rgba(43,38,32,.08); cursor: pointer; }
.plaster-cart-summary { display: flex; justify-content: space-between; padding: 12px 0; font-size: 17px; }
.plaster-full { width: 100%; padding: 13px; border-radius: 999px; border: none; background: var(--ink); color: var(--surface); font-weight: 600; font-size: 15px; cursor: pointer; margin-top: 6px; }
.plaster-drawer input[type=text] { width: 100%; padding: 12px; border-radius: 12px; border: none; background: rgba(43,38,32,.06); margin-bottom: 10px; font-size: 14px; box-sizing: border-box; }
.plaster-label { font-size: 12px; text-transform: uppercase; color: var(--muted); margin: 10px 0 6px; }
.plaster-pill-row { display: flex; gap: 8px; flex-wrap: wrap; }
.plaster-pill { flex: 1; min-width: 100px; padding: 10px; border-radius: 12px; border: none; background: rgba(43,38,32,.06); color: var(--muted); cursor: pointer; font-size: 13px; }
.plaster-pill.active { background: var(--ink); color: var(--surface); }
.plaster-error { color: var(--alert); font-size: 13px; }
.plaster-divider { border: none; border-top: 1px solid rgba(43,38,32,.15); margin: 24px 0; }
.plaster-lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.85); z-index: 10000;
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.plaster-lightbox img { max-width: 100%; max-height: 100%; border-radius: 12px; object-fit: contain; }
.plaster-lightbox button#plaster-lightbox-close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff; border: none; font-size: 20px; cursor: pointer;
}
.plaster-card-photo img, .plaster-piece-thumb { cursor: zoom-in; }
.plaster-banner { font-size: 14px; color: var(--muted); line-height: 1.5; margin: -4px 0 16px; white-space: pre-wrap; }
.plaster-banner:empty { display: none; }
.plaster-cart-line .qty-controls button:disabled { opacity: .4; cursor: default; }
