:root {
  --ownerrez-font-body: var(--font-body, 1rem);
  --ownerrez-font-body-s: var(--font-body-s, 0.875rem);
  --ownerrez-white: #ffffff;
  --ownerrez-border: #e5e7eb;
  --ownerrez-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  --ownerrez-text: #111827;
  --ownerrez-muted: #6b7280;
  --ownerrez-accent: #00c2c2;
}

.ownerrez-shortcode-scope a,
.ownerrez-shortcode-scope p,
.ownerrez-shortcode-scope li {
  font-size: var(--ownerrez-font-body);
}

.ownerrez-amenities {
  --ownerrez-amenities-columns: 3;
  --ownerrez-amenities-values-columns: 1;
  margin: 0;
  color: inherit;
}
.ownerrez-amenities--columns-1 {
  --ownerrez-amenities-columns: 1;
}
.ownerrez-amenities--columns-2 {
  --ownerrez-amenities-columns: 2;
}
.ownerrez-amenities--columns-3 {
  --ownerrez-amenities-columns: 3;
}
.ownerrez-amenities--columns-4 {
  --ownerrez-amenities-columns: 4;
}
.ownerrez-amenities--grouped {
  background: #fff;
}
.ownerrez-amenities__list {
  display: flex;
  flex-direction: column;
}
.ownerrez-amenities__item {
  display: grid;
  grid-template-columns: minmax(min-content, 130px) 1fr;
  gap: 0.5rem 1.5rem;
  padding: 1rem 1.25rem;
}
.ownerrez-amenities__item:nth-child(odd) {
  background: #fafafa;
}
.ownerrez-amenities__item-label {
  border-right: 1px solid #e1e1e1;
}
.ownerrez-amenities__item-values {
  display: grid;
  grid-auto-flow: row dense;
  grid-template-columns: repeat(var(--ownerrez-amenities-values-columns), minmax(0, 1fr));
  gap: 0.35rem 1.25rem;
}
.ownerrez-amenities__value {
  color: inherit;
  line-height: 1.4;
  font-size: var(--ownerrez-font-body);
}
.ownerrez-amenities--flat {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.95rem;
}
.ownerrez-amenities--flat li {
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .ownerrez-amenities__item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .ownerrez-amenities {
    --ownerrez-amenities-values-columns: 3;
  }
}
@media (max-width: 640px) {
  .ownerrez-amenities {
    --ownerrez-amenities-values-columns: 1;
  }
}
.ownerrez-meta-value {
  display: inline-block;
  margin: 0.25em 0;
}

.ownerrez-meta-list {
  margin: 1em 0;
  padding: 0;
  list-style: none;
}
.ownerrez-meta-list li,
.ownerrez-meta-list span {
  display: inline-block;
  margin: 0.25em 0.75em 0.25em 0;
}

.ownerrez-photos-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ownerrez-photos__see-all {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.95);
  font-size: var(--ownerrez-font-body);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.ownerrez-photos__see-all:hover, .ownerrez-photos__see-all:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
  background: #fff;
}

.ownerrez-photos {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, 200px);
  grid-auto-columns: 50%;
  grid-auto-rows: 200px;
  gap: 0.5rem;
  list-style: none;
}
.ownerrez-photos figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.ownerrez-photos figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.ownerrez-photos figure figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  margin: 0;
  padding: 0.55rem 0.85rem;
  background: rgba(15, 23, 42, 0.72);
  color: #f8fafc;
  font-size: var(--ownerrez-font-body);
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.ownerrez-photos figure:hover img, .ownerrez-photos figure:focus-within img {
  transform: scale(1.03);
  filter: brightness(0.92);
}
.ownerrez-photos figure:hover figcaption, .ownerrez-photos figure:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}
.ownerrez-photos figure:nth-child(1) {
  grid-column: 1/span 2;
  grid-row: 1/span 2;
  border-radius: 1rem 1rem 0 0;
}
.ownerrez-photos figure:nth-child(2) {
  border-radius: 0;
}
.ownerrez-photos figure:nth-child(3) {
  border-radius: 0;
}
.ownerrez-photos figure:nth-child(4) {
  border-radius: 0 0 0 1rem;
}
.ownerrez-photos figure:nth-child(5) {
  border-radius: 0 0 1rem 0;
}

body.ownerrez-modal-open {
  overflow: hidden;
}

.ownerrez-photos-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(15, 18, 24, 0.9);
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.ownerrez-photos-modal[hidden] {
  display: none !important;
}
.ownerrez-photos-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.ownerrez-photos-modal__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}
.ownerrez-photos-modal__dialog {
  position: relative;
  max-width: 100%;
  width: min(100vw, 100%);
  max-height: min(100vh, 100%);
  overflow-y: auto;
  background: #ffffff;
  padding: 4rem;
  border-radius: 0;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.35);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.ownerrez-photos-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}
.ownerrez-photos-modal__title {
  margin: 0;
  font-size: var(--ownerrez-font-body);
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.ownerrez-photos-modal__close {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #f8fafc;
  color: #0f172a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.ownerrez-photos-modal__close:hover, .ownerrez-photos-modal__close:focus-visible {
  background: #0f172a;
  color: #f8fafc;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25);
}
.ownerrez-photos-modal__close .fa-solid {
  font-size: var(--ownerrez-font-body);
}
.ownerrez-photos-modal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.ownerrez-photos-modal__item {
  margin: 0;
}
.ownerrez-photos-modal__item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}
.ownerrez-photos-modal__item figcaption {
  margin-top: 0.75rem;
  font-size: var(--ownerrez-font-body);
  font-weight: 500;
  color: #475569;
}

.ownerrez-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive fixes */
@media (min-width: 768px) {
  .ownerrez-photos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, 200px);
    grid-auto-columns: 50%;
    grid-auto-rows: 200px;
  }
  .ownerrez-photos figure:nth-child(1) {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
    border-radius: 1rem 0 0 1rem;
  }
  .ownerrez-photos figure:nth-child(2) {
    border-radius: 0;
  }
  .ownerrez-photos figure:nth-child(3) {
    border-radius: 0 1rem 0 0;
  }
  .ownerrez-photos figure:nth-child(4) {
    border-radius: 0;
  }
  .ownerrez-photos figure:nth-child(5) {
    border-radius: 0 0 1rem 0;
  }
  .ownerrez-photos-modal__grid {
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
}
.ownerrez-property-summary {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: inherit;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 1rem;
}
.ownerrez-property-summary__headline {
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ownerrez-property-summary__headline-part {
  display: inline-flex;
  align-items: center;
}
.ownerrez-property-summary__separator {
  color: rgba(15, 23, 42, 0.45);
  font-weight: 400;
}
.ownerrez-property-summary__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ownerrez-property-summary__amenity {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
}
.ownerrez-property-summary__amenity .fa-solid {
  font-size: var(--ownerrez-font-body);
}
.ownerrez-property-summary__amenity-label {
  font-size: inherit;
  color: inherit;
}

.ownerrez-btn, .orz-btn {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--ownerrez-border, #e5e7eb);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  color: var(--ownerrez-search-text, #111827);
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease, opacity 120ms ease;
}

.ownerrez-btn:disabled, .orz-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ownerrez-btn--ghost, .orz-btn--ghost {
  background: #fff;
  color: var(--ownerrez-search-text, #111827);
}

.ownerrez-btn--ghost:hover:not(:disabled), .orz-btn--ghost:hover:not(:disabled) {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.ownerrez-btn--primary, .orz-btn--primary {
  background: var(--ownerrez-accent);
  color: #fff;
  border-color: var(--ownerrez-accent);
}

.ownerrez-btn--primary:hover:not(:disabled), .orz-btn--primary:hover:not(:disabled) {
  background: #00b0b0;
}

.ownerrez-property-search__guest-panel,
.ownerrez-property-search__bedroom-panel {
  display: none;
}

.ownerrez-guest-popover {
  position: fixed;
  background: #fff;
  border: 1px solid var(--ownerrez-search-border);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  padding: 1.2rem 1.4rem;
  z-index: 99999;
  width: min(440px, 92vw);
}

.ownerrez-shared-popover .ownerrez-property-search__guest-panel {
  display: flex;
}

.ownerrez-shared-popover .ownerrez-property-search__bedroom-panel {
  display: flex;
}

.ownerrez-property-search {
  width: 100%;
  color: var(--ownerrez-text);
  font-family: var(--ownerrez-font-body, inherit);
}
.ownerrez-property-search__form {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--ownerrez-white);
  border-radius: 12px;
  box-shadow: var(--ownerrez-shadow);
  min-height: 72px;
  transition: background-color 160ms ease;
}
.ownerrez-property-search__form.has-active {
  background: #e1e1e1;
}
.ownerrez-property-search__field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 1rem 1.35rem;
  border-right: 1px solid var(--ownerrez-border);
  flex: 1 1 0;
  position: relative;
  overflow: hidden;
  transition: opacity 140ms ease;
}
.ownerrez-property-search__field--bedrooms {
  border-right: none;
}
.ownerrez-property-search__field::before {
  content: "";
  position: absolute;
  inset: 6px 10px;
  background: #ffffff;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.97);
  box-shadow: 0 0 0 rgba(15, 23, 42, 0.12);
  transition: opacity 160ms ease, transform 160ms ease, box-shadow 180ms ease;
  z-index: 0;
}
.ownerrez-property-search__field.is-active::before {
  opacity: 1;
  transform: scale(1.05, 1.07);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
}
.ownerrez-property-search__field--arrival.is-active::before {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ownerrez-property-search__field--departure.is-active::before {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ownerrez-property-search__field--arrival.is-active + .ownerrez-property-search__field--departure::before {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ownerrez-property-search__field--arrival.is-active + .ownerrez-property-search__field--departure.is-active::before {
  left: -0.5px;
}
.ownerrez-property-search__field--arrival.is-active::before {
  right: -0.5px;
}
.ownerrez-property-search__label {
  display: block;
  font-size: calc(var(--ownerrez-font-body) * 0.85);
  font-weight: 700;
  color: var(--ownerrez-text);
  margin-bottom: 0.15rem;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}
.ownerrez-property-search__control {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  position: relative;
  z-index: 1;
}
.ownerrez-property-search__control--guest-picker {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.ownerrez-property-search__icon {
  color: var(--ownerrez-muted);
  font-size: var(--ownerrez-font-body);
  position: absolute;
  left: 0;
  pointer-events: none;
}
.ownerrez-property-search__guest-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: transparent;
  padding: 8px 0;
  cursor: pointer;
  text-align: left;
}
.ownerrez-property-search__guest-summary {
  color: var(--ownerrez-search-muted);
  font-size: var(--ownerrez-font-body);
}
.ownerrez-property-search__guest-panel {
  border: 1px solid var(--ownerrez-search-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.ownerrez-property-search .ownerrez-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0.15rem;
}
.ownerrez-property-search .ownerrez-guest-row__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.ownerrez-property-search .ownerrez-guest-row__label {
  font-weight: 600;
  color: var(--ownerrez-search-text);
}
.ownerrez-property-search .ownerrez-guest-row__hint {
  color: var(--ownerrez-search-muted);
  font-size: 0.9em;
}
.ownerrez-property-search .ownerrez-guest-row__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.ownerrez-property-search .ownerrez-guest-row__btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--ownerrez-search-border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--ownerrez-search-text);
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
  font-size: 16px;
}
.ownerrez-property-search .ownerrez-guest-row__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.ownerrez-property-search .ownerrez-guest-row__btn:not(:disabled):hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}
.ownerrez-property-search .ownerrez-guest-row__value {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
  color: var(--ownerrez-search-text);
  font-size: 16px;
}
.ownerrez-property-search .ownerrez-guest-panel__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.ownerrez-property-search__bedroom-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: transparent;
  border-radius: 10px;
  padding: 0.6rem 0;
  cursor: pointer;
  text-align: left;
  border: none;
}
.ownerrez-property-search__bedroom-summary {
  color: var(--ownerrez-search-muted);
  font-size: var(--ownerrez-font-body);
}
.ownerrez-property-search__bedroom-panel {
  border: 1px solid var(--ownerrez-search-border);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 180px;
}
.ownerrez-property-search .ownerrez-bedroom-option {
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.75rem;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  color: var(--ownerrez-search-text);
  transition: background 120ms ease, color 120ms ease;
}
.ownerrez-property-search .ownerrez-bedroom-option:hover {
  background: #f1f5f9;
}
.ownerrez-property-search .ownerrez-bedroom-option[aria-pressed=true] {
  background: #e0f2fe;
  color: var(--ownerrez-accent);
}
.ownerrez-property-search__input, .ownerrez-property-search__select {
  width: 100%;
  border: none;
  background: transparent;
  font-size: var(--ownerrez-font-body);
  color: inherit;
  padding: 0.35rem 0;
  line-height: 1.5;
  outline: none;
  appearance: none;
  padding: 0.25rem 0.5rem;
}
.ownerrez-property-search__input::placeholder, .ownerrez-property-search__select option[value=""] {
  color: var(--ownerrez-muted);
}
.ownerrez-property-search__input:is(#checkin-date, #checkout-date) {
  padding-left: 2.5rem;
  cursor: pointer;
}
.ownerrez-property-search__control--select {
  position: relative;
}
.ownerrez-property-search__chevron {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--ownerrez-font-body);
  color: var(--ownerrez-muted);
  pointer-events: none;
  line-height: 1;
  pointer-events: none;
}
.ownerrez-property-search__actions {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  gap: 0.5rem;
  flex: 0 0 auto;
}
.ownerrez-property-search__submit {
  border: none;
  background: var(--ownerrez-accent);
  color: #ffffff;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 160ms ease;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.ownerrez-property-search__submit:hover {
  background: #00b0b0;
}
@media (max-width: 900px) {
  .ownerrez-property-search__form {
    flex-wrap: wrap;
  }
  .ownerrez-property-search__field {
    flex: 1 1 45%;
    border-right: none;
  }
  .ownerrez-property-search__actions {
    width: 100%;
    justify-content: flex-end;
  }
}
@media (max-width: 600px) {
  .ownerrez-property-search__form {
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
  }
  .ownerrez-property-search__field {
    flex: 1 1 100%;
    border-right: none;
    margin-bottom: 0;
  }
  .ownerrez-property-search__field::before {
    inset: 0 8px;
    border-radius: 10px;
    transform: scale(1);
    right: 4px;
    left: 4px;
  }
  .ownerrez-property-search__field--arrival.is-active::before {
    right: 4px;
    top: 4px;
    left: 4px;
    border-top-right-radius: 10px;
  }
  .ownerrez-property-search__field--arrival.is-active + .ownerrez-property-search__field--departure.is-active::before {
    left: 4px;
    right: 4px;
    border-bottom-left-radius: 10px;
  }
  .ownerrez-property-search__field.is-active::before {
    transform: scale(1);
  }
  .ownerrez-property-search__field--arrival.is-active::before {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .ownerrez-property-search__field--departure.is-active::before {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .ownerrez-property-search__field--arrival.is-active + .ownerrez-property-search__field--departure.is-active::before {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .ownerrez-property-search__field--arrival {
    margin-bottom: 1px;
  }
  .ownerrez-property-search__field--departure {
    margin-top: 0;
  }
  .ownerrez-property-search__submit {
    width: 100%;
    text-align: center;
  }
}
.ownerrez-property-search__form.has-active .ownerrez-property-search__field {
  opacity: 0.7;
}
.ownerrez-property-search__form.has-active .ownerrez-property-search__field.is-active {
  opacity: 1;
}

.ownerrez-shared-popover {
  position: fixed;
  z-index: 99999;
  display: none;
  left: 0;
  top: 0;
  transition: top 180ms ease, left 180ms ease, width 180ms ease;
}
.ownerrez-shared-popover__content {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  padding: 16px;
}
.ownerrez-shared-popover__section {
  display: none;
}
.ownerrez-shared-popover__section--calendar {
  width: 100%;
}
.ownerrez-shared-popover .ownerrez-shared-popover .ownerrez-property-search__guest-panel {
  border: 1px solid var(--ownerrez-search-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.ownerrez-shared-popover .ownerrez-shared-popover .ownerrez-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0.15rem;
}
.ownerrez-shared-popover .ownerrez-shared-popover .ownerrez-guest-row__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.ownerrez-shared-popover .ownerrez-shared-popover .ownerrez-guest-row__label {
  font-weight: 600;
  color: var(--ownerrez-search-text);
}
.ownerrez-shared-popover .ownerrez-shared-popover .ownerrez-guest-row__hint {
  color: var(--ownerrez-search-muted);
  font-size: 0.9em;
}
.ownerrez-shared-popover .ownerrez-shared-popover .ownerrez-guest-row__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.ownerrez-shared-popover .ownerrez-shared-popover .ownerrez-guest-row__btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--ownerrez-search-border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--ownerrez-search-text);
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
  font-size: 16px;
}
.ownerrez-shared-popover .ownerrez-shared-popover .ownerrez-guest-row__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.ownerrez-shared-popover .ownerrez-shared-popover .ownerrez-guest-row__btn:not(:disabled):hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}
.ownerrez-shared-popover .ownerrez-shared-popover .ownerrez-guest-row__value {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
  color: var(--ownerrez-search-text);
  font-size: 16px;
}
.ownerrez-shared-popover .ownerrez-shared-popover .ownerrez-guest-panel__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.ownerrez-shared-popover .ownerrez-shared-popover .ownerrez-property-search__bedroom-panel {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 180px;
}
.ownerrez-shared-popover .ownerrez-shared-popover .ownerrez-bedroom-option {
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.75rem;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  color: var(--ownerrez-search-text);
  transition: background 120ms ease, color 120ms ease;
}
.ownerrez-shared-popover .ownerrez-shared-popover .ownerrez-bedroom-option:hover {
  background: #f1f5f9;
}
.ownerrez-shared-popover .ownerrez-property-search__guest-panel {
  border: 1px solid var(--ownerrez-search-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.ownerrez-shared-popover .ownerrez-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0.15rem;
}
.ownerrez-shared-popover .ownerrez-guest-row__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.ownerrez-shared-popover .ownerrez-guest-row__label {
  font-weight: 600;
  color: var(--ownerrez-search-text);
}
.ownerrez-shared-popover .ownerrez-guest-row__hint {
  color: var(--ownerrez-search-muted);
  font-size: 0.9em;
}
.ownerrez-shared-popover .ownerrez-guest-row__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.ownerrez-shared-popover .ownerrez-guest-row__btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--ownerrez-search-border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--ownerrez-search-text);
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
  font-size: 16px;
}
.ownerrez-shared-popover .ownerrez-guest-row__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.ownerrez-shared-popover .ownerrez-guest-row__btn:not(:disabled):hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}
.ownerrez-shared-popover .ownerrez-guest-row__value {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
  color: var(--ownerrez-search-text);
  font-size: 16px;
}
.ownerrez-shared-popover .ownerrez-guest-panel__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.ownerrez-shared-popover {
  /* Ensure product-page guest popover inherits the same styling as search */
}
.ownerrez-shared-popover .ownerrez-guest-popover .ownerrez-property-search__guest-panel {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.ownerrez-shared-popover .ownerrez-guest-popover .ownerrez-guest-row__btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--ownerrez-search-border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--ownerrez-search-text);
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
  font-size: 16px;
}
.ownerrez-shared-popover .ownerrez-guest-popover .ownerrez-guest-row__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.ownerrez-shared-popover .ownerrez-guest-popover .ownerrez-guest-row__btn:not(:disabled):hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}
.ownerrez-shared-popover .ownerrez-guest-popover .ownerrez-guest-row__value {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
  color: var(--ownerrez-search-text);
  font-size: 16px;
}
.ownerrez-shared-popover .ownerrez-guest-popover .ownerrez-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
}
.ownerrez-shared-popover .ownerrez-guest-popover .ownerrez-guest-row__label {
  font-weight: 700;
  font-size: 1.05rem;
}
.ownerrez-shared-popover .ownerrez-guest-popover .ownerrez-guest-row__hint {
  color: var(--ownerrez-search-muted);
  font-size: 0.95rem;
}
.ownerrez-shared-popover .ownerrez-guest-popover .ownerrez-guest-row__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.ownerrez-shared-popover .ownerrez-guest-popover .ownerrez-guest-panel__actions {
  margin-top: 0.75rem;
  justify-content: flex-end;
  display: flex;
  gap: 0.5rem;
}
.ownerrez-shared-popover .ownerrez-property-search__bedroom-panel {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 180px;
}
.ownerrez-shared-popover .ownerrez-bedroom-option {
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.75rem;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  color: var(--ownerrez-search-text);
  transition: background 120ms ease, color 120ms ease;
}
.ownerrez-shared-popover .ownerrez-bedroom-option:hover {
  background: #f1f5f9;
}
.ownerrez-shared-popover.is-open .ownerrez-shared-popover__section {
  display: none;
}

.ownerrez-property-grid__wrapper {
  display: block;
}

.ownerrez-property-grid__summary-block {
  margin: 0 0 0.75rem;
  font-weight: 600;
  color: #0f172a;
}
.ownerrez-property-grid__summary-block-title {
  font-size: 2.5rem;
}

.ownerrez-property-grid__summary-text {
  font-weight: 600;
  color: #0f172a;
}

.ownerrez-property-grid__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: start;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .ownerrez-property-grid__layout {
    grid-template-columns: 1fr;
  }
}

.ownerrez-property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.ownerrez-property-grid__item {
  height: 100%;
}

.ownerrez-property-grid--empty {
  padding: 1.25rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.ownerrez-property-grid__map-panel {
  position: relative;
  min-height: 420px;
  display: flex;
  align-self: stretch;
}
@media (max-width: 900px) {
  .ownerrez-property-grid__map-panel {
    min-height: 320px;
  }
}

.ownerrez-property-grid__map {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
  flex: 1 1 auto;
}

.ownerrez-property-grid__item.is-highlighted {
  outline: 2px solid var(--ownerrez-accent);
  outline-offset: 2px;
  border-radius: 10px;
}

.ownerrez-property-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transition: transform 150ms ease, box-shadow 150ms ease;
  height: 100%;
}
.ownerrez-property-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}
.ownerrez-property-card__media {
  display: block;
  position: relative;
  overflow: hidden;
}
.ownerrez-property-card__media img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 200px;
  transition: transform 200ms ease;
}
.ownerrez-property-card:hover .ownerrez-property-card__media img {
  transform: scale(1.02);
}
.ownerrez-property-card__body {
  padding: 0.8rem 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ownerrez-property-card__headline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.75rem;
}
.ownerrez-property-card__title {
  margin: 0;
  font-size: var(--ownerrez-font-body);
  line-height: 1.3;
  font-weight: 700;
}
.ownerrez-property-card__title a {
  color: #0f172a;
  text-decoration: none;
}
.ownerrez-property-card__price {
  white-space: nowrap;
  color: #0f172a;
  font-size: var(--ownerrez-font-body);
}
.ownerrez-property-card__facts {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #475569;
  font-size: var(--ownerrez-font-body-s);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

/* Sidebar / compact layout */
.ownerrez-property-grid--sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ownerrez-property-card--compact {
  display: block;
  padding: 1rem;
}

.ownerrez-property-card__compact {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.75rem;
  align-items: center;
}

.ownerrez-property-card__thumb {
  display: block;
  width: 100%;
  height: 100%;
}

.ownerrez-property-card__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  min-height: 80px;
}

.ownerrez-property-card__thumb-placeholder {
  width: 100%;
  min-height: 80px;
  background: #f1f5f9;
  border-radius: 8px;
}

.ownerrez-property-card__compact-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ownerrez-property-card__price--compact {
  color: #0f172a;
}

.ownerrez-property-card__facts--compact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  color: #475569;
  font-size: var(--ownerrez-font-body-s);
}

/* Product Calendar (Popover Range Picker) */
#ownerrez-calendar-container {
  position: relative;
  overflow: visible;
}
#ownerrez-calendar-container #ownerrez-calendar.orz-popover {
  position: fixed; /* match JS positionPopover() */
  top: 0; /* actual top is set dynamically by JS */
  z-index: 9999;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 12px;
  width: min(720px, 100%);
  max-width: calc(100vw - 32px);
  box-sizing: border-box;
  overflow: hidden;
  margin-top: 0;
}
@media (max-width: 900px) {
  #ownerrez-calendar-container #ownerrez-calendar.orz-popover {
    left: 0;
    right: auto;
    width: 100%;
  }
}
#ownerrez-calendar-container .ownerrez-property-search__guest-toggle {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 8px;
  line-height: 1;
  min-height: 40px;
}

.ownerrez-shared-popover__section--calendar {
  display: block;
}
.ownerrez-shared-popover__section--calendar #ownerrez-calendar.orz-popover {
  display: contents !important;
  position: static;
  width: 100%;
  max-width: none;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  overflow: visible;
  height: auto;
}
.ownerrez-shared-popover__section--calendar #ownerrez-calendar.orz-popover .orz-cal {
  width: 100%;
}

.orz-cal__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.orz-cal__months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 900px) {
  .orz-cal__months {
    grid-template-columns: 1fr;
  }
}
.orz-cal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 10px;
}
@media (max-width: 540px) {
  .orz-cal__actions {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding-top: 12px;
  }
}

.orz-nav {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  line-height: 1;
  transition: background 0.15s ease;
}
.orz-nav:hover {
  background: rgba(0, 0, 0, 0.05);
}
.orz-nav:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
}

.orz-month__title {
  font-weight: 600;
  margin: 4px 0 8px;
  text-align: left;
}

.orz-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(28px, 1fr));
  gap: 4px;
  align-items: center;
}

.orz-wd {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}

.orz-blank {
  height: 40px;
}

.orz-day {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border: none;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: #111;
  text-align: center;
  transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
  font-size: 12px;
}
.orz-day:not(.is-disabled):hover {
  background: rgba(0, 0, 0, 0.05);
}
.orz-day:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.orz-day.is-past {
  opacity: 0.35;
}
.orz-day.is-unavailable {
  opacity: 0.55;
  cursor: not-allowed;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 6px, rgba(0, 0, 0, 0.08) 6px, rgba(0, 0, 0, 0.08) 10px);
}
.orz-day.is-disabled {
  pointer-events: none;
}
.orz-day.is-available:not(.is-disabled) {
  outline: 1px solid rgba(0, 0, 0, 0.08);
}
.orz-day.is-inrange {
  background: rgba(0, 0, 0, 0.06);
}
.orz-day.is-start, .orz-day.is-end {
  background: #111 !important;
  color: #fff !important;
  opacity: 1 !important;
  background-image: none !important;
}

.ownerrez-date-inputs {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 720px) {
  .ownerrez-date-inputs {
    flex-direction: row;
  }
}
.ownerrez-date-inputs .date-input-group {
  flex: 1;
}
.ownerrez-date-inputs .date-input-group label {
  display: block;
  margin-bottom: 6px;
}
.ownerrez-date-inputs .date-input-group input {
  width: 100%;
  padding: 8px 8px 8px 32px;
  border: 1px solid #ddd;
  border-radius: 8px;
  line-height: 1;
  min-height: 40px;
}
.ownerrez-date-inputs .date-input-group .date-input-group-field {
  position: relative;
}
.ownerrez-date-inputs .date-input-group .date-input-group-field .ownerrez-property-search__icon {
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.ownerrez-occupancy-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}
.ownerrez-occupancy-inputs .occupancy-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ownerrez-occupancy-inputs .occupancy-input-group select {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.ownerrez-occupancy-picker {
  margin-bottom: 10px;
}

.ownerrez-calendar-legend {
  display: flex;
  gap: 16px;
  margin: 10px 0;
}
.ownerrez-calendar-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ownerrez-calendar-legend .legend-color {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}
.ownerrez-calendar-legend .legend-color.available {
  background: #4caf50;
}
.ownerrez-calendar-legend .legend-color.unavailable {
  background: #f44336;
}
.ownerrez-calendar-legend .legend-color.selected {
  background: #111;
}

#selected-dates-info.ownerrez-selected-dates {
  margin-top: 1rem;
}
#selected-dates-info.ownerrez-selected-dates h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: #475569;
}
#selected-dates-info.ownerrez-selected-dates .ownerrez-selected-dates__table {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}
#selected-dates-info.ownerrez-selected-dates .ownerrez-selected-dates__table .ownerrez-selected-dates__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}
#selected-dates-info.ownerrez-selected-dates .ownerrez-selected-dates__table .ownerrez-selected-dates__row:last-child {
  border-bottom: none;
}
#selected-dates-info.ownerrez-selected-dates .ownerrez-selected-dates__table .ownerrez-selected-dates__label {
  font-weight: 600;
  color: #1f2937;
}
#selected-dates-info.ownerrez-selected-dates .ownerrez-selected-dates__table .ownerrez-selected-dates__value {
  text-align: right;
  color: #0f172a;
  font-weight: 500;
}
#selected-dates-info.ownerrez-selected-dates .ownerrez-selected-dates__table .ownerrez-selected-dates__price {
  font-weight: 700;
  color: #0f172a;
}
#selected-dates-info.ownerrez-selected-dates .ownerrez-selected-dates__note {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #6b7280;
}

/*# sourceMappingURL=ownerrez.css.map */
