/* Lycianescapes override – Short breaks mobil, en sonda yüklendiği için tüm stilleri geçer */

/* ============================================ */
/* WhatsApp Floating Button                    */
/* ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1041;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.whatsapp-float:active {
  transform: scale(0.96);
}
/* Mobil: filter/reservation bar'ın üstünde */
@media (max-width: 991px) {
  .whatsapp-float {
    bottom: 76px;
    right: 16px;
    width: 46px;
    height: 46px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}
/* Villa detay mobil: reservation bottom bar var */
@media (max-width: 991px) {
  body.villa-detay .whatsapp-float {
    bottom: 76px;
  }
}

/* ============================================ */
/* Currency Selector — Segmented Button        */
/* ============================================ */
.Lh-currency {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 12px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 2px;
  border: 1px solid rgba(255,255,255,0.2);
}
.Lh-currency-btn {
  border: none !important;
  background: transparent !important;
  color: rgba(255,255,255,0.7) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: all 0.2s ease;
  line-height: 1 !important;
  position: relative;
  z-index: 1;
}
.Lh-currency-btn:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.15) !important;
}
.Lh-currency-btn.active {
  background: #E07020 !important;
  color: #fff !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  z-index: 2;
}
/* Mobil menüdeki currency */
.Lh-currency-mobile {
  background: rgba(0,0,0,0.06) !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
}
.Lh-currency-mobile .Lh-currency-btn {
  color: rgba(0,0,0,0.5);
}
.Lh-currency-mobile .Lh-currency-btn:hover {
  color: #333;
  background: rgba(0,0,0,0.06);
}
.Lh-currency-mobile .Lh-currency-btn.active {
  background: #E07020;
  color: #fff;
}

/* ============================================ */
/* Lycian Escapes - Hero Banner Overrides      */
/* Mobile: Dönen yazı + doğal görsel boyutu    */
/* Desktop: Akıcı ülke ismi geçişleri          */
/* v13 - Vue-style seamless loop animation     */
/* ============================================ */

/* ============================================ */
/* BASE BANNER STYLES                          */
/* ============================================ */
body .Banner.Banner-home {
  position: relative !important;
  z-index: 0 !important;
}

/* ============================================ */
/* DESKTOP STYLES (> 768px)                    */
/* Vue-like smooth animation                   */
/* ============================================ */
@media (min-width: 769px) {
  body .Banner.Banner-home .Banner-home-text-spin {
    display: flex !important;
    align-items: center !important;
    height: 48px !important;
    overflow: hidden !important;
    margin-bottom: 5px !important;
  }

  body .Banner.Banner-home .Banner-home-text-spin h1 {
    font-size: 39px !important;
    font-weight: 500 !important;
    line-height: normal !important;
    margin: 0 !important;
  }

  body .Banner.Banner-home .Banner-home-text-spin .words {
    overflow: hidden !important;
    margin-left: 9px !important;
    height: 48px !important;
    display: inline-block !important;
    vertical-align: bottom !important;
  }

  body .Banner.Banner-home .Banner-home-text-spin .words-inner {
    display: block !important;
    animation: spin_words_desktop 18s cubic-bezier(0.23, 1, 0.32, 1) infinite !important;
    will-change: transform !important;
  }

  body .Banner.Banner-home .Banner-home-text-spin .words-inner span {
    display: block !important;
    height: 48px !important;
    line-height: 48px !important;
    font-size: 39px !important;
    font-weight: 800 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* Desktop animasyon - Vue tarzı seamless loop */
/* 6 kelime: Spain, Greece, Italy, Thailand, Croatia, Turkey */
/* words-inner toplam height = 6 × 48px = 288px */
/* -16.67% = 1 kelime (48px), -33.33% = 2 kelime (96px), vs. */
/* Her kelime ~2.5s görünür, ~0.5s geçiş = 18s toplam */
@keyframes spin_words_desktop {
  /* Spain (0% - 14%) */
  0%, 14% {
    transform: translateY(0);
  }
  /* Slide to Greece (14% - 16.67%) */
  16.67% {
    transform: translateY(-16.67%);
  }
  /* Greece (16.67% - 31%) */
  31% {
    transform: translateY(-16.67%);
  }
  /* Slide to Italy (31% - 33.33%) */
  33.33% {
    transform: translateY(-33.33%);
  }
  /* Italy (33.33% - 47.5%) */
  47.5% {
    transform: translateY(-33.33%);
  }
  /* Slide to Thailand (47.5% - 50%) */
  50% {
    transform: translateY(-50%);
  }
  /* Thailand (50% - 64%) */
  64% {
    transform: translateY(-50%);
  }
  /* Slide to Croatia (64% - 66.67%) */
  66.67% {
    transform: translateY(-66.67%);
  }
  /* Croatia (66.67% - 81%) */
  81% {
    transform: translateY(-66.67%);
  }
  /* Slide to Turkey (81% - 83.33%) */
  83.33% {
    transform: translateY(-83.33%);
  }
  /* Turkey (83.33% - 100%) - son kelimede kalıp loop */
  100% {
    transform: translateY(-83.33%);
  }
}

/* ============================================ */
/* MOBILE STYLES (≤ 768px)                     */
/* Vue-like smooth animation                   */
/* ============================================ */
@media (max-width: 768px) {
  /* Banner container */
  body .Banner.Banner-home {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    transform: none !important;
    background-image: none !important;
    overflow: visible !important;
  }

  /* Mobile image - natural size */
  body .Banner.Banner-home img.mobile,
  body .Banner.Banner-home > img {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    object-fit: contain !important;
    vertical-align: top !important;
    z-index: 0 !important;
  }

  /* Container overlay */
  body .Banner.Banner-home .container,
  body .Banner.Banner-home .Banner-home-in {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    z-index: 1 !important;
    padding: 30px 20px !important;
    display: block !important;
    pointer-events: none !important;
  }

  /* Text block */
  body .Banner.Banner-home .Banner-home-text {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    pointer-events: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Spin container - Vue gibi flex yapı */
  body .Banner.Banner-home .Banner-home-text-spin {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    margin-bottom: 10px !important;
    min-height: auto !important;
    height: auto !important;
  }

  /* H1 - inline with words */
  body .Banner.Banner-home .Banner-home-text-spin h1 {
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #4a5568 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
  }

  /* Words wrapper - tek kelime penceresi */
  body .Banner.Banner-home .Banner-home-text-spin .words {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: hidden !important;
    height: 32px !important;
    vertical-align: bottom !important;
    margin-left: 5px !important;
    position: relative !important;
  }

  /* Words inner - Vue gibi smooth animasyon */
  body .Banner.Banner-home .Banner-home-text-spin .words-inner {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: spin_words_mobile 18s cubic-bezier(0.23, 1, 0.32, 1) infinite !important;
    will-change: transform !important;
  }

  /* Each word span */
  body .Banner.Banner-home .Banner-home-text-spin .words-inner span {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: 32px !important;
    line-height: 32px !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #4a5568 !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
  }

  /* H2 */
  body .Banner.Banner-home .Banner-home-text h2 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #4a5568 !important;
    margin: 10px 0 !important;
    line-height: 1.3 !important;
  }

  /* Paragraph - hide explore text on mobile */
  body .Banner.Banner-home .Banner-home-text p.Banner-home-explore-text {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  body .Banner.Banner-home .Banner-home-text p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 14px !important;
    color: #4a5568 !important;
    margin: 10px 0 0 0 !important;
    line-height: 1.5 !important;
    max-width: 100% !important;
  }
}

/* Mobile animasyon - Vue tarzı seamless loop */
/* 6 kelime, words-inner = 6 × 32px = 192px */
/* -16.67% = 1 kelime, -33.33% = 2 kelime, vs. */
@keyframes spin_words_mobile {
  /* Spain (0% - 14%) */
  0%, 14% {
    transform: translateY(0);
  }
  /* Slide to Greece (14% - 16.67%) */
  16.67% {
    transform: translateY(-16.67%);
  }
  /* Greece (16.67% - 31%) */
  31% {
    transform: translateY(-16.67%);
  }
  /* Slide to Italy (31% - 33.33%) */
  33.33% {
    transform: translateY(-33.33%);
  }
  /* Italy (33.33% - 47.5%) */
  47.5% {
    transform: translateY(-33.33%);
  }
  /* Slide to Thailand (47.5% - 50%) */
  50% {
    transform: translateY(-50%);
  }
  /* Thailand (50% - 64%) */
  64% {
    transform: translateY(-50%);
  }
  /* Slide to Croatia (64% - 66.67%) */
  66.67% {
    transform: translateY(-66.67%);
  }
  /* Croatia (66.67% - 81%) */
  81% {
    transform: translateY(-66.67%);
  }
  /* Slide to Turkey (81% - 83.33%) */
  83.33% {
    transform: translateY(-83.33%);
  }
  /* Turkey (83.33% - 100%) - son kelimede kalıp loop */
  100% {
    transform: translateY(-83.33%);
  }
}

/* ============================================ */
/* EXTRA SMALL MOBILE (≤ 480px)                */
/* ============================================ */
@media (max-width: 480px) {
  body .Banner.Banner-home .container,
  body .Banner.Banner-home .Banner-home-in {
    padding: 20px 15px !important;
  }

  body .Banner.Banner-home .Banner-home-text-spin h1 {
    font-size: 18px !important;
  }

  body .Banner.Banner-home .Banner-home-text-spin .words {
    height: 28px !important;
  }

  body .Banner.Banner-home .Banner-home-text-spin .words-inner {
    animation: spin_words_480 18s cubic-bezier(0.23, 1, 0.32, 1) infinite !important;
  }

  body .Banner.Banner-home .Banner-home-text-spin .words-inner span {
    height: 28px !important;
    line-height: 28px !important;
    font-size: 18px !important;
  }

  body .Banner.Banner-home .Banner-home-text h2 {
    font-size: 16px !important;
  }

  body .Banner.Banner-home .Banner-home-text p {
    font-size: 13px !important;
  }
}

/* 480px altı - Vue tarzı seamless loop */
/* 6 kelime, words-inner = 6 × 28px = 168px */
/* -16.67% = 1 kelime, -33.33% = 2 kelime, vs. */
@keyframes spin_words_480 {
  /* Spain (0% - 14%) */
  0%, 14% {
    transform: translateY(0);
  }
  /* Slide to Greece (14% - 16.67%) */
  16.67% {
    transform: translateY(-16.67%);
  }
  /* Greece (16.67% - 31%) */
  31% {
    transform: translateY(-16.67%);
  }
  /* Slide to Italy (31% - 33.33%) */
  33.33% {
    transform: translateY(-33.33%);
  }
  /* Italy (33.33% - 47.5%) */
  47.5% {
    transform: translateY(-33.33%);
  }
  /* Slide to Thailand (47.5% - 50%) */
  50% {
    transform: translateY(-50%);
  }
  /* Thailand (50% - 64%) */
  64% {
    transform: translateY(-50%);
  }
  /* Slide to Croatia (64% - 66.67%) */
  66.67% {
    transform: translateY(-66.67%);
  }
  /* Croatia (66.67% - 81%) */
  81% {
    transform: translateY(-66.67%);
  }
  /* Slide to Turkey (81% - 83.33%) */
  83.33% {
    transform: translateY(-83.33%);
  }
  /* Turkey (83.33% - 100%) - son kelimede kalıp loop */
  100% {
    transform: translateY(-83.33%);
  }
}

/* ============================================ */
/* REDUCED MOTION PREFERENCE                   */
/* ============================================ */
@media (prefers-reduced-motion: reduce) {
  body .Banner.Banner-home .Banner-home-text-spin .words-inner {
    animation: none !important;
    transform: translateY(0) !important;
  }
}

/* Short breaks – mobil/tablet (max-width: 991px) – body ile ezme garantisi */
@media (max-width: 991px) {
  body .Opportunity-slider {
    padding: 28px 0 40px !important;
    min-height: unset !important;
  }
  body .Opportunity-slider .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
    max-width: 100% !important;
  }
  body .Opportunity-slider .Opportunity-in {
    flex-direction: column !important;
    gap: 20px !important;
    padding: 0 !important;
  }
  .Opportunity-slider .Opportunity-left {
    width: 100% !important;
    text-align: center;
  }
  .Opportunity-slider .Opportunity-left .icon-opportunity {
    width: 32px;
    height: 32px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
  .Opportunity-slider .Opportunity-left-head h3 {
    font-size: 22px !important;
    max-width: none;
  }
  .Opportunity-slider .Opportunity-left p {
    font-size: 14px !important;
    margin-top: 8px;
  }
  .Opportunity-slider .Opportunity-right {
    width: 100% !important;
  }
  .Opportunity-slider .Opportunity-right .nav-pills {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    margin-bottom: 16px !important;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .Opportunity-slider .Opportunity-right .nav-pills::-webkit-scrollbar {
    display: none;
  }
  .Opportunity-slider .Opportunity-right .nav-item {
    flex-shrink: 0;
  }
  .Opportunity-slider .Opportunity-right .nav-link {
    font-size: 13px !important;
    padding: 10px 14px !important;
  }
  /* 2x2: 4 dikdörtgen, %15 homojen küçültülmüş (0.85) */
  body .Opportunity-slider .Opportunity-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    column-gap: 10px !important;
    row-gap: 10px !important;
    width: 100% !important;
  }
  body .Opportunity-slider .Opportunity-list-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 15px 17px !important;
    min-height: 75px !important;
    max-height: none !important;
    height: auto !important;
    gap: 10px !important;
    overflow: visible !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  body .Opportunity-slider .Opportunity-list-item-content {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }
  body .Opportunity-slider .Opportunity-list-item-content b {
    font-size: 32px !important;
    font-weight: 500 !important;
    margin-right: 8px !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
    color: var(--bs-theme-first) !important;
  }
  body .Opportunity-slider .Opportunity-list-item-content-in {
    min-width: 0 !important;
    overflow: visible !important;
    padding-top: 0 !important;
    line-height: 1.2 !important;
  }
  body .Opportunity-slider .Opportunity-list-item-content-in span,
  body .Opportunity-slider .Opportunity-list-item-content-in p,
  body .Opportunity-slider .Opportunity-list-item-content-in small {
    display: block !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
  }
  .Opportunity-slider .Opportunity-list-item-content-in span {
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: normal !important;
  }
  body .Opportunity-slider .Opportunity-list-item-content-in p {
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: normal !important;
  }
  .Opportunity-slider .Opportunity-list-item-content-in small {
    font-size: 9px !important;
    font-weight: 500 !important;
    line-height: normal !important;
  }
  body .Opportunity-slider .Opportunity-list-item-count {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin-top: 0 !important;
    padding: 7px 12px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    width: 77px !important;
    min-width: 77px !important;
    flex-shrink: 0 !important;
    text-align: center !important;
    border-radius: 3px !important;
  }
  body .Opportunity-slider .Opportunity-list-item-count span,
  body .Opportunity-slider .Opportunity-list-item .Opportunity-list-item-count span {
    font-size: 12px !important;
    font-weight: 600 !important;
  }

  /* Villa Types – Short breaks ile temas etmesin, biraz aşağı */
  body .categories-section {
    margin-top: 24px !important;
    padding-top: 8px !important;
  }
  /* Villa Types – yan yana, alt alta değil */
  body .categories-section .section-caption .primary-title {
    white-space: nowrap !important;
  }
  body .categories-section .section-caption .primary-title span {
    display: inline !important;
  }
}

/* Güven kartı – iyzico logo kenarlara kadar dolsun, boşluk kalmasın */
.H_info-item-icon.H_info-item-icon--logo {
  padding: 4px !important;
}
.H_info-item-icon.H_info-item-icon--logo img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

/* ============================================ */
/* Countries bölümü – swipe pagination noktaları (Vue gibi) */
/* ============================================ */
.country-section .country-slider-wrapper {
  padding-bottom: 36px;
}
.country-section .swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  margin-top: 20px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
}
.country-section .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: var(--bs-theme-grey2, #cad4dd) !important;
  opacity: 1 !important;
  transition: background 0.2s ease, transform 0.2s ease;
}
.country-section .swiper-pagination-bullet-active {
  background: var(--bs-theme-first, #7A8C9F) !important;
  transform: scale(1.2);
}
.country-section .swiper-pagination-bullet:hover {
  background: var(--bs-theme-first-light, #94A5B6) !important;
}

/* ============================================ */
/* VILLA SEARCH MODAL                          */
/* ============================================ */
.villa-search-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 20px 20px;
  animation: modalOverlayFadeIn 0.2s ease;
}

@keyframes modalOverlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.villa-search-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalSlideIn 0.25s ease;
  overflow: hidden;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Modal Header */
.villa-search-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.villa-search-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f3f4f6;
  border-radius: 10px;
  padding: 0 16px;
  transition: all 0.2s ease;
}

.villa-search-input-wrapper:focus-within {
  background: #fff;
  box-shadow: 0 0 0 2px var(--bs-theme-first, #d38b5c);
}

.villa-search-input-wrapper i {
  color: #9ca3af;
  font-size: 18px;
}

.villa-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 0;
  font-size: 16px;
  color: #1f2937;
  outline: none;
}

.villa-search-input::placeholder {
  color: #9ca3af;
}

.villa-search-clear {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.villa-search-clear:hover {
  color: #374151;
}

.villa-search-close-btn {
  background: #f3f4f6;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
}

.villa-search-close-btn:hover {
  background: #e5e7eb;
  color: #374151;
}

/* Modal Body */
.villa-search-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  min-height: 200px;
}

/* Loading State */
.villa-search-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 12px;
  color: #6b7280;
}

.villa-search-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e5e7eb;
  border-top-color: var(--bs-theme-first, #d38b5c);
  border-radius: 50%;
  animation: spinnerRotate 0.8s linear infinite;
}

@keyframes spinnerRotate {
  to { transform: rotate(360deg); }
}

/* Empty State */
.villa-search-empty,
.villa-search-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: #6b7280;
}

.villa-search-empty i,
.villa-search-hint i {
  font-size: 48px;
  color: #d1d5db;
  margin-bottom: 16px;
}

.villa-search-empty p,
.villa-search-hint p {
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  margin: 0 0 8px;
}

.villa-search-empty span,
.villa-search-hint span {
  font-size: 14px;
  color: #9ca3af;
}

/* Results */
.villa-search-results-count {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f3f4f6;
}

.villa-search-results-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.villa-search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 12px;
  background: #f9fafb;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.villa-search-result-item:hover {
  background: #f3f4f6;
  transform: translateX(4px);
}

.villa-search-result-image {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e5e7eb;
}

.villa-search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.villa-search-result-no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  color: #9ca3af;
}

.villa-search-result-no-image i {
  font-size: 24px;
}

.villa-search-result-info {
  flex: 1;
  min-width: 0;
}

h4.villa-search-result-code {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 6px;
  padding: 0;
  background: none;
}

.villa-search-result-destination {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #6b7280;
}

.villa-search-result-destination i {
  font-size: 12px;
}

.villa-search-result-arrow {
  color: #9ca3af;
  transition: all 0.2s ease;
}

.villa-search-result-item:hover .villa-search-result-arrow {
  color: var(--bs-theme-first, #d38b5c);
  transform: translateX(4px);
}

/* Mobile Styles */
@media (max-width: 640px) {
  .villa-search-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .villa-search-modal {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 16px 16px 0 0;
    animation: modalSlideUp 0.3s ease;
  }

  @keyframes modalSlideUp {
    from {
      opacity: 0;
      transform: translateY(100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .villa-search-modal-header {
    padding: 12px 16px;
  }

  .villa-search-input {
    font-size: 16px; /* Prevent zoom on iOS */
  }

  .villa-search-modal-body {
    padding: 12px 16px;
  }

  .villa-search-result-item {
    padding: 10px;
    gap: 12px;
  }

  .villa-search-result-image {
    width: 64px;
    height: 48px;
  }

  .villa-search-result-name {
    font-size: 14px;
  }
}

/* ============================================ */
/* VILLA DETAIL PAGE - Mobile Fixes            */
/* ============================================ */
/* Remove any dotted/dashed lines under villa code and around sections */
@media (max-width: 768px) {
  .view-top-title h1,
  .detail-top h1,
  .View-title,
  .View-desc,
  .view-detail-section h1 {
    border: none !important;
    border-bottom: none !important;
    text-decoration: none !important;
  }
  .view-top-title h1::after,
  .detail-top h1::after,
  .View-title::after,
  .View-desc::before,
  .View-desc::after {
    display: none !important;
    content: none !important;
  }
  /* Remove any separator lines */
  .view-detail-section hr,
  .View hr {
    display: none !important;
  }
}

/* ============================================ */
/* SEARCH BAR - Region Warning Animation       */
/* ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.Ls-region-warning {
  animation: fadeIn 0.3s ease-in-out;
}

/* ============================================ */
/* VILLA CARD - Distance Information           */
/* ============================================ */
.Card-content-distances {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
}

.Card-content-distances-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
}

.Card-content-distances-item i {
  font-size: 14px;
  color: #9ca3af;
}

/* VILLA LIST ITEM - Distance Information */
.F_villa-item-distances {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.F_villa-item-distances-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #6b7280;
}

.F_villa-item-distances-item i {
  font-size: 16px;
  color: #9ca3af;
}

/* ============================================ */
/* VILLA LIST - Feature Chips on Cards         */
/* ============================================ */
.villa-list-chips {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  pointer-events: none;
}

.villa-list-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 14px;
  font-size: 11px;
  font-weight: 600;
  color: #5D6E7E;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.3);
  line-height: 1.3;
}

.villa-list-chip i {
  font-size: 12px;
  color: #E07020;
}

/* ============================================ */
/* VILLA DETAIL - Reservation Form Mobile Fix  */
/* ============================================ */
/* Fix: Map should not overlay Check Availability button on mobile */
@media (max-width: 991px) {
  /* Map container should have low z-index */
  .View-location,
  .View-location-map-inline,
  .leaflet-container {
    z-index: 1 !important;
  }

  /* Bottom bar (Check Availability) must be above map */
  .Reservation-form-bottom {
    position: fixed !important;
    z-index: 999 !important;
  }

  /* Modal when opened should be highest and VISIBLE */
  .Reservation-form-top.mobile-active {
    z-index: 1000 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    display: block !important;
    position: fixed !important;
    top: 80px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: calc(100dvh - 80px) !important;
    background-color: #fff !important;
  }

  /* Hamburger menu panel - MUST be visible when active */
  .Lh-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    display: flex !important;
    position: fixed !important;
    top: 80px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: calc(100dvh - 80px) !important;
    z-index: 998 !important;
    flex-direction: column !important;
    background-color: var(--bs-theme-first, #7A8C9F) !important;
  }
}

/* ============================================ */
/* MOBILE RESERVATION FORM - CRITICAL FIX      */
/* SORUN: .View { overflow: hidden } fixed      */
/* position elementleri gizliyor                */
/* ============================================ */

/* 🔑 KRİTİK: .View overflow:hidden kaldır - mobilde form görünür olsun */
@media (max-width: 991px) {
  .View {
    overflow: visible !important;
  }

  /* view-detail-section için de aynısı */
  .view-detail-section {
    overflow: visible !important;
  }

  /* main elementi için de overflow visible */
  main {
    overflow: visible !important;
  }
}

@media (max-width: 991px) {
  /* Form aktif - TAM EKRAN, EN ÜSTTE */
  .Reservation-form-top.mobile-active {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 70px !important;
    width: 100vw !important;
    height: calc(100vh - 70px) !important;
    height: calc(100dvh - 70px) !important;
    z-index: 100000000 !important;
    background-color: #fff !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  /* Form içeriği */
  .Reservation-form-top.mobile-active .Reservation-form-top-in {
    display: flex !important;
    flex-direction: column !important;
    padding: 15px 20px !important;
    gap: 10px !important;
  }

  /* Hesap özeti - tarih kutusundan 20px aşağıda */
  .Reservation-form-top.mobile-active .Reservation-form-detail {
    display: block !important;
    position: relative !important;
    padding: 15px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    margin: 20px 0 10px 0 !important;
  }

  /* Total Amount kısmı gizle */
  .Reservation-form-top.mobile-active .Reservation-form-info-item {
    display: none !important;
  }

  /* Accordion/View Details gizle */
  .Reservation-form-top.mobile-active .Reservation-form-info-item-more {
    display: none !important;
  }
}

/* Alt bar - sabit en altta */
@media (max-width: 991px) {
  .Reservation-form-bottom {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100000001 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 15px !important;
    background: #fff !important;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1) !important;
  }
}

/* ============================================ */
/* MOBILE MENU PORTAL STYLES                    */
/* ============================================ */

/* Mobile Menu Portal - Overlay */
.mobile-menu-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.5) !important;
  z-index: 99999998 !important;
}

/* Mobile Menu Portal - Panel */
.mobile-menu-panel {
  position: fixed !important;
  top: 80px !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: calc(100vh - 80px) !important;
  height: calc(100dvh - 80px) !important;
  background-color: #7A8C9F !important;
  z-index: 99999999 !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 20px !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

/* ============================================ */
/* MOBILE TOUCH FIX - Critical                  */
/* touch-action: none was blocking all touches  */
/* on real mobile devices (not DevTools)        */
/* ============================================ */
body.over,
html.over {
  touch-action: auto !important;
  -ms-touch-action: auto !important;
  -webkit-touch-callout: default !important;
}

/* Also fix the overflow-hidden class */
.overflow-hidden {
  touch-action: auto !important;
  -ms-touch-action: auto !important;
}

/* Ensure hamburger menu and buttons are always clickable */
.menu-toggle,
.Lh-menu-overlay,
.Reservation-form-submit,
.Reservation-form-bottom button {
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1) !important;
  cursor: pointer !important;
}

/* ========================================
   Site Header — Background fix
   ======================================== */
.Lh-inner {
  background: var(--bs-theme-first, #7A8C9F) !important;
}

/* ========================================
   Mobile Filter — Bottom Bar & Filter Modal
   ======================================== */
.mobile-filter-bottom-bar {
  display: none;
}

@media (max-width: 991px) {

  /* --- Bottom Bar (Filter + Sort) --- */
  .mobile-filter-bottom-bar {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
    padding: 8px 12px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
  }

  .mobile-filter-bottom-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--bs-theme-second, #f5841f);
    padding: 12px 16px;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
  }

  .mobile-filter-bottom-btn:active {
    opacity: 0.85;
  }

  .mobile-filter-bottom-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    background: #fff;
    color: var(--bs-theme-second, #f5841f);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
  }

  .mobile-filter-bottom-divider {
    display: none;
  }

  .mobile-filter-bottom-sort {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 0;
  }

  .mobile-filter-bottom-sort select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: var(--bs-theme-first, #7A8C9F);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 12px 16px;
    cursor: pointer;
    text-align: center;
    outline: none;
  }

  /* Hide top sort/filter buttons (moved to bottom bar) */
  .Filter-right-head-buttons {
    display: none !important;
  }

  /* Bottom padding so content isn't behind the bar */
  .Filter-right {
    padding-bottom: 72px !important;
  }

  /* --- Filter Panel (Full-Screen Modal) --- */

  /* HIDDEN: display:none prevents range slider dots bleeding through */
  .Filter-left:not(.show) {
    display: none !important;
  }

  /* VISIBLE: proper flex modal layout */
  .Filter-left.show {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100dvh !important;
    z-index: 9999 !important;
    background: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Modal header */
  .Filter-left.show .Filter-left-head {
    flex-shrink: 0 !important;
    background: #fff !important;
    border-bottom: 1px solid #eee !important;
    padding: 16px 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .Filter-left.show .Filter-left-head h4 {
    flex: 1 !important;
    margin: 0 !important;
  }

  /* Clear All button in header */
  .mobile-filter-clear-btn {
    background: none !important;
    border: none !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--bs-theme-second, #f5841f) !important;
    text-decoration: underline !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    padding: 4px 0 !important;
  }

  /* Selected filters */
  .Filter-left.show .Filter-left-selected {
    flex-shrink: 0 !important;
  }

  /* Content: scrollable area */
  .Filter-left.show .Filter-left-in {
    flex: 1 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch !important;
    height: auto !important;
    padding-bottom: 8px !important;
  }

  /* Filter accordion content: normal flow (not absolute overlay) */
  .Filter-left .Lfl-in.show {
    position: static !important;
    height: auto !important;
    width: auto !important;
    top: auto !important;
    left: auto !important;
    background: transparent !important;
    z-index: auto !important;
  }

  /* Apply button: fixed at bottom of modal, outside scroll */
  .Filter-left.show > .Lfl-in-m-button-container {
    flex-shrink: 0 !important;
    background: #fff !important;
    border-top: 1px solid #e0e0e0 !important;
    padding: 12px 17px !important;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px)) !important;
  }
}


/* ============================================ */
/* PREMIUM VILLA DETAIL - Elevation System     */
/* ============================================ */

:root {
  --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-elevated: 0 8px 24px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-sticky: 0 4px 16px rgba(0,0,0,0.1);
  --radius-card: 12px;
  --radius-chip: 20px;
}

/* --- Section Cards: white bg + shadow + radius --- */
body.villa-detay .View-desc.genelbakis,
body.villa-detay .View-beds,
body.villa-detay .View-pools,
body.villa-detay .View-location.location,
body.villa-detay .View-info.rules,
body.villa-detay .View-availibility {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 32px !important;
  margin-bottom: 24px !important;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.04);
}

/* Section titles: bottom border for hierarchy */
body.villa-detay .View-title {
  padding-bottom: 16px;
  margin-bottom: 20px !important;
  border-bottom: 2px solid #E8ECEF;
}

body.villa-detay .View-title b {
  color: #5D6E7E;
}

/* --- Sticky Nav Enhancement --- */
body.villa-detay .View-menu {
  background-color: #ffffff !important;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sticky);
  position: relative;
  z-index: 10;
}

body.villa-detay .View-menu .View-menu-item {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #5D6E7E;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

body.villa-detay .View-menu .View-menu-item:hover,
body.villa-detay .View-menu .View-menu-item.active {
  color: #E07020;
  border-bottom-color: #E07020;
}

/* Favorites & Share butonları görünür + galeri üstüne çıkması için z-index */
body.villa-detay .View-menu-right {
  position: relative;
  z-index: 2;
}
body.villa-detay .View-menu-right .fav-btn {
  display: flex !important;
}

body.villa-detay .View-menu-right .dropdown.Share {
  display: flex !important;
}

/* --- Üst band sabit yükseklik kaldırılıyor (galeri fotoları altında kalmasın) --- */
body.villa-detay .view-detail-section-menus {
  height: auto !important;
}

/* --- Info bar: kompakt yükseklik + tam ortalama --- */
body.villa-detay .view-top.d-flex {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  padding: 6px 0 !important;
  margin-bottom: 0 !important;
}
body.villa-detay .view-top .view-top-title {
  justify-self: start;
}
body.villa-detay .view-top-title h1 {
  font-size: 22px !important;
  margin-bottom: 0 !important;
}
body.villa-detay .view-top .item-infos {
  justify-self: center;
  display: flex !important;
  margin-top: 0 !important;
  gap: 16px;
}
body.villa-detay .view-top .item-infos .info {
  margin-right: 0 !important;
}
body.villa-detay .view-top .item-infos .info i {
  font-size: 16px !important;
  margin-right: 6px !important;
}
body.villa-detay .view-top .item-infos .info span {
  font-size: 12.5px !important;
}
body.villa-detay .view-top .view-top-right {
  justify-self: end;
}
body.villa-detay .view-top-right-location {
  font-size: 14px !important;
}
body.villa-detay .view-top-right-price p {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #E07020 !important;
}
@media (max-width: 991px) {
  body.villa-detay .view-top.d-flex {
    display: flex !important;
    grid-template-columns: unset !important;
    flex-wrap: wrap !important;
  }
}

/* --- Price: accent color --- */
body.villa-detay .view-top-right-price small {
  font-size: 11px !important;
  color: #9ca3af !important;
  text-transform: lowercase;
  font-style: italic;
}

/* --- Amenities: editorial grid --- */
body.villa-detay .View-desc-amenites-in {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 !important;
}

body.villa-detay .View-desc-amenites-in .Amenites-item,
body.villa-detay .View-desc-amenites-in > p,
body.villa-detay .View-desc-amenites-in > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0 !important;
  margin: 0 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #5D6E7E !important;
  border-bottom: 1px solid #f3f4f6;
}

body.villa-detay .View-desc-amenites-more {
  margin-top: 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #E07020 !important;
  border: 1px solid #E07020 !important;
  border-radius: 8px !important;
  padding: 10px 20px !important;
  background: transparent !important;
  transition: background 0.2s, color 0.2s;
}

body.villa-detay .View-desc-amenites-more:hover {
  background: #E07020 !important;
  color: #fff !important;
}

/* --- Calendar: better contrast --- */
body.villa-detay .View-availibility .calendar-container {
  border: 1px solid #E8ECEF;
  border-radius: var(--radius-card);
  overflow: hidden;
}

/* --- Gallery: üst boşluk (bilgi bandı ile arası) --- */
body.villa-detay .view-gallery {
  margin-top: 16px;
}

/* --- Gallery: gradient overlay on main image --- */
body.villa-detay .view-gallery .area-1 .view-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: 0 0 8px 8px;
}

body.villa-detay .view-gallery .area-1 .view-item {
  position: relative;
}

/* --- Feature Chips on Gallery --- */
.villa-feature-chips {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.villa-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-chip);
  font-size: 12px;
  font-weight: 600;
  color: #5D6E7E;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.3);
}

.villa-feature-chip i {
  font-size: 14px;
  color: #E07020;
}

/* --- Villa Tagline --- */
.villa-tagline {
  font-size: 15px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.5;
  margin-top: 4px;
  margin-bottom: 0;
  font-style: italic;
}

/* --- Reservation Form: elevated card --- */
body.villa-detay .Reservation-form {
  box-shadow: var(--shadow-elevated);
}

/* SELECT DATES etiketi: beyaz metin (turuncu SVG arka plan üstünde) */
body.villa-detay .Reservation-form .tarihsec {
  color: #fff !important;
  z-index: 3;
}

/* CTA Button: bolder */
body.villa-detay .Reservation-form-submit {
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  padding: 16px 24px !important;
  border-radius: 8px !important;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(224, 112, 32, 0.25);
  transition: box-shadow 0.2s, transform 0.1s;
}

body.villa-detay .Reservation-form-submit:hover {
  box-shadow: 0 6px 20px rgba(224, 112, 32, 0.35);
  transform: translateY(-1px);
}

body.villa-detay .Reservation-form-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(224, 112, 32, 0.2);
}

/* Booking terms summary */
.reservation-booking-terms {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 16px;
  margin: 0 0 12px 0;
  background: #f8faf8;
  border: 1px solid #e5ece5;
  border-radius: 8px;
}
.reservation-booking-term {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #444;
  line-height: 1.4;
}
.reservation-booking-term i {
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .reservation-booking-terms {
    display: none;
  }
}

/* Trust signals */
.reservation-trust-signals {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 16px;
  border-top: 1px solid #E8ECEF;
}

.reservation-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.reservation-trust-item img {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}

.reservation-trust-item span {
  font-size: 10px;
  font-weight: 500;
  color: #9ca3af;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* --- Location: map card + info chips --- */
body.villa-detay .View-location-map-wrap {
  border-radius: var(--radius-card) !important;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.06);
}

body.villa-detay .View-location-map-canvas {
  border-radius: var(--radius-card) !important;
}

.location-info-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #F5F7F9;
  border: 1px solid #E8ECEF;
  border-radius: var(--radius-chip);
  font-size: 13px;
  font-weight: 500;
  color: #5D6E7E;
  margin-top: 12px;
  margin-right: 8px;
}

.location-info-chip i {
  font-size: 14px;
  color: #E07020;
}

/* --- Things to Know: premium card treatment --- */

/* Check-in/out: yan yana kartlar */
body.villa-detay .View-info-hours {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

body.villa-detay .View-info-hours-item {
  flex: 1;
  background: #F5F7F9;
  border-radius: var(--radius-card);
  padding: 20px 24px !important;
  border: 1px solid rgba(0,0,0,0.04);
  margin-bottom: 0 !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

body.villa-detay .View-info-hours-item:last-child {
  border-bottom: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 20px !important;
}

/* Kart modunda left/right yan yana değil, üst üste */
body.villa-detay .View-info-hours-item-left {
  width: 100% !important;
  margin-bottom: 12px;
}

body.villa-detay .View-info-hours-item-right {
  width: 100% !important;
  padding-left: 0 !important;
}

/* Kart modunda timeline bar'ı gizle, sadece saat metni göster */
body.villa-detay .View-info-hours-status {
  display: none !important;
}

body.villa-detay .View-info-hours-status-mobile {
  display: block !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #5D6E7E !important;
}

/* Rules bölümü: kart arka planı */
body.villa-detay .View-info-bg {
  background: #F5F7F9 !important;
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,0.04);
  padding: 28px 30px !important;
  margin-bottom: 24px;
}

body.villa-detay .View-info-rules h5,
body.villa-detay .View-info-fee h5 {
  color: #5D6E7E !important;
  margin-bottom: 16px !important;
}

/* Services & Deposit: gap + kart arka planları */
body.villa-detay .View-info-fee {
  gap: 16px;
  padding: 0 !important;
}

body.villa-detay .View-info-fee-left,
body.villa-detay .View-info-fee-right {
  flex: 1;
  width: auto !important;
  background: #F5F7F9;
  border-radius: var(--radius-card);
  padding: 24px !important;
  border: 1px solid rgba(0,0,0,0.04);
}

/* --- Pool items: card treatment --- */
body.villa-detay .View-pool-item {
  background: #F5F7F9;
  border-radius: 10px;
  padding: 16px 20px !important;
  border: 1px solid rgba(0,0,0,0.04);
}

/* --- Bed room cards: shadow enhancement --- */
body.villa-detay .View-beds-room-card {
  box-shadow: var(--shadow-card) !important;
  border: 1px solid rgba(0,0,0,0.04) !important;
}

body.villa-detay .View-beds-room-card:hover {
  box-shadow: var(--shadow-card-hover) !important;
}

/* ============================================ */
/* PREMIUM VILLA DETAIL - Mobile Responsive    */
/* ============================================ */

@media (max-width: 768px) {
  body.villa-detay .View-desc.genelbakis,
  body.villa-detay .View-beds,
  body.villa-detay .View-pools,
  body.villa-detay .View-location.location,
  body.villa-detay .View-info.rules,
  body.villa-detay .View-availibility {
    padding: 20px !important;
    border-radius: 8px;
  }

  .villa-tagline {
    display: none;
  }

  .villa-feature-chips {
    position: relative;
    bottom: auto;
    left: auto;
    padding: 12px 16px 0;
  }

  .villa-feature-chip {
    background: #F5F7F9;
    border: 1px solid #E8ECEF;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.villa-detay .View-desc-amenites-in {
    grid-template-columns: 1fr;
  }

  /* Mobilde check-in/out kartları alt alta */
  body.villa-detay .View-info-hours {
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .reservation-trust-signals {
    display: none;
  }
}
