/* Rezervasyon akışı: hero arama çubuğu, oda listesi, ödeme sayfası */

/* Site accent ile uyum (REZERVASYON butonu — petrol / teal) */
:root {
  --booking-cta: var(--accent, #1e5a6b);
  --booking-cta-hover: var(--accent-hover, #164352);
  --booking-surface: #f0f1f4;
}

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

/* ——— Hero üstü arama çubuğu (görsel 1 stili) ——— */
.hero-booking-tagline {
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 auto 1.25rem;
  max-width: 36rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

/* Giriş / çıkış / konaklama / ara → ayrı beyaz kartlar (tek blok yok) */
.hero-booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr) auto;
  grid-template-areas: "checkin checkout stay search";
  align-items: stretch;
  gap: 0.55rem;
  max-width: 960px;
  margin: 0 auto 1.75rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.hero-booking__cell--checkin {
  grid-area: checkin;
}

.hero-booking__cell--checkout {
  grid-area: checkout;
}

.hero-booking__cell--stay {
  grid-area: stay;
}

.hero-booking__submit--search {
  grid-area: search;
}

.hero-booking__cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.7rem 0.9rem;
  min-width: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(15, 23, 30, 0.12);
  border: 1px solid rgba(15, 23, 30, 0.07);
}

.hero-booking__cell--grow {
  position: relative;
}

.hero-booking__label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-booking__date {
  border: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  min-height: 1.5rem;
}

.hero-booking__date::-webkit-calendar-picker-indicator {
  opacity: 0.55;
  cursor: pointer;
}

.hero-booking__guest-line {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.hero-booking__guest-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-top: 0.35rem;
  min-width: 0;
}

.hero-booking__guest-row .hero-booking__guest-select {
  margin-top: 0;
}

.hero-booking__guest-select {
  margin-top: 0.35rem;
  width: 100%;
  max-width: none;
  border: 1px solid rgba(30, 90, 107, 0.28);
  border-radius: 10px;
  padding: 0.42rem 0.65rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  background: linear-gradient(180deg, #fff 0%, #f3f8f9 100%);
  box-shadow: 0 2px 10px rgba(30, 90, 107, 0.1);
  cursor: pointer;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-booking__guest-select:hover,
.hero-booking__guest-select:focus {
  border-color: rgba(30, 90, 107, 0.45);
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 90, 107, 0.15);
}

.hero-booking__divider {
  display: none;
}

.hero-booking__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 12px;
  background: var(--booking-cta);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 6px 22px rgba(30, 90, 107, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 0;
  white-space: nowrap;
}

.hero-booking__submit:hover {
  transform: translateY(-1px);
  background: var(--booking-cta-hover);
}

.hero-booking__icon {
  flex-shrink: 0;
}

/* Tablet: 2 üst (tarihler), konaklama tam genişlik, buton tam genişlik */
@media (max-width: 840px) {
  .hero-booking {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "checkin checkout"
      "stay stay"
      "search search";
    gap: 0.45rem;
  }

  .hero-booking__submit--search {
    width: 100%;
    padding: 0.65rem 1rem;
  }
}

/* Mobil: kompakt ayrı kartlar */
@media (max-width: 560px) {
  .hero-booking-tagline {
    font-size: 0.72rem;
    line-height: 1.35;
    margin: 0 auto 0.45rem;
    padding: 0 0.35rem;
  }

  .hero-booking {
    max-width: 100%;
    margin: 0 auto 1rem;
    gap: 0.38rem;
  }

  .hero-booking__cell {
    padding: 0.42rem 0.5rem;
    gap: 0.08rem;
    border-radius: 10px;
  }

  .hero-booking__label {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
    line-height: 1.2;
  }

  .hero-booking__date {
    font-size: 0.78rem;
    font-weight: 600;
    min-height: 1.1rem;
    line-height: 1.2;
  }

  .hero-booking__guest-line {
    display: none;
  }

  .hero-booking__guest-row {
    gap: 0.28rem;
    margin-top: 0.15rem;
  }

  .hero-booking__guest-select {
    margin-top: 0.15rem;
    padding: 0.28rem 0.42rem;
    font-size: 0.74rem;
    border-radius: 8px;
  }

  .hero-booking__submit--search {
    padding: 0.52rem 0.85rem;
    font-size: 0.64rem;
    letter-spacing: 0.07em;
    border-radius: 10px;
    gap: 0.35rem;
  }

  .hero-booking__icon {
    width: 15px;
    height: 15px;
  }
}

/* ——— book.html / checkout.html ortak ——— */
.booking-page {
  background: var(--booking-surface);
  min-height: 100vh;
}

.booking-page .site-header {
  position: relative;
}

.booking-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow);
}

.booking-topbar__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.booking-topbar__form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
}

.booking-topbar__form .field {
  margin: 0;
}

.booking-topbar__form .field label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.booking-topbar__form input[type="date"],
.booking-topbar__form select {
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
}

.field--guests-nice .bf-guests-select {
  min-width: 5.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(30, 90, 107, 0.32);
  background: linear-gradient(165deg, #fff 0%, #eef6f7 100%);
  box-shadow: 0 3px 14px rgba(30, 90, 107, 0.12);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.field--guests-nice .bf-guests-select:hover,
.field--guests-nice .bf-guests-select:focus {
  border-color: var(--booking-cta);
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 90, 107, 0.18);
}

.field-hint {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--text-muted);
  max-width: 18rem;
}

@media (max-width: 560px) {
  .field-hint {
    font-size: 0.68rem;
  }
}

.btn-booking-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  border: none;
  border-radius: 10px;
  background: var(--booking-cta);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-booking-cta:hover {
  background: var(--booking-cta-hover);
}

.btn-booking-cta:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Oda listesi */
.book-layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 960px) {
  .book-layout {
    grid-template-columns: 1fr;
  }
}

.room-result-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.room-result-card {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.room-result-card--clickable .room-result-card__body {
  cursor: pointer;
}

.room-result-card--clickable:not(.room-result-card--unavailable):hover {
  box-shadow: 0 12px 40px rgba(15, 23, 30, 0.1);
  border-color: rgba(30, 90, 107, 0.22);
}

@media (max-width: 640px) {
  .room-result-card {
    grid-template-columns: 1fr;
  }
}

.room-result-card__media {
  position: relative;
  min-height: 220px;
  height: 100%;
  aspect-ratio: 4 / 3;
  max-height: 320px;
  background: linear-gradient(145deg, #e8eef0 0%, #f4f6f7 100%);
}

.room-result-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.room-gallery--hscroll {
  isolation: isolate;
}

.room-gallery__scroller {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  gap: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.room-gallery__scroller::-webkit-scrollbar {
  display: none;
}

.room-gallery__scroller--drag {
  cursor: grabbing;
  user-select: none;
}

.room-gallery__scroller--drag img {
  pointer-events: none;
}

.room-gallery__slide {
  flex: 0 0 100%;
  width: 100%;
  min-height: 100%;
  align-self: stretch;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.room-gallery__slide img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.room-gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text, #1a1d21);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
  opacity: 0.92;
}

.room-gallery__btn:hover:not(:disabled) {
  background: #fff;
  opacity: 1;
}

.room-gallery__btn:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.room-gallery__btn--prev {
  left: 0.5rem;
}

.room-gallery__btn--next {
  right: 0.5rem;
}

.room-gallery__indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
  z-index: 2;
}

.room-gallery__indicator-fill {
  display: block;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2px;
  transition: width 0.12s ease-out, margin-left 0.12s ease-out;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.room-gallery--single,
.room-gallery--single img {
  width: 100%;
  height: 100%;
}

.room-gallery--single img {
  object-fit: cover;
  display: block;
  min-height: 220px;
}

.room-result-card--unavailable .room-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 29, 33, 0.35);
  pointer-events: none;
  z-index: 1;
}

.room-result-card--unavailable .room-result-card__media::after {
  display: none;
}

.room-result-card__body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}

.room-result-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0;
  line-height: 1.2;
}

.room-result-card__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.room-result-card__capacity {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
}

.room-result-card__rate-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  background: rgba(30, 90, 107, 0.09);
  color: var(--accent, #1e5a6b);
  border: 1px solid rgba(30, 90, 107, 0.15);
}

.room-result-card__desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}

.room-result-card__desc-inner {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.room-result-card.is-desc-expanded .room-result-card__desc-inner {
  display: block;
  -webkit-line-clamp: unset;
}

.room-desc-toggle {
  margin-top: 0.35rem;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.room-desc-toggle:hover {
  color: var(--accent-hover);
}

.room-amenity-wrap {
  margin: 0.15rem 0 0;
}

.room-amenity-chips,
.room-amenity-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.room-amenity-extra {
  display: none;
  margin-top: 0.45rem;
}

.room-result-card.is-amenity-expanded .room-amenity-extra {
  display: grid;
}

.room-amenity-chip {
  font-size: 0.78rem;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.4rem 0.55rem;
  text-align: center;
  font-weight: 500;
}

.room-amenity-toggle {
  margin-top: 0.55rem;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.room-amenity-toggle:hover {
  color: var(--accent-hover);
}

.room-result-card__search-ctx {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.room-result-card__footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.25rem;
}

.room-result-card__footer .btn-booking-cta {
  margin-top: 0.35rem;
  min-width: 160px;
}

.room-result-card__rate {
  font-size: 0.8rem;
}

.room-result-card__rate strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.pay-at-hotel {
  color: #c02626;
  font-weight: 600;
  font-size: 0.82rem;
}

.room-rate-note {
  color: #c02626;
  font-weight: 600;
  font-size: 0.82rem;
}

.price-discount-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.price-discount-row--compact {
  margin-bottom: 0.2rem;
  justify-content: flex-end;
}

.price-discount-row--compact .price-strike {
  font-size: 0.82rem;
}

.room-result-card__price-tier {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  min-width: 180px;
}

.price-per-night-line {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.price-per-night-line small {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 0.15rem;
}

.price-strike {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.room-discount-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: #c02626;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
}

.price-block {
  text-align: right;
}

.price-block .price-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.price-block .price-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
}

.book-sidebar {
  position: sticky;
  top: 1rem;
}

.book-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.book-sidebar-card h3 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.book-sidebar-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.coupon-row {
  display: flex;
  gap: 0.5rem;
}

.coupon-row input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* Checkout */
.checkout-layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

.checkout-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

.checkout-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.checkout-card--guests {
  border-color: rgba(30, 90, 107, 0.18);
  background: linear-gradient(180deg, #fff 0%, #fafcfd 100%);
}

.guest-form-intro {
  margin: 0 0 1.15rem;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text);
  background: rgba(30, 90, 107, 0.07);
  border: 1px solid rgba(30, 90, 107, 0.14);
  border-radius: 10px;
}

.co-guests-fields {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .checkout-form-grid {
    grid-template-columns: 1fr;
  }
}

.checkout-form-grid .field-full {
  grid-column: 1 / -1;
}

.checkout-form-grid label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.checkout-form-grid input,
.checkout-form-grid textarea,
.checkout-form-grid select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
}

.checkout-form-grid select {
  background: var(--panel-bg-alt, rgba(255, 255, 255, 0.06));
  color: inherit;
  cursor: pointer;
}

.checkout-form-grid textarea {
  min-height: 88px;
  resize: vertical;
}

.checkout-pay-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  background: var(--booking-cta);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.checkout-pay-btn:hover {
  background: var(--booking-cta-hover);
}

.cart-summary-highlight {
  background: #e8f2f4;
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1rem;
}

.cart-summary-highlight .total-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.cart-summary-highlight .total-amount {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text);
}

.cart-tax-note {
  margin-top: 1rem;
  padding: 0.75rem;
  background: #fffbeb;
  border-radius: 8px;
  font-size: 0.78rem;
  color: #854d0e;
}

.policy-note {
  color: #c02626;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.booking-page .page-title {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
}

/* Doluluk özeti (oda listesi üstü) */
.book-occupancy-banner {
  max-width: 1120px;
  margin: 0 auto 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(30, 90, 107, 0.09);
  border: 1px solid rgba(30, 90, 107, 0.2);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
}

.book-occupancy-banner strong {
  color: var(--accent, #1e5a6b);
}

/* Seçilen tarihlerde dolu suite */
.room-result-card--unavailable {
  opacity: 0.92;
  position: relative;
}

.room-dolu-badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #fef2f2;
  color: #b91c1c;
  border-radius: 6px;
}

.btn-booking-cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Misafir fieldset */
.guest-block {
  border: 1px solid rgba(30, 90, 107, 0.2);
  border-radius: 14px;
  padding: 1.15rem 1.2rem 1.2rem;
  margin-bottom: 1rem;
  background: linear-gradient(155deg, #fff 0%, #f4f9fa 55%, #fff 100%);
  box-shadow: 0 6px 28px rgba(15, 23, 30, 0.07);
}

.guest-block__legend {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0 0.25rem 0.85rem;
  margin: 0 0 0.15rem;
  width: 100%;
  border: none;
  font-size: inherit;
}

.guest-block__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--booking-cta), var(--booking-cta-hover));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 4px 12px rgba(30, 90, 107, 0.35);
}

.guest-block__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.35;
}

.guest-block .checkout-form-grid {
  gap: 0.85rem;
}

/* Başarı popup */
.doa-success-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.doa-success-modal[hidden] {
  display: none !important;
}

.doa-success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 28, 0.45);
  backdrop-filter: blur(4px);
}

.doa-success-modal__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 440px);
  max-height: min(92vh, 620px);
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(15, 23, 28, 0.2);
  text-align: center;
  border: 1px solid var(--border);
}

.doa-success-modal__main {
  padding: 2rem 1.75rem 1.5rem;
  flex: 1;
  overflow-y: auto;
  text-align: center;
}

.doa-success-modal__ig {
  flex-shrink: 0;
  padding: 1.15rem 1.25rem 1.35rem;
  background: linear-gradient(135deg, #fdf4f8 0%, #f8f3fc 40%, #fff5f0 100%);
  border-top: 1px solid rgba(193, 53, 132, 0.15);
  text-align: center;
}

.doa-success-modal__ig-text {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

.doa-success-modal__ig-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  box-shadow: 0 6px 20px rgba(221, 42, 123, 0.35);
  transition: transform 0.15s, box-shadow 0.2s;
}

.doa-success-modal__ig-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(129, 52, 175, 0.4);
  color: #fff;
}

.doa-success-modal__ig-icon {
  flex-shrink: 0;
}

.doa-success-modal__check {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  line-height: 56px;
  border-radius: 50%;
  background: rgba(30, 90, 107, 0.12);
  color: var(--accent, #1e5a6b);
  font-size: 1.75rem;
  font-weight: 700;
}

.doa-success-modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.doa-success-modal__text {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.doa-success-modal .checkout-pay-btn {
  margin-top: 0;
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
