.pow-wrap { max-width: 980px; margin: 20px auto; padding: 0 14px; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
.pow-card { background: #fff; border: 1px solid #e7e7e7; border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,.06); overflow: hidden; }

.pow-header { padding: 18px 18px 10px; border-bottom: 1px solid #eee; display: grid; gap: 10px; }
.pow-header h2 { margin: 0; font-size: 20px; }

.pow-steps { display: flex; flex-wrap: wrap; gap: 8px; }
.pow-step { font-size: 12px; padding: 6px 10px; border-radius: 999px; background: #f2f2f2; color: #444; }
.pow-step--active { background: #111; color: #fff; }

.pow-section { display: none; padding: 18px; }
.pow-section--active { display: block; }

.pow-muted { margin-top: 6px; color: #666; font-size: 14px; }

.pow-drop { border: 2px dashed #cfcfcf; border-radius: 14px; padding: 22px; background: #fafafa; transition: .15s; }
.pow-drop--over { border-color: #111; background: #f3f3f3; }
.pow-drop-inner { display: grid; place-items: center; gap: 8px; text-align: center; }
.pow-drop-title { font-size: 16px; font-weight: 700; }
.pow-drop-sub { font-size: 13px; color: #666; }

.pow-btn { appearance: none; border: 0; border-radius: 12px; padding: 10px 14px; background: #111; color: #fff; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.pow-btn:disabled { opacity: .45; cursor: not-allowed; }
.pow-btn--ghost { background: #f2f2f2; color: #111; }

.pow-actions { margin-top: 16px; display: flex; justify-content: space-between; gap: 10px; }

.pow-gallery { margin-top: 16px; display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.pow-thumb { border: 1px solid #eee; border-radius: 14px; overflow: hidden; background: #fff; }
.pow-thumb img { width: 100%; height: 120px; object-fit: cover; display: block; }
.pow-thumb-name { padding: 10px; font-size: 12px; color: #444; word-break: break-all; }

.pow-size-list { display: grid; gap: 12px; margin-top: 12px; }
.pow-size-row { display: grid; grid-template-columns: 220px 1fr; gap: 12px; border: 1px solid #eee; border-radius: 14px; padding: 12px; background: #fff; }
@media (max-width: 760px){
  .pow-size-row { grid-template-columns: 1fr; }
}
.pow-size-preview img { width: 100%; height: 160px; object-fit: cover; border-radius: 12px; border: 1px solid #eee; }
.pow-size-filename { margin-top: 8px; font-size: 12px; color: #444; word-break: break-all; }
.pow-size-options { display: grid; gap: 10px; align-content: start; }

.pow-radio { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; cursor: pointer; }
.pow-radio input { margin-top: 3px; }
.pow-radio-box { display: grid; gap: 2px; border: 1px solid #e8e8e8; border-radius: 12px; padding: 10px; background: #fafafa; }
.pow-radio-title { font-weight: 800; }
.pow-radio-sub { font-size: 12px; color: #555; }

.pow-totals { margin-top: 14px; border-top: 1px solid #eee; padding-top: 12px; }
.pow-total-row { display: flex; justify-content: space-between; font-size: 16px; }

.pow-field { margin-top: 12px; display: grid; gap: 6px; }
.pow-field label { font-weight: 800; font-size: 13px; }
.pow-field input { border: 1px solid #ddd; border-radius: 12px; padding: 10px 12px; font-size: 14px; outline: none; }
.pow-field input:focus { border-color: #111; }

.pow-suggest { position: relative; }
.pow-suggest--open { margin-top: 8px; border: 1px solid #eee; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.pow-suggest-item { width: 100%; text-align: left; padding: 10px 12px; border: 0; background: #fff; cursor: pointer; border-bottom: 1px solid #f1f1f1; font-size: 13px; }
.pow-suggest-item:hover { background: #f6f6f6; }
.pow-suggest-item:last-child { border-bottom: 0; }

.pow-map-wrap { margin-top: 12px; position: relative; }
.pow-map { height: 320px; border-radius: 14px; border: 1px solid #eee; overflow: hidden; }
.pow-map-pin {
  position: absolute; left: 50%; top: 50%;
  width: 28px; height: 28px; transform: translate(-50%, -100%);
  background: #111; border-radius: 999px 999px 999px 0;
  rotate: -45deg;
  box-shadow: 0 10px 18px rgba(0,0,0,.25);
}
.pow-map-pin::after{
  content: ""; position: absolute; inset: 7px;
  background: #fff; border-radius: 999px;
}

.pow-thumb { position: relative; }

.pow-thumb-del{
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(17,17,17,.85);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
}

.pow-thumb-del:hover{
  background: rgba(0,0,0,.95);
}