.vr-guest-selector {
  position: relative;
  width: 100%;
  min-width: 0;
}

.vr-guest-trigger {
  width: 100%;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  padding: 0;
}

.vr-guest-trigger:focus {
  outline: none;
}

.vr-guest-trigger:focus-visible {
  border-radius: 8px;
  box-shadow: 0 0 0 3px rgba(217, 162, 74, .26);
}

.vr-guest-summary {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr-guest-chevron {
  flex: 0 0 auto;
  transition: transform .18s ease;
}

.vr-guest-selector.is-open .vr-guest-chevron {
  transform: rotate(180deg);
}

.vr-guest-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 1200;
  width: min(330px, calc(100vw - 32px));
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(15, 31, 27, .14);
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
  color: #13241f;
}

.vr-guest-popover[hidden] {
  display: none;
}

.vr-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid #edf0ee;
}

.vr-guest-row:last-of-type {
  border-bottom: 0;
}

.vr-guest-row__label strong,
.vr-guest-row__label small {
  display: block;
}

.vr-guest-row__label strong {
  font-size: .96rem;
  font-weight: 700;
  line-height: 1.25;
  color: #13241f;
}

.vr-guest-row__label small {
  margin-top: 2px;
  font-size: .78rem;
  font-weight: 500;
  line-height: 1.3;
  color: #6e7a77;
}

.vr-stepper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.vr-stepper-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #bcc6c2;
  background: #fff;
  color: #13241f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.vr-stepper-btn:hover:not(:disabled) {
  border-color: #13241f;
}

.vr-stepper-btn:disabled {
  color: #c5ceca;
  border-color: #e1e6e3;
  cursor: not-allowed;
}

.vr-stepper-value {
  min-width: 22px;
  text-align: center;
  font-size: .98rem;
  font-weight: 700;
  color: #13241f;
}

.vr-guest-popover-close {
  width: 100%;
  margin-top: 10px;
  padding: 9px 10px;
  border: 0;
  border-radius: 8px;
  background: #f5f7f5;
  color: #13241f;
  font-weight: 700;
  cursor: pointer;
}

.vr-guest-popover-close:hover {
  background: #edf2ef;
}

.booking-bar .vr-guest-trigger,
.booking-bar .vr-guest-summary {
  color: #0b3b3a;
  font-size: 16px;
  font-weight: 600;
}

.bb-field .vr-guest-selector,
.check-avail-field .vr-guest-selector {
  height: 100%;
}

.bb-field .vr-guest-trigger {
  min-height: 42px;
  padding: 0;
  color: #17241f;
}

.check-avail-field .vr-guest-trigger {
  min-height: 48px;
  padding: .9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: #333;
  font-size: .95rem;
}

@media (max-width: 640px) {
  .vr-guest-popover {
    left: 50%;
    transform: translateX(-50%);
  }
}
