/* Konaklama liste — DNA stili, satır düzeni (önizleme) */
.rooms-demo-note {
    background: #111;
    color: #fff;
    font-size: 13px;
    letter-spacing: .04em;
    text-align: center;
    padding: 10px 16px;
}
.rooms-demo-note a {
    color: #fff;
    text-decoration: underline;
}

#roomsListV3 {
    padding: 12px 0 56px;
}
#roomsListV3 .rooms-intro {
    font-size: 16px;
    line-height: 1.55;
    color: #444;
    max-width: 720px;
    margin: 0 auto 18px;
    text-align: center;
}
.room-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 28px;
    max-width: 920px;
}
.room-filters button {
    min-height: 44px;
    padding: 8px 14px;
    border: 1px solid #111;
    background: #fff;
    color: #111;
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer;
}
.room-filters button.is-on {
    background: #111;
    color: #fff;
}
.room-row[hidden] {
    display: none !important;
}

.room-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid #ececec;
}

.room-row .room-photo {
    display: block;
    overflow: hidden;
    background: #f3f3f3;
    line-height: 0;
}
.room-row .room-photo img {
    display: block;
    width: 100%;
    height: 56vw;
    min-height: 200px;
    max-height: 280px;
    object-fit: cover;
    object-position: center;
}

.room-row .room-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.room-row .room-name {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: .02em;
    color: #111;
    margin: 0 0 14px;
    line-height: 1.25;
}
.room-row .room-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
}
.room-row .room-facts li {
    min-width: 0;
}
.room-row .room-facts span {
    display: block;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 4px;
}
.room-row .room-facts strong {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #111;
    line-height: 1.3;
}
.room-row .room-copy {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    margin: 0 0 16px;
}
.room-row .room-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}
.room-row .room-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    flex: 1 1 auto;
}
.room-row .room-actions .btn-detail {
    border: 1px solid #111;
    color: #111;
    background: #fff;
}
.room-row .room-actions .btn-detail:hover {
    background: #111;
    color: #fff;
    text-decoration: none;
}
.room-row .room-actions .btn-book {
    background: #111;
    color: #fff !important;
    border: 1px solid #111;
}
.room-row .room-actions .btn-book:hover {
    background: #014f8f;
    border-color: #014f8f;
    text-decoration: none;
}

@media (max-width: 767px) {
    #roomsListV3 .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .room-filters button {
        flex: 1 1 calc(50% - 8px);
    }
    .room-filters button[data-filter="all"] {
        flex-basis: 100%;
    }
    .room-row .room-actions a {
        flex: 1 1 calc(50% - 10px);
        min-width: 0;
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Tablet: yan yana, metin sıkışmadan */
@media (min-width: 768px) and (max-width: 991px) {
    #roomsListV3 .rooms-intro {
        font-size: 17px;
        margin-bottom: 28px;
    }
    .room-row {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        gap: 18px;
        align-items: center;
        padding: 24px 0;
    }
    .room-row .room-photo img {
        height: 230px;
        max-height: none;
    }
    .room-row .room-name {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .room-row .room-copy {
        font-size: 15px;
    }
    .room-row .room-actions a {
        flex: 1 1 140px;
        min-width: 0;
        padding: 10px 12px;
        font-size: 12px;
        letter-spacing: .06em;
    }
}

@media (min-width: 992px) {
    #roomsListV3 .rooms-intro {
        font-size: 17px;
        margin-bottom: 36px;
    }
    .room-row {
        grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.85fr);
        gap: 40px;
        align-items: center;
        padding: 32px 0;
    }
    .room-row .room-photo img {
        height: 420px;
        max-height: none;
    }
    .room-row .room-name {
        font-size: 28px;
    }
    .room-row .room-actions a {
        flex: 0 0 auto;
        min-width: 160px;
    }
}
