/* Otel detay — kurumsal v2 (scope: .od-v2-wrap) */
.od-v2-wrap {
  --od-ink: #0f172a;
  --od-muted: #64748b;
  --od-line: #e2e8f0;
  --od-bg: #f1f5f9;
  --od-card: #ffffff;
  --od-accent: #0ea5e9;
  --od-accent-d: #0284c7;
  --od-navy: #1e293b;
  --od-radius: 18px;
  --od-radius-sm: 12px;
  --od-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --od-shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.12);
  font-family: var(--site-font-sans, "Poppins", system-ui, sans-serif);
  color: var(--od-ink);
  background: linear-gradient(180deg, #f8fafc 0%, var(--od-bg) 40%);
  padding-bottom: 3rem;
}

.od-v2-wrap *, .od-v2-wrap *::before, .od-v2-wrap *::after { box-sizing: border-box; }
.od-v2-wrap img { max-width: 100%; height: auto; display: block; }
.od-v2-wrap a { color: inherit; }

/* Hero */
.od-v2-wrap .hotel-detail-hero-section {
  position: relative;
  margin-bottom: 0;
}
.od-v2-wrap .hotel-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  height: 48vh;
  max-height: 560px;
  background-size: cover;
  background-position: center;
  background-color: var(--od-navy);
}
.od-v2-wrap .hotel-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.15) 0%, rgba(15,23,42,.5) 45%, rgba(15,23,42,.88) 100%);
}

.od-v2-wrap .hotel-detail-hero-section > .container {
  position: relative;
  z-index: 2;
  margin-top: -72px;
  padding-bottom: 2rem;
}

.od-v2-wrap .hotel-info-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.25rem;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: var(--od-radius);
  box-shadow: var(--od-shadow-lg);
  padding: 1.35rem 1.5rem;
}

.od-v2-wrap .hotel-info-left { flex: 1 1 280px; min-width: 0; }
.od-v2-wrap .hotel-info-name {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--od-ink);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}
.od-v2-wrap .hotel-location {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: var(--od-muted);
}
.od-v2-wrap .hotel-location .bi { color: var(--od-accent); }
.od-v2-wrap .map-link {
  color: var(--od-accent-d);
  font-weight: 600;
  text-decoration: none;
}
.od-v2-wrap .map-link:hover { text-decoration: underline; }
.od-v2-wrap .hotel-info-stars { color: #fbbf24; letter-spacing: 2px; font-size: 0.95rem; }

.od-v2-wrap .hotel-pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  border-left: 1px solid var(--od-line);
  padding-left: 1.25rem;
}
@media (max-width: 768px) {
  .od-v2-wrap .hotel-pricing {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--od-line);
    padding-top: 1rem;
    width: 100%;
    justify-content: space-between;
  }
}

.od-v2-wrap .price-main {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--od-ink);
  letter-spacing: -0.02em;
}
.od-v2-wrap .price-note { font-size: 0.8rem; color: var(--od-muted); font-weight: 500; }
.od-v2-wrap .booking-btn {
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--od-accent) 0%, var(--od-accent-d) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.od-v2-wrap .booking-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.35);
}

/* Gallery strip */
.od-v2-wrap .gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 1.25rem;
}
.od-v2-wrap .gallery .tile {
  border-radius: var(--od-radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 2px 12px rgba(45, 62, 80, 0.08);
}
.od-v2-wrap .gallery .tile img { width: 100%; height: 100%; object-fit: cover; }
.od-v2-wrap .see-all {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--od-navy);
  color: #fff;
  border-radius: var(--od-radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  min-height: 100%;
  min-height: 120px;
  transition: background 0.2s;
}
.od-v2-wrap .see-all:hover { background: #334155; }

.od-v2-wrap .mobile-gallery { display: none; }
@media (max-width: 980px) {
  .od-v2-wrap .gallery { display: none; }
  .od-v2-wrap .mobile-gallery { display: block; margin-top: 1rem; }
  .od-v2-wrap .mobile-gallery .swiper-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--od-radius-sm);
  }
}

/* Sticky tabs */
.od-v2-wrap .tabs-wrap {
  position: sticky;
  top: 68px;
  z-index: 50;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--od-line);
  padding: 0.65rem 0;
  margin: 0;
}
.od-v2-wrap .tabs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.od-v2-wrap .tab {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--od-muted);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.od-v2-wrap .tab:hover {
  color: var(--od-accent-d);
  background: #fff;
  border-color: var(--od-line);
  box-shadow: var(--od-shadow);
}

/* Sections */
.od-v2-wrap .container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

.od-v2-wrap .hotel-card {
  background: var(--od-card);
  border-radius: var(--od-radius);
  border: 1px solid var(--od-line);
  box-shadow: var(--od-shadow);
  padding: 1.75rem 1.5rem;
  margin: 1.75rem auto;
}
.od-v2-wrap .hotel-card > h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--od-ink);
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--od-line);
  letter-spacing: -0.02em;
}

.od-v2-wrap .hotel-description {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #334155;
}

/* Rooms */
.od-v2-wrap .rooms { display: flex; flex-direction: column; gap: 1.5rem; }
.od-v2-wrap .room {
  background: #fafbfc;
  border: 1px solid var(--od-line);
  border-radius: var(--od-radius);
  padding: 1.25rem;
  transition: box-shadow 0.2s;
}
.od-v2-wrap .room:hover { box-shadow: var(--od-shadow); }
.od-v2-wrap .room-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: var(--od-navy);
}
.od-v2-wrap .room-layout { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 900px) {
  .od-v2-wrap .room-layout { flex-direction: row; align-items: stretch; }
    .od-v2-wrap .room-left { flex: 0 0 300px; }
}
.od-v2-wrap .room-left .photo {
  border-radius: var(--od-radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  position: relative;
}
.od-v2-wrap .counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(15,23,42,.82);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.od-v2-wrap .room-grid { flex: 1; min-width: 0; }
.od-v2-wrap .grid-head,
.od-v2-wrap .grid-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 0.75rem;
  align-items: start;
}
@media (max-width: 700px) {
  .od-v2-wrap .grid-head { display: none; }
  .od-v2-wrap .grid-body { grid-template-columns: 1fr; }
}
.od-v2-wrap .grid-head {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--od-muted);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--od-line);
}
.od-v2-wrap .cell { font-size: 0.88rem; }
.od-v2-wrap .chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #e0f2fe;
  color: #0369a1;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.od-v2-wrap .opt { margin-bottom: 0.35rem; }
.od-v2-wrap .opt .ok { color: #059669; }
.od-v2-wrap .opt .no { color: #dc2626; }

.od-v2-wrap .guests { display: flex; align-items: center; gap: 0.5rem; }
.od-v2-wrap .guest-icon { color: var(--od-accent); }
.od-v2-wrap .price-wrap .price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--od-ink);
}
.od-v2-wrap .price-wrap .tiny { font-size: 0.72rem; color: var(--od-muted); margin: 0.4rem 0; line-height: 1.4; }
.od-v2-wrap .scarce { font-size: 0.75rem; font-weight: 700; color: #b45309; margin-bottom: 0.5rem; }
.od-v2-wrap .price-wrap .btn {
  width: 100%;
  margin-top: 0.5rem;
  border: none;
  background: linear-gradient(135deg, var(--od-navy), #334155);
  color: #fff;
  font-weight: 700;
  padding: 0.65rem 1rem;
  border-radius: var(--od-radius-sm);
  cursor: pointer;
  transition: filter 0.15s;
}
.od-v2-wrap .price-wrap .btn:hover { filter: brightness(1.08); }

/* Similar hotels */
.od-v2-wrap .similar-hotels-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}
.od-v2-wrap .similar-hotel-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border-radius: var(--od-radius-sm);
  overflow: hidden;
  border: 1px solid var(--od-line);
  background: #fff;
}

/* Modals */
.od-v2-wrap .photo-modal {
  position: fixed;
  inset: 0;
  z-index: 10060;
  background: rgba(15,23,42,.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.od-v2-wrap .photo-modal.open { display: flex; }
.od-v2-wrap .modal-dialog-photo {
  background: #fff;
  border-radius: var(--od-radius);
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  box-shadow: var(--od-shadow-lg);
}
.od-v2-wrap .photo-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--od-line);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}
.od-v2-wrap .modal-title-wrap { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--od-navy); }
.od-v2-wrap .modal-title-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--od-accent); }
.od-v2-wrap .close-btn {
  border: none;
  background: #f1f5f9;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--od-navy);
}
.od-v2-wrap .close-btn:hover { background: #e2e8f0; }
.od-v2-wrap .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  padding: 1rem;
}
.od-v2-wrap .gallery-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}

/* Amenities */
.od-v2-wrap .amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.od-v2-wrap .amen {
  padding: 0.45rem 0.9rem;
  background: #f8fafc;
  border: 1px solid var(--od-line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

/* Reviews */
.od-v2-wrap .reviews-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.od-v2-wrap .review-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--od-line);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--od-accent-d);
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.od-v2-wrap .review-btn:hover { box-shadow: var(--od-shadow); }

/* Similar hotels */
.od-v2-wrap .similar-hotels-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.od-v2-wrap .scroll-left-btn,
.od-v2-wrap .scroll-right-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--od-line);
  background: #fff;
  box-shadow: var(--od-shadow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--od-navy);
}
.od-v2-wrap .scroll-left-btn:hover,
.od-v2-wrap .scroll-right-btn:hover { background: #f8fafc; }
@media (max-width: 640px) {
  .od-v2-wrap .scroll-left-btn,
  .od-v2-wrap .scroll-right-btn { display: none; }
}
.od-v2-wrap .similar-hotel-card {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.od-v2-wrap .similar-hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--od-shadow-lg);
}
.od-v2-wrap .similar-hotel-card .hotel-image {
  position: relative;
  border-radius: var(--od-radius-sm) var(--od-radius-sm) 0 0;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.od-v2-wrap .similar-hotel-card .hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.od-v2-wrap .rating-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,.95);
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.od-v2-wrap .similar-hotel-card .hotel-info {
  padding: 12px 14px 16px;
}
.od-v2-wrap .similar-hotel-card .hotel-name {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--od-navy);
}
.od-v2-wrap .similar-hotel-card .stars { color: #fbbf24; font-size: 0.85rem; margin-bottom: 6px; }
.od-v2-wrap .similar-hotel-card .distance { font-size: 0.72rem; color: var(--od-muted); line-height: 1.35; margin-bottom: 8px; }
.od-v2-wrap .similar-hotel-card .price-info { margin-top: 8px; }
.od-v2-wrap .similar-hotel-card .new-price { font-weight: 800; color: var(--od-ink); font-size: 1.05rem; }
.od-v2-wrap .similar-hotel-card .old-price {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 0.8rem;
  margin-right: 6px;
}
.od-v2-wrap .similar-hotel-card .price-note { font-size: 0.7rem; color: var(--od-muted); }

/* Lightbox */
.od-v2-wrap .lightbox-container { position: relative; max-width: 90vw; max-height: 90vh; }
.od-v2-wrap .lightbox-close,
.od-v2-wrap .lightbox-nav {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,.9);
  border: none;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--od-navy);
}
.od-v2-wrap .lightbox-close { top: 12px; right: 12px; }
.od-v2-wrap .lightbox-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.od-v2-wrap .lightbox-next { right: 12px; top: 50%; transform: translateY(-50%); }
.od-v2-wrap #lightboxImage { max-width: 90vw; max-height: 85vh; border-radius: 12px; }

/* Misc */
.od-v2-wrap .hotel-card .review-item,
.od-v2-wrap .amenity-tag,
.od-v2-wrap .policy-block {
  border-radius: var(--od-radius-sm);
}
