.mpv-pkg-extras {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid #d7e4e3;
  border-radius: 12px;
  background: #f8fbfb;
}

.mpv-pkg-extras h4 {
  margin: 0 0 10px;
  color: #173d3b;
  font-size: 0.92rem;
  font-weight: 700;
}

.mpv-pkg-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(110px, 1fr) minmax(70px, 0.45fr);
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.mpv-pkg-input {
  box-sizing: border-box;
  width: 100%;
  height: 34px;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid #cfdcda;
  border-radius: 8px;
  background: #fff;
  color: #173d3b;
  font: inherit;
  font-size: 0.88rem;
  line-height: 1.2;
}

.mpv-pkg-input::placeholder {
  color: #8a9a97;
  opacity: 1;
}

.mpv-pkg-input:focus {
  outline: none;
  border-color: #16877f;
  box-shadow: 0 0 0 2px rgba(22, 135, 127, 0.15);
}

.mpv-pkg-money {
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.mpv-pkg-meal-row {
  grid-template-columns: minmax(90px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  margin: 0;
  padding: 8px 0 0;
  border-top: 1px solid #e2eceb;
}

.mpv-pkg-check {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #173d3b;
  font-size: 0.88rem;
  font-weight: 650;
}

.mpv-pkg-check input {
  width: auto;
  height: auto;
  margin: 0;
}

.mpv-pkg-other-list {
  display: grid;
  gap: 6px;
  margin: 10px 0 8px;
}

.mpv-pkg-other-row {
  display: flex;
  gap: 6px;
  align-items: center;
}

.mpv-pkg-other-row input:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.mpv-pkg-other-row input.mpv-pkg-money {
  flex: 0 1 120px;
  min-width: 88px;
}

.mpv-pkg-unit {
  flex: 0 0 92px;
  min-width: 92px;
  padding-right: 6px;
  cursor: pointer;
}

.mpv-pkg-other-row button {
  display: inline-grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  border: 1px solid #e4b8b8;
  border-radius: 50%;
  background: #fff;
  color: #a43131;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.mpv-pkg-add {
  display: inline-flex;
  min-height: 30px;
  padding: 5px 11px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: #16877f;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.mpv-pkg-add:hover {
  background: #106f69;
}

.mpv-pkg-add:disabled {
  opacity: 0.65;
  cursor: wait;
}

.mpv-pkg-saves {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e1e8e7;
}

.mpv-pkg-saves h4 {
  margin: 0 0 10px;
  color: #173d3b;
}

.mpv-pkg-save-item {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #edf1f1;
}

.mpv-pkg-save-meta {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.mpv-pkg-save-meta strong {
  overflow: hidden;
  color: #173d3b;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mpv-pkg-save-meta small {
  color: #71817f;
}

.mpv-pkg-save-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
}

.mpv-pkg-save-actions .mpv-wiz-btn {
  min-height: 32px;
  padding: 6px 10px;
  font-size: 0.8rem;
}

.mpv-pkg-delete {
  border-color: #e5bcbc !important;
  color: #9d3030 !important;
  background: #fff !important;
}

.mpv-pkg-hotel-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 6px;
}

.mpv-pkg-hotel-chip {
  padding: 3px 8px;
  border: 1px solid #bcd6d3;
  border-radius: 999px;
  background: #fff;
  color: #176f69;
  font-size: 0.74rem;
  cursor: pointer;
}

.mpv-pkg-hotel-chip:hover,
.mpv-pkg-hotel-chip.on {
  border-color: #16877f;
  background: #e5f5f3;
}

.mpv-pkg-save-box .mpv-pkg-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.mpv-pkg-save-box .mpv-pkg-input {
  height: 36px;
}

.mpv-pkg-success {
  margin-top: 10px;
  color: #147269;
  font-weight: 650;
}

.mpv-pkg-extras .mpv-cust-hint {
  margin: 0 0 4px;
  font-size: 0.8rem;
}

@media (max-width: 640px) {
  .mpv-pkg-row,
  .mpv-pkg-meal-row,
  .mpv-pkg-save-box .mpv-pkg-row {
    grid-template-columns: 1fr;
  }

  .mpv-pkg-other-row {
    flex-wrap: wrap;
  }

  .mpv-pkg-other-row input:first-child {
    flex: 1 1 calc(100% - 38px);
  }

  .mpv-pkg-other-row input.mpv-pkg-money {
    flex: 1 1 calc(100% - 104px);
    order: 3;
  }

  .mpv-pkg-unit {
    flex: 0 0 92px;
    order: 4;
  }

  .mpv-pkg-save-item {
    align-items: flex-start;
    flex-direction: column;
  }
}
