#pswr-root, .pswr-root {
  padding: 0 !important;
  margin: 0 !important;
}
:root{
  --ink:#2b2620;
  --paper:#efe9dd;
  --paper-deep:#e2d9c6;
  --card:#fbf8f2;
  --rule:#c9bfa8;
  --accent:#8a3b2b;
  --accent-soft:#c76b4f;
  --shadow: 0 20px 40px -18px rgba(43,38,32,.45);
  --font-display: 'Georgia', 'Iowan Old Style', serif;
  --font-body: 'Iowan Old Style', Georgia, serif;
  --font-mono: 'Courier New', monospace;
}
#pswr-root{
  font-family: var(--font-body);
  color: var(--ink);
  min-height: 640px;
  border-radius: 0;
  box-sizing: border-box;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:16px;
  user-select:none;
  overflow:hidden;
  margin: 0;
}
.pswr-mast{
  display:flex; align-items:center; justify-content:center; width:100%; gap:12px; max-width:100%;margin-top:50px
}
.pswr-title{
  font-family: var(--font-display);
  font-weight:700;
  font-size: 22px;
  letter-spacing:.3px;
}
.pswr-title small{
  display:block;
  font-family: var(--font-mono);
  font-size:10px;
  letter-spacing:2px;
  text-transform:uppercase;
  color: var(--accent);
  margin-bottom:2px;
}
.pswr-count{
  font-family: var(--font-mono);
  font-size:12px;
  color:#6b6152;
  white-space:nowrap;
}

.pswr-stage{
  position:relative;
  width: 100%;
  height: 600px;
  max-width: 100%;
  touch-action: pan-y;
  padding: 0;
  overflow: hidden;
}
.pswr-card{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--card);
  border-radius: 0;
  box-shadow: var(--shadow);
  border: none;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pswr-card canvas{
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: auto !important;
  width: auto !important;
}
.pswr-card.dragging{ transition:none; cursor:grabbing; }
.pswr-corner{
  position:absolute;
  bottom:8px;
  right:10px;
  font-family: var(--font-mono);
  font-size:10px;
  color:#9a8f7a;
}

.pswr-empty{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  text-align:center;
  padding:20px;
  height:100%;
}
.pswr-empty p{ margin:0; font-size:14px; color:#6b6152; max-width:240px; line-height:1.5; }
.pswr-drop{
  font-family: var(--font-mono);
  font-size:11px;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:10px 18px;
  border:1.5px dashed var(--accent-soft);
  border-radius:999px;
  color:var(--accent);
  cursor:pointer;
  background:rgba(255,255,255,.4);
  transition: background .2s ease, transform .15s ease;
}
.pswr-drop:hover{ background:rgba(255,255,255,.75); transform:translateY(-1px); }
.pswr-drop:active{ transform:translateY(0); }

.pswr-controls{
  display:flex; align-items:center; gap:18px;margin:0 auto;
}
.pswr-btn{
  width:42px; height:42px;
  border-radius:50%;
  border:1px solid var(--rule);
  background: var(--card);
  color: var(--ink);
  font-size:16px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  box-shadow: 0 6px 14px -8px rgba(43,38,32,.4);
  transition: transform .15s ease, background .15s ease;
}
.pswr-btn:hover{ background:#fff; transform:translateY(-1px); }
.pswr-btn:active{ transform:translateY(0) scale(.96); }
.pswr-btn:disabled{ opacity:.35; cursor:default; transform:none; }

.pswr-dots{ display:flex; gap:6px; align-items:center; }
.pswr-dot{
  width:5px; height:5px; border-radius:50%;
  background: var(--rule);
  transition: background .2s ease, width .2s ease;
}
.pswr-dot.active{ background: var(--accent); width:16px; border-radius:3px; }

.pswr-hint{
  font-family: var(--font-mono);
  font-size:10px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#9a8f7a;
}

input[type=file]{ display:none; }

.product-section {
  padding: 60px 0;
  max-width: 100%;
  margin: 0;
  text-align: center;
}

.product-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.product-section p {
  color: #6b6152;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 30px;
}