/* Rezervasyon — şablon parity */
.scrollbar-none {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-none::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

#rez-funnel-steps {
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  cursor: grab;
}
#rez-funnel-steps > * {
  flex-shrink: 0;
}

/* Suite picker oda kartı — mobil dikey, masaüstü yatay */
.suite-picker-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}

.suite-cover {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 220px;
}

.suite-cover-img {
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .suite-picker-top {
    flex-direction: row;
    align-items: stretch;
    gap: 1.25rem;
  }

  .suite-cover {
    width: 15rem;
    min-width: 15rem;
    max-width: 15rem;
    height: 11.5rem;
    max-height: none;
    aspect-ratio: auto;
  }

  .suite-picker-body {
    flex: 1 1 auto;
    justify-content: space-between;
    min-width: 0;
  }

  .suite-price-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
  }

  .suite-price-row > div {
    width: auto;
    min-width: 0;
  }
}

@media (min-width: 1024px) {
  .suite-cover {
    width: 17rem;
    min-width: 17rem;
    max-width: 17rem;
    height: 12rem;
  }
}

/* Suite booking fields — masaüstünde 4 yan yana */
#suite-booking-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.75rem;
}
@media (min-width: 768px) {
  #suite-booking-fields {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem 1rem;
  }
}

/* Suite adımı: Devam Et’e kadar alt alan tamamen kapalı */
#suite-summary-panel.suite-step-locked,
#rez-checkout-funnel.suite-step-locked {
  display: none !important;
}
#suite-summary-panel:not(.suite-step-locked) #suite-summary-hint {
  display: none;
}
#rez-checkout-funnel:not(.suite-step-locked) #rez-checkout-lock-hint {
  display: none;
}
