/* mockup.css — v0.1.3 — BDO Print Visualizer */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400&family=Montserrat:wght@300;400;500&display=swap');

.bdo-pv-root *, .bdo-pv-root *::before, .bdo-pv-root *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

.bdo-pv-root {
  --pv-bg:      #ffffff;
  --pv-border:  rgba(0,0,0,0.08);
  --pv-accent:  #555555;
  --pv-text:    #1a1a1a;
  --pv-muted:   #8c9091;
  font-family: 'Montserrat', sans-serif;
  background: var(--pv-bg);
  color: var(--pv-text);
  width: 100%;
  box-sizing: border-box;
}

/* Stage */
.bdo-pv-stage {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  cursor: grab;
  background: #d4d1cc;
}
.bdo-pv-stage:active { cursor: grabbing; }
.bdo-pv-stage canvas { display: block; width: 100% !important; height: 100% !important; }
.bdo-pv-scene-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 1;
}

/* Controls */
.bdo-pv-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
.bdo-pv-control-group { display: flex; flex-direction: column; gap: 8px; }
.bdo-pv-group-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pv-accent);
}

/* Type toggle */
.bdo-pv-type-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bdo-pv-type-btn {
  background: #fff;
  border: 2px solid #8c9091;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  padding: 12px 8px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
  border-radius: 0;
}
.bdo-pv-type-btn:hover  { border-color: #0158af !important; background: #e5eef7 !important; color: #0158af !important; box-shadow: none !important; }
.bdo-pv-type-btn.active { background: #e5eef7 !important; border-color: #0158af !important; color: #0158af !important; }

/* Size grid */
.bdo-pv-size-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.bdo-pv-size-btn {
  background: #fff;
  border: 2px solid #8c9091;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  padding: 10px 4px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
  border-radius: 0;
}
.bdo-pv-size-btn:hover   { border-color: #0158af !important; background: #e5eef7 !important; color: #0158af !important; box-shadow: none !important; }
.bdo-pv-size-btn.active  { background: #e5eef7 !important; border-color: #0158af !important; color: #0158af !important; }
.bdo-pv-size-btn.disabled { opacity: 0.25; cursor: not-allowed; pointer-events: none; border-style: dashed; }
.bdo-pv-size-note { font-size: 0.58rem; color: var(--pv-muted); font-style: italic; min-height: 1em; }

/* Price / ATC */
.bdo-pv-price-row { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
.bdo-pv-select-prompt {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pv-muted);
}
.bdo-pv-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
}
.bdo-pv-atc-wrap { display: flex; gap: 8px; align-items: stretch; }
.bdo-pv-qty {
  width: 54px;
  border: 1px solid #8c9091;
  border-radius: 0;
  padding: 0 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-align: center;
  color: #1a1a1a;
  -moz-appearance: textfield;
}
.bdo-pv-qty::-webkit-inner-spin-button,
.bdo-pv-qty::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.bdo-pv-atc-btn {
  flex: 1;
  background: #000;
  border: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 12px;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.15s;
}
.bdo-pv-atc-btn:hover { background: #1a1a1a; }

/* Hints */
.bdo-pv-hint {
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pv-muted);
  text-align: center;
  padding: 10px;
  border-top: 1px solid var(--pv-border);
}
.bdo-pv-frame-note {
  font-size: 0.58rem;
  color: var(--pv-muted);
  text-align: center;
  padding: 6px 20px 12px;
  font-style: italic;
  letter-spacing: 0.04em;
  display: none;
}

/* Desktop */
@media (min-width: 700px) {
  .bdo-pv-root      { display: flex; gap: 0; align-items: stretch; }
  .bdo-pv-left-col  { flex: 1; min-width: 180px; display: flex; flex-direction: column; gap: 0; background: #f1f1f1; padding: 20px; }
  .bdo-pv-right-col { flex-shrink: 0; width: 70%; display: flex; flex-direction: column; }
  .bdo-pv-controls  { padding: 0; }
  .bdo-pv-left-col .bdo-pv-hint { margin-top: auto; }
  .bdo-pv-mobile-controls { display: none !important; }
}

/* Mobile */
@media (max-width: 699px) {
  .bdo-pv-left-col { display: none; }
  .bdo-pv-mobile-controls { display: flex !important; }
}
