/* ============================================================
   GEK HOTEL POPUP — Layout styles
   ============================================================ */

/* Title */
.gek-hotel-title {
    font-size: 32px;
    font-weight: 700;
    color: #323232;
    margin: 0 0 12px;
    padding-right: 40px;
    line-height: 1.25;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Intro */
.gek-hotel-intro {
    font-size: 16px;
    color: #323232;
    line-height: 1.65;
	margin-bottom: 20px !important;
}

/* ── Tab navigation ── */
.gek-hotel-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 20px;
}

.gek-hotel-tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    padding: 8px 14px;
    font-size: 12.5px;
    font-weight: 500;
    color: #282828;
    cursor: pointer;
    transition: color 160ms ease, border-color 160ms ease;
    white-space: nowrap;
}

.gek-hotel-tab-btn:hover {
    color: #fff !important;
    background-color: #7AC143 !important;
}

.gek-hotel-tab-btn.is-active {
    color: #7AC143 !important;
    background-color: transparent !important;
    border-bottom-color: #7AC143 !important;
    font-weight: 600;
}

.gek-hotel-tab-btn.is-active:hover {
    color: #7AC143 !important;
    background-color: transparent !important;
    border-bottom-color: #7AC143 !important;
    font-weight: 600;
}

/* ── Property panel ── */
.gek-hotel-panel { display: none; }
.gek-hotel-panel.is-active { display: block; }

/* Images */
.gek-hotel-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    margin-top: 18px;
}

.gek-hotel-images img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Location / board basis */
.gek-hotel-location {
    font-size: 12px;
    color: #888;
    margin-bottom: 14px;
}

/* Rates section */
.gek-hotel-rates-heading {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
}

/* Mobile */
@media (max-width: 480px) {
    .gek-hotel-tab-btn {
        font-size: 11px;
        padding: 7px 10px;
    }
    .gek-hotel-images img {
        height: 110px;
    }
}
