/* ============================================================
   Hotels Module - odek.com/hotels
   Marka paleti: ferry kartlarıyla tutarlı (navy/gold/ocean)
   Fontlar: Syne (başlık) + Inter (gövde) - header.php'de zaten yüklü
   ============================================================ */

.hotels-page {
    --navy: #0a2540;
    --navy-mid: #1e3a5f;
    --ocean: #1e88e5;
    --wave: #29b6f6;
    --sky: #4fc3f7;
    --gold: #f5a623;
    --amber: #e6941a;
    --open: #2e7d32;
    --gray: #8899aa;
    --gray-light: #f0f4f8;
    --white: #ffffff;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--navy);
    /* Duyarli genislik - ekrana gore kademeli daralir, buyuk ekranlarda
       1280px'i asmaz (12.07.2026, Hakan'in talebi - site genelindeki
       :root{--container:1320px} sistemiyle ayni mantik, otel modulune
       ozel biraz daha dar bir tavan). */
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1360px) {
    .hotels-page { max-width: 1140px; }
}
@media (max-width: 1200px) {
    .hotels-page { max-width: 960px; }
}

.hotels-page h1, .hotels-page h2, .hotels-page h3, .hotels-page h4 {
    font-family: 'Syne', sans-serif;
}

/* ── Hero ── */
.hotels-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, var(--ocean) 100%);
    border-radius: 18px;
    padding: 48px 32px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
}
.hotels-hero::after {
    content: "";
    position: absolute;
    right: -60px; top: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(245,166,35,0.25) 0%, transparent 70%);
    border-radius: 50%;
}
.hotels-hero__title {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
    color: #ffffff !important;
}
.hotels-hero__title .accent { color: var(--gold) !important; }
.hotels-hero__subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.82) !important;
    max-width: 640px;
    margin: 0 0 28px;
    line-height: 1.6;
}

/* ── Search box ── */
.hotels-search {
    background: #ffffff;
    border-radius: 22px;
    padding: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 20px 40px rgba(0,0,0,0.10);
    position: relative;
    z-index: 2;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
}
.hotels-search__row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.7fr auto;
    align-items: stretch;
    background: #fbfbfd;
    border-radius: 18px;
    overflow: hidden;
}
@media (max-width: 900px) {
    .hotels-search__row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .hotels-search__row { grid-template-columns: 1fr; }
}
.hotels-search__field {
    position: relative;
    padding: 16px 20px;
    border-right: 1px solid #e8e8ed;
    transition: background .15s;
    min-height: 66px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hotels-search__row > .hotels-search__field:last-of-type { border-right: none; }
@media (max-width: 900px) {
    .hotels-search__field:nth-child(2n) { border-right: none; }
    .hotels-search__field { border-bottom: 1px solid #e8e8ed; }
}
.hotels-search__field:focus-within {
    background: #ffffff;
    box-shadow: inset 0 0 0 1.5px #0071e3;
    border-radius: 12px;
    z-index: 1;
}
.hotels-search__field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1px;
    color: #86868b;
    margin-bottom: 4px;
}
.hotels-search__field select,
.hotels-search__field input {
    width: 100%;
    padding: 2px 0;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    color: #1d1d1f;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}
.hotels-search__field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2386868b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    padding-right: 18px;
}
.hotels-search__field select:focus,
.hotels-search__field input:focus {
    outline: none;
}
.hotels-search__btn {
    background: #0071e3;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    margin: 8px;
    padding: 0 34px;
    min-height: 54px;
    font-family: inherit;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s, transform .1s;
}
.hotels-search__btn:hover { background: #0077ed; }
.hotels-search__btn:active { background: #006edb; transform: scale(0.98); }
@media (max-width: 900px) {
    .hotels-search__btn { margin: 10px; padding: 13px 30px; }
}
.hotels-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}
span.hotels-chip {
    background: #fffaf0;
    border: 1.5px solid #fdedc8;
    color: #1d1d1f !important;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    cursor: pointer;
    transition: all .15s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
span.hotels-chip:hover { background: #fef3dc; box-shadow: 0 4px 12px rgba(0,0,0,0.14); }
span.hotels-chip.active {
    background: #0071e3;
    border-color: #0071e3;
    color: #ffffff !important;
    font-weight: 700;
}

/* ── Sonuç alanı ── */
.hotels-results {
    margin-top: 30px;
}
.hotels-results__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.hotels-results__count {
    font-size: 14px;
    color: var(--gray);
}
.hotels-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ── Kart ── */
.hotel-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(10,37,64,0.10);
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    transition: transform .18s, box-shadow .18s;
}
.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(10,37,64,0.18);
}
.hotel-card--promoted {
    border: 1.5px solid var(--gold);
}
.hotel-card__banner {
    background: linear-gradient(120deg, var(--ocean), var(--wave) 55%, var(--sky));
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hotel-card__icon {
    font-size: 34px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
.hotel-card__monogram {
    font-family: 'Syne', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 3px 10px rgba(10,37,64,0.35);
    letter-spacing: 1px;
}
.hotel-card__city {
    position: absolute;
    left: 12px;
    bottom: 10px;
    background: rgba(10,37,64,0.55);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(2px);
}
.hotel-card__badge {
    position: absolute;
    right: 12px;
    top: 10px;
    background: var(--gold);
    color: var(--navy);
    width: 26px; height: 26px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.hotel-card__body {
    padding: 16px 16px 8px;
    flex: 1;
}
.hotel-card__stars {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 4px;
    letter-spacing: 1px;
}
.hotel-card__name {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 4px;
    line-height: 1.3;
}
.hotel-card__region {
    font-size: 12px;
    color: var(--ocean);
    font-weight: 600;
    margin-bottom: 8px;
}
.hotel-card__desc {
    font-size: 13px;
    color: #5b6b7d;
    line-height: 1.5;
    margin: 0;
}
.hotel-card__footer {
    padding: 14px 16px 16px;
    border-top: 1px solid #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.hotel-card__price {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.hotel-card__price-label {
    font-size: 10px;
    color: var(--gray);
    text-transform: uppercase;
    font-weight: 700;
}
.hotel-card__price-value {
    font-size: 19px;
    font-weight: 800;
    color: var(--navy);
    font-family: 'Syne', sans-serif;
}
.hotel-card__price-note {
    font-size: 10px;
    color: var(--gray);
}
.hotel-card__cta {
    background: var(--open);
    color: var(--white) !important;
    text-decoration: none !important;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    white-space: nowrap;
    transition: background .15s;
}
.hotel-card__cta:hover {
    background: #256029;
}

/* ── Mesajlar / durumlar ── */
.hotel-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    font-size: 15px;
}
.hotel-msg--empty {
    background: var(--gray-light);
    color: var(--navy-mid);
}
.hotel-msg--error {
    background: #fef2f2;
    color: #b91c1c;
}
.hotels-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 20px;
    color: var(--gray);
    font-size: 14px;
}
.hotels-loading__spinner {
    width: 34px; height: 34px;
    border: 3px solid var(--gray-light);
    border-top-color: var(--ocean);
    border-radius: 50%;
    margin: 0 auto 14px;
    animation: hotelsSpin 0.8s linear infinite;
}
@keyframes hotelsSpin { to { transform: rotate(360deg); } }

/* ============================================================
   Hotel Detail Page
   ============================================================ */
.hotel-detail-header { margin-bottom: 18px; }
.hotel-detail-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 6px;
}
.hotel-detail-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 6px; }
.hotel-detail-address { color: #5b6b7d; font-size: 14px; }

.hotel-gallery { margin-bottom: 26px; }
.hotel-gallery__main {
    width: 100%;
    height: 620px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 10px;
    background: var(--gray-light);
}
.hotel-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.hotel-gallery__thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.hotel-gallery__thumb {
    width: 90px; height: 64px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity .15s, outline .15s;
    flex-shrink: 0;
}
.hotel-gallery__thumb:hover { opacity: 0.85; }
.hotel-gallery__thumb.active { opacity: 1; outline: 2.5px solid var(--ocean); }

.hotel-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 26px;
    align-items: start;
}
@media (max-width: 800px) {
    .hotel-detail-grid { grid-template-columns: 1fr; }
}
.hotel-detail-section {
    background: var(--white);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 14px rgba(10,37,64,0.08);
}
.hotel-detail-section__title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 14px;
}
.hotel-amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}
@media (max-width: 500px) {
    .hotel-amenities-grid { grid-template-columns: 1fr; }
}
.hotel-amenity-item {
    font-size: 13.5px;
    color: #3c4a5a;
}
.hotel-detail-card {
    background: var(--white);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 3px 14px rgba(10,37,64,0.08);
    position: sticky;
    top: 16px;
}
.hotel-contact-row {
    font-size: 13.5px;
    color: #3c4a5a;
    margin-bottom: 10px;
}
.hotel-contact-row a { color: var(--ocean); text-decoration: none; }
.hotel-contact-row a:hover { text-decoration: underline; }

/* ── Hotel detail: date search widget ── */
/* .hotel-booking-widget artik .hotels-search sinifindan miras aliyor -
   Apple tarzi (12.07.2026). Eski celiskili stiller kaldirildi. */
.hotel-booking-widget { margin-bottom: 20px; }
@media (max-width: 700px) {
    .hotel-booking-widget .hotels-search__row { grid-template-columns: 1fr 1fr !important; }
}
.hotel-offer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding: 14px 0;
    border-bottom: 1px solid #f0f4f8;
}
.hotel-offer-row:last-child { border-bottom: none; }
.hotel-offer-row__room { font-weight: 700; color: var(--navy); font-size: 14.5px; }
.hotel-offer-row__meal { font-size: 12.5px; color: #5b6b7d; margin-top: 2px; }
.hotel-offer-row__refund { font-size: 11.5px; font-weight: 700; margin-top: 4px; }
.hotel-offer-row__refund.is-refundable { color: var(--open); }
.hotel-offer-row__refund.is-nonrefundable { color: #b91c1c; }
.hotel-offer-row__price { text-align: right; }
.hotel-offer-row__amount { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); }
.hotel-offer-row__note { font-size: 10.5px; color: var(--gray); margin-bottom: 8px; }

/* ============================================================
   Hotel List Item (Booking.com tarzi) - mobil oncelikli
   ============================================================ */
.hlist-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(10,37,64,0.08);
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: box-shadow .15s;
}
.hlist-item:hover { box-shadow: 0 8px 22px rgba(10,37,64,0.14); }
.hlist-item--promoted { border: 1.5px solid var(--gold); }

.hlist-item__photo {
    width: 100%;
    height: 180px;
    background: linear-gradient(120deg, var(--ocean), var(--wave) 55%, var(--sky));
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hlist-item__monogram {
    font-family: 'Syne', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 3px 10px rgba(10,37,64,0.35);
}
.hlist-item__badge {
    position: absolute;
    right: 10px;
    top: 10px;
    background: var(--gold);
    color: var(--navy);
    width: 26px; height: 26px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.hlist-item__body {
    padding: 14px 16px 10px;
    flex: 1;
}
.hlist-item__name {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 4px;
    line-height: 1.3;
}
.hlist-item__name a { color: inherit; text-decoration: none; }
.hlist-item__stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; margin-bottom: 4px; }
.hlist-item__location {
    font-size: 12.5px;
    color: var(--ocean);
    font-weight: 600;
    margin-bottom: 8px;
}
.hlist-item__desc {
    font-size: 13px;
    color: #5b6b7d;
    line-height: 1.5;
    margin: 0;
}

.hlist-item__price-col {
    padding: 12px 16px 16px;
    border-top: 1px solid #f0f4f8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.hlist-item__nights { font-size: 10.5px; color: var(--gray); line-height: 1.4; }
.hlist-item__price {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
}
.hlist-item__price-note { font-size: 10.5px; color: var(--gray); margin-top: -4px; }
.hlist-item__cta {
    background: var(--open);
    color: var(--white) !important;
    text-decoration: none !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    margin-top: 4px;
    align-self: stretch;
    text-align: center;
    transition: background .15s;
}
.hlist-item__cta:hover { background: #256029; }
.hlist-item__cta--details {
    background: #0071e3;
    margin-top: 0;
    margin-bottom: 8px;
}
.hlist-item__cta--details:hover { background: #0077ed; }

/* Masaustu: yatay satir duzeni (Booking.com tarzi) */
@media (min-width: 720px) {
    .hlist-item {
        flex-direction: row;
        align-items: stretch;
    }
    .hlist-item__photo {
        width: 160px;
        height: auto;
        min-height: 120px;
    }
    .hlist-item__body {
        flex: 1;
        padding: 12px 18px;
    }
    .hlist-item__name { font-size: 15.5px; margin-bottom: 2px; }
    .hlist-item__location { font-size: 12px; margin-bottom: 4px; }
    .hlist-item__desc { font-size: 12.5px; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
    .hlist-item__price-col {
        width: 205px;
        flex-shrink: 0;
        border-top: none;
        border-left: 1px solid #f0f4f8;
        padding: 12px 16px;
        align-items: flex-end;
        text-align: right;
        justify-content: center;
        gap: 3px;
    }
    .hlist-item__price { font-size: 19px; }
    .hlist-item__cta { align-self: flex-end; padding: 8px 14px; font-size: 12px; }
}

.hlist-item__price-try {
    font-size: 13px;
    font-weight: 700;
    color: var(--amber);
}
.hotel-offer-row__try {
    font-size: 13px;
    font-weight: 700;
    color: var(--amber);
    margin-top: 2px;
}

/* ============================================================
   Booking.com tarzi Hero Galeri (buyuk foto + kucuk grid)
   ============================================================ */
.hgallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6px;
    height: 340px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 26px;
}
.hgallery__hero {
    cursor: pointer;
    overflow: hidden;
    background: var(--gray-light);
}
.hgallery__hero img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.hgallery__hero:hover img { transform: scale(1.04); }

.hgallery__side {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}
.hgallery__side--count-1 { grid-template-rows: 1fr; grid-template-columns: 1fr; }
.hgallery__side--count-2 { grid-template-rows: repeat(2, 1fr); grid-template-columns: 1fr; }
.hgallery__side--count-3 { grid-template-rows: 1fr 1fr; }

.hgallery__cell {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: var(--gray-light);
}
.hgallery__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.hgallery__cell:hover img { transform: scale(1.06); }
.hgallery__more {
    position: absolute;
    inset: 0;
    background: rgba(10,37,64,0.62);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 700px) {
    .hgallery { grid-template-columns: 1fr; height: auto; }
    .hgallery__hero { height: 220px; }
    .hgallery__side { height: 140px; }
}

/* Tam ekran foto modal */
.hgallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,15,25,0.96);
    z-index: 9999;
    flex-direction: column;
}
.hgallery-modal.active { display: flex; }
.hgallery-modal__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.hgallery-modal__bar button {
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
}
.hgallery-modal__bar button:hover { background: rgba(255,255,255,0.22); }
.hgallery-modal__main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 60px 20px;
}
.hgallery-modal__main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
}
.hgallery-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    width: 46px; height: 46px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
}
.hgallery-modal__nav:hover { background: rgba(255,255,255,0.25); }
.hgallery-modal__nav--prev { left: 10px; }
.hgallery-modal__nav--next { right: 10px; }
@media (max-width: 700px) {
    .hgallery-modal__main { padding: 0 44px 20px; }
    .hgallery-modal__nav { width: 38px; height: 38px; font-size: 20px; }
}

/* ── Kart rozetleri (Kahvalti/Iptal) ── */
.hlist-item__badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 6px; }
.hlist-item__badge-pill {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 12px;
}
.hlist-item__badge-pill--breakfast { background: #fff3e0; color: #b8611a; }
.hlist-item__badge-pill--free-cancel { background: #e8f5e9; color: #2e7d32; }
.hlist-item__badge-pill--capacity { background: #eef2ff; color: #3730a3; }
.hlist-item__badge-pill--low-avail { background: #fef2f2; color: #b91c1c; font-weight: 700; }

/* ── Sol filtre paneli ── */
.hotels-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: start;
}
@media (max-width: 900px) {
    .hotels-layout { grid-template-columns: 1fr; }
}
.hotels-filters {
    background: #ffffff;
    border-radius: 20px;
    padding: 22px 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 12px 28px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f2;
    position: sticky;
    top: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
}
@media (max-width: 900px) {
    .hotels-filters { position: static; top: auto; }
}
.hotels-filters__section { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid #f0f0f2; }
.hotels-filters__section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.hotels-filters__title {
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 12px;
}
.hotels-filters__price-inputs { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.hotels-filters__price-inputs input {
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: #f5f5f7;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: #1d1d1f;
    transition: box-shadow .15s;
}
.hotels-filters__price-inputs input:focus {
    outline: none;
    box-shadow: inset 0 0 0 1.5px #0071e3;
    background: #ffffff;
}
.hotels-filters__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #1d1d1f;
    padding: 7px 0;
    cursor: pointer;
}
.hotels-filters__checkbox input {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #0071e3;
}
.hotels-filters__stars-row { display: flex; align-items: center; gap: 6px; }
.hotels-filters__reset {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: #f5f5f7;
    color: #0071e3;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 4px;
    transition: background .15s;
}
.hotels-filters__reset:hover { background: #e8e8ed; }

/* ── Misafir bilgi formu (rezervasyon) ── */
.hotel-book-now-btn {
    background: var(--ocean);
    border: none;
    cursor: pointer;
}
.hotel-book-now-btn:hover { background: #1565c0; }
.hotel-card__cta--wa { background: var(--open); }
.hotel-guest-form {
    display: none;
    background: var(--gray-light);
    border-radius: 10px;
    padding: 16px;
    margin: -8px 0 14px;
}
.hotel-guest-form.active { display: block; }
.hotel-guest-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
@media (max-width: 500px) {
    .hotel-guest-form__row { grid-template-columns: 1fr; }
}
.hotel-guest-form__row label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 5px;
}
.hotel-guest-form__row input {
    width: 100%;
    padding: 9px 11px;
    border: 1.5px solid #dfe6ec;
    border-radius: 7px;
    font-size: 13.5px;
    box-sizing: border-box;
}
.hotel-guest-form__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 4px;
}
.hotel-guest-form__cancel {
    background: none;
    border: 1.5px solid #dfe6ec;
    color: #5b6b7d;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.hotel-guest-form__cancel:hover { background: #fff; }


/* === HOFFER-CARD - Apple tarzi (12.07.2026) ===============================
   Beyaz kart, ince gri sinir, yumusak rozetler, mavi vurgulu CTA, sistem
   fontu, buyuk yuvarlak koseler, hafif hover kalkma efekti. */
.hoffer-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e8e8ed;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    padding: 20px 22px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow .15s, transform .15s;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
}
.hoffer-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}
.hoffer-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hoffer-card__icon span { font-size: 22px; }
.hoffer-card__top {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}
.hoffer-card__info { flex: 1; min-width: 220px; }
.hoffer-card__room {
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}
.hoffer-card__meal {
    font-size: 13px;
    color: #6e6e73;
    margin-bottom: 10px;
}
.hoffer-card__badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 4px; }
.hoffer-card__badge {
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 999px;
    white-space: nowrap;
}
.hoffer-card__badge--refundable { background: #e5f8ec; color: #1e7d3c; }
.hoffer-card__badge--nonrefundable { background: #fdeceb; color: #c0362c; }
.hoffer-card__badge--occupancy { background: #eaf4ff; color: #0071e3; }
.hoffer-card__badge--capacity { background: #eef0ff; color: #4636d9; }
.hoffer-card__badge--low-avail { background: #fdeceb; color: #c0362c; font-weight: 700; }
.hoffer-card__price { text-align: right; flex-shrink: 0; }
.hoffer-card__amount {
    font-family: inherit;
    font-size: 22px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.3px;
}
.hoffer-card__try { font-size: 13px; font-weight: 600; color: #86868b; margin-top: 2px; }
.hoffer-card__note { font-size: 11px; color: #86868b; margin: 4px 0 10px; }
.hoffer-card__ctas { display: flex; flex-direction: row; flex-wrap: wrap; gap: 8px; min-width: 0; }
.hoffer-card__ctas .hotel-card__cta {
    text-align: center;
    flex: 0 0 auto;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: none;
}
.hoffer-card__divider { display: none; }

.hotel-cancel-policy-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 600;
    color: #0071e3;
    text-decoration: none;
    margin-top: 6px;
    cursor: pointer;
    background: #eaf4ff;
    padding: 6px 12px;
    border-radius: 999px;
    transition: background .15s;
}
.hotel-cancel-policy-link:hover { background: #dcecff; text-decoration: none; }
.hotel-cancel-policy-link__chevron {
    display: inline-block;
    font-size: 10px;
    transition: transform .2s;
}
.hotel-cancel-policy-link.is-open .hotel-cancel-policy-link__chevron { transform: rotate(180deg); }

.hotel-cancel-policy-result {
    display: none;
    margin-top: 10px;
    padding: 12px 14px;
    background: #f5f5f7;
    border-radius: 12px;
    font-size: 12.5px;
    color: #3c4a5a;
    line-height: 1.65;
}
.hotel-cancel-policy-result.is-open { display: block; }
.hotel-cancel-policy-result ul { margin: 0; padding-left: 18px; }
.hotel-cancel-policy-result li { margin-bottom: 5px; }
.hotel-cancel-policy-result li:last-child { margin-bottom: 0; }

@media (max-width: 700px) {
    .hoffer-card { flex-direction: column; }
    .hoffer-card__icon { margin-bottom: 4px; }
    .hoffer-card__top { flex-direction: column; }
    .hoffer-card__price { text-align: left; width: 100%; }
    .hoffer-card__ctas { width: 100%; }
    .hoffer-card__ctas .hotel-card__cta { flex: 1 1 auto; text-align: center; }
}

/* === HOTEL RESULT BANNER (11.07.2026) === */
.hotel-result-banner {
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.5;
}
.hotel-result-banner--success {
    background: #e8f5e9;
    color: #1e5c26;
    border: 1.5px solid #a5d6a7;
}
.hotel-result-banner--error {
    background: #fdecea;
    color: #8a1c1c;
    border: 1.5px solid #f3b3ae;
}
.hotel-result-banner--pending {
    background: #fff8e1;
    color: #8a6100;
    border: 1.5px solid #ffe082;
}

/* === Otel Mesafe Bilgileri (12.07.2026) === */
.hotel-distances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}
.hotel-distance-item {
    background: #f5f5f7;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.hotel-distance-item__label {
    font-size: 12px;
    color: #6e6e73;
    font-weight: 600;
}
.hotel-distance-item__value {
    font-size: 15px;
    color: #1d1d1f;
    font-weight: 700;
}
