.wmw-pc{
  max-width: 920px;
  margin: 0 auto;
  padding: 12px;
  font-family: inherit;
}

.wmw-pc-topbar{
  position: sticky;
  top: 12px;
  z-index: 10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
}

.wmw-pc-progress-text{
  font-size: 14px;
  opacity: .85;
}

.wmw-pc-total{
  display:flex;
  align-items:baseline;
  gap:10px;
}

.wmw-pc-total strong{
  font-size: 18px;
}

.wmw-pc-card{
  margin-top: 12px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
}

.wmw-pc-question{
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
}

.wmw-pc-options{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.wmw-pc-option-card{
  text-align:left;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  padding: 0;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: transform .08s ease, box-shadow .08s ease;
}

.wmw-pc-option-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.wmw-pc-opt-img{
  width:100%;
  height: 160px;
  background: #f3f4f6;
}

.wmw-pc-opt-img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.wmw-pc-opt-body{
  padding: 12px 12px 14px;
}

.wmw-pc-opt-title{
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.wmw-pc-opt-desc{
  font-size: 14px;
  opacity: .85;
  margin-bottom: 10px;
}

.wmw-pc-opt-price{
  font-weight: 700;
  font-size: 14px;
}

.wmw-pc-nav{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top: 14px;
}

.wmw-pc-btn{
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
  background: #111827;
  color: #fff;
  font-weight: 600;
}

.wmw-pc-btn:disabled{
  opacity: .5;
  cursor:not-allowed;
}

.wmw-pc-btn-ghost{
  background: transparent;
  border: 1px solid rgba(0,0,0,.15);
  color: #111827;
}

.wmw-pc-summary-line{
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.wmw-pc-summary-q{
  font-size: 13px;
  opacity: .75;
  margin-bottom: 6px;
}

.wmw-pc-summary-a{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  font-weight: 600;
}

.wmw-pc-summary-total{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-top: 12px;
  font-size: 18px;
}

@media (max-width: 720px){
  .wmw-pc-options{
    grid-template-columns: 1fr;
  }
  .wmw-pc-opt-img{
    height: 180px;
  }
}