.pwe-no-scroll {
  overflow: hidden;
}

.pwe-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.pwe-modal.is-open {
  display: block;
}

.pwe-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
}

.pwe-modal__dialog {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 5vh auto;
  width: calc(100% - 32px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.pwe-modal__content {
  padding: 24px;
}

.pwe-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.pwe-modal__progress {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748b;
  margin-bottom: 8px;
}

.pwe-modal__title {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.2;
}

.pwe-modal__subtitle {
  color: #475569;
  margin-bottom: 18px;
}

.pwe-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.pwe-choice-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 8px;
  border: 1px solid #dbe2ea;
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
  width: 100%;
}

.pwe-choice-card__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 8px;
  object-fit: cover;
}

.pwe-choice-card:hover,
.pwe-choice-card:focus {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  border-color: #94a3b8;
}

.pwe-choice-card__label {
  font-weight: 700;
  font-size: 18px;
}

.pwe-choice-card__desc {
  color: #475569;
  font-size: 14px;
}

.pwe-table-wrap {
  overflow-x: auto;
}

.pwe-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}

.pwe-table th,
.pwe-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e2e8f0;
}

.pwe-table__row {
  cursor: pointer;
  transition: background .12s ease;
}

.pwe-table__row:hover {
  background: #f8fafc;
}

.pwe-quantity {
  max-width: 260px;
}

.pwe-quantity__label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.pwe-quantity__input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 18px;
}

.pwe-summary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px;
}

.pwe-summary__title {
  font-weight: 700;
  margin-bottom: 12px;
}

.pwe-summary__list {
  margin: 0;
  padding-left: 18px;
}

.pwe-modal__footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.pwe-modal__message {
  margin-top: 16px;
}
