/*
|--------------------------------------------------------------------------
| MekanRadar Hero Check-in Layout
|--------------------------------------------------------------------------
| public/css/mr-place-hero-reservation.css
|
| Rezervasyon alanÄ± kaldÄ±rÄ±ldÄ±ktan sonra saÄŸ kolonun gÃ¶rselle orantÄ±lÄ±,
| kompakt ve premium gÃ¶rÃ¼nmesini saÄŸlar.
|
| Dark mode: radar yeÅŸili karakter korunur.
| Light mode: yeni dÃ¼z beyaz + turuncu/coral MekanRadar temasÄ±na uyarlanÄ±r.
| Performans: bÃ¼yÃ¼k blur/glow katmanlarÄ± light modeâ€™da kapatÄ±lÄ±r.
*/

.place-show-premium .mr-panel.mr-hero {
    overflow: hidden;
}

.place-show-premium .mr-panel.mr-hero .mr-hero-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) clamp(320px, 26vw, 390px) !important;
    gap: 18px !important;
    align-items: stretch !important;
}

.place-show-premium .mr-gallery-main {
    min-width: 0 !important;
    height: clamp(360px, 30vw, 470px) !important;
}

.place-show-premium .mr-gallery-track,
.place-show-premium .mr-gallery-slide,
.place-show-premium .mr-gallery-slide img {
    height: 100% !important;
}

.place-show-premium .mr-gallery-slide img {
    width: 100% !important;
    object-fit: cover !important;
}

/*
|--------------------------------------------------------------------------
| SaÄŸ Kolon / Check-in Shell
|--------------------------------------------------------------------------
*/

.place-show-premium .mr-hero-reservation-col,
.place-show-premium .mr-hero-checkin-col {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 390px !important;
    display: flex !important;
    align-items: stretch !important;
}

.place-show-premium .mr-checkin-card {
    position: relative;
    width: 100%;
    height: clamp(360px, 30vw, 470px);
    min-height: 360px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(34, 197, 94, .30);
    background:
        radial-gradient(circle at 14% 0%, rgba(34, 197, 94, .16), transparent 34%),
        linear-gradient(145deg, rgba(3, 48, 46, .94), rgba(1, 18, 22, .98));
    color: #ecfff5;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        0 18px 42px rgba(0, 0, 0, .18);
}

.place-show-premium .mr-checkin-card::before {
    content: "";
    position: absolute;
    right: -86px;
    bottom: -110px;
    width: 230px;
    height: 230px;
    border-radius: 999px;
    background: rgba(34, 197, 94, .14);
    filter: blur(50px);
    pointer-events: none;
}

.place-show-premium .mr-checkin-card__inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 13px;
    padding: 24px;
}

.place-show-premium .mr-checkin-kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    padding: 9px 14px;
    border: 1px solid rgba(52, 211, 153, .32);
    background: rgba(16, 185, 129, .12);
    color: #2cff9a;
    font-size: 11px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.place-show-premium .mr-checkin-title {
    margin: 0;
    font-size: clamp(28px, 2.35vw, 38px);
    line-height: 1;
    letter-spacing: -.055em;
    font-weight: 950;
    color: #f7fff9;
}

.place-show-premium .mr-checkin-text {
    margin: 0;
    max-width: 320px;
    color: rgba(219, 255, 237, .74);
    font-size: 15px;
    line-height: 1.38;
    font-weight: 800;
}

.place-show-premium .mr-checkin-text strong {
    color: #33ff9a;
    font-weight: 950;
}

.place-show-premium .mr-checkin-location {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 16px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .06);
    color: rgba(235, 255, 244, .84);
    font-size: 13px;
    line-height: 1.1;
    font-weight: 850;
}

/*
|--------------------------------------------------------------------------
| Check-in CTA
|--------------------------------------------------------------------------
*/

.place-show-premium .mr-checkin-cta {
    width: 100%;
    margin-top: 7px;
    border: 1px solid rgba(34, 197, 94, .34);
    border-radius: 22px;
    padding: 13px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 255, 255, .20), transparent 38%),
        linear-gradient(135deg, #22dd86, #12bf72 58%, #08945f);
    color: #022318;
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .22),
        0 14px 30px rgba(0, 0, 0, .18);
    transition:
        transform .16s ease,
        box-shadow .16s ease,
        filter .16s ease;
}

.place-show-premium .mr-checkin-cta:hover {
    transform: translateY(-1px);
    filter: saturate(1.03);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .26),
        0 16px 34px rgba(0, 0, 0, .22);
}

.place-show-premium .mr-checkin-cta:active {
    transform: translateY(0);
}

.place-show-premium .mr-checkin-cta__icon {
    width: 48px;
    height: 48px;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: rgba(2, 35, 24, .12);
    border: 1px solid rgba(2, 35, 24, .12);
    font-size: 22px;
}

.place-show-premium .mr-checkin-cta__content {
    min-width: 0;
    display: grid;
    gap: 3px;
    text-align: left;
}

.place-show-premium .mr-checkin-cta__content strong {
    display: block;
    font-size: 18px;
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -.03em;
    color: #022318;
}

.place-show-premium .mr-checkin-cta__content small {
    display: block;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 850;
    color: rgba(2, 35, 24, .78);
}

.place-show-premium .mr-checkin-cta__arrow {
    margin-left: auto;
    width: 36px;
    height: 36px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 35, 24, .12);
    color: #022318;
    font-size: 20px;
    font-weight: 950;
}

.place-show-premium .mr-checkin-cta--guest {
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 255, 255, .20), transparent 38%),
        linear-gradient(135deg, #20dc85, #0fbf6f 56%, #0a9f69);
}

.place-show-premium .mr-checkin-cta.is-loading {
    cursor: wait;
    filter: saturate(.85);
    opacity: .82;
}

.place-show-premium .mr-checkin-cta.is-completed,
.place-show-premium .mr-checkin-cta.is-checked-in {
    background:
        linear-gradient(135deg, rgba(15, 118, 110, .94), rgba(6, 78, 59, .96));
    color: #ecfff5;
    border-color: rgba(52, 211, 153, .34);
}

.place-show-premium .mr-checkin-cta.is-completed .mr-checkin-cta__content strong,
.place-show-premium .mr-checkin-cta.is-completed .mr-checkin-cta__content small,
.place-show-premium .mr-checkin-cta.is-completed .mr-checkin-cta__arrow,
.place-show-premium .mr-checkin-cta.is-checked-in .mr-checkin-cta__content strong,
.place-show-premium .mr-checkin-cta.is-checked-in .mr-checkin-cta__content small,
.place-show-premium .mr-checkin-cta.is-checked-in .mr-checkin-cta__arrow {
    color: #ecfff5;
}

.place-show-premium .mr-checkin-cta.is-completed .mr-checkin-cta__icon,
.place-show-premium .mr-checkin-cta.is-completed .mr-checkin-cta__arrow,
.place-show-premium .mr-checkin-cta.is-checked-in .mr-checkin-cta__icon,
.place-show-premium .mr-checkin-cta.is-checked-in .mr-checkin-cta__arrow {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .10);
}

/*
|--------------------------------------------------------------------------
| Light Mode / New MekanRadar White + Orange Theme
|--------------------------------------------------------------------------
*/

html[data-mr-theme="light"] .place-show-premium .mr-checkin-card {
    border-color: rgba(255, 90, 31, .16);
    background: #ffffff;
    color: #172033;
    box-shadow:
        0 10px 24px rgba(15, 23, 42, .050),
        inset 0 1px 0 rgba(255, 255, 255, .88);
}

html[data-mr-theme="light"] .place-show-premium .mr-checkin-card::before {
    content: none;
    display: none;
}

html[data-mr-theme="light"] .place-show-premium .mr-checkin-kicker {
    border-color: rgba(255, 90, 31, .18);
    background: rgba(255, 90, 31, .075);
    color: #ff5a1f;
    box-shadow: none;
}

html[data-mr-theme="light"] .place-show-premium .mr-checkin-title {
    color: #0f172a;
}

html[data-mr-theme="light"] .place-show-premium .mr-checkin-text {
    color: rgba(71, 85, 105, .78);
}

html[data-mr-theme="light"] .place-show-premium .mr-checkin-text strong {
    color: #ff5a1f;
}

html[data-mr-theme="light"] .place-show-premium .mr-checkin-location {
    border-color: rgba(15, 23, 42, .085);
    background: #ffffff;
    color: rgba(51, 65, 85, .84);
    box-shadow: 0 8px 18px rgba(15, 23, 42, .040);
}

html[data-mr-theme="light"] .place-show-premium .mr-checkin-cta,
html[data-mr-theme="light"] .place-show-premium .mr-checkin-cta--guest {
    border-color: rgba(255, 90, 31, .24);
    background: #ff5a1f;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(255, 90, 31, .14);
}

html[data-mr-theme="light"] .place-show-premium .mr-checkin-cta:hover {
    filter: none;
    box-shadow: 0 12px 26px rgba(255, 90, 31, .18);
}

html[data-mr-theme="light"] .place-show-premium .mr-checkin-cta__icon,
html[data-mr-theme="light"] .place-show-premium .mr-checkin-cta__arrow {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .22);
    color: #ffffff;
}

html[data-mr-theme="light"] .place-show-premium .mr-checkin-cta__content strong,
html[data-mr-theme="light"] .place-show-premium .mr-checkin-cta__content small {
    color: #ffffff;
}

html[data-mr-theme="light"] .place-show-premium .mr-checkin-cta.is-loading {
    opacity: .78;
}

html[data-mr-theme="light"] .place-show-premium .mr-checkin-cta.is-completed,
html[data-mr-theme="light"] .place-show-premium .mr-checkin-cta.is-checked-in {
    background: #172033;
    border-color: rgba(15, 23, 42, .18);
    color: #ffffff;
}

/*
|--------------------------------------------------------------------------
| Desktop oran dÃ¼zeltmeleri
|--------------------------------------------------------------------------
*/

@media (max-width: 1320px) {
    .place-show-premium .mr-panel.mr-hero .mr-hero-layout {
        grid-template-columns: minmax(0, 1fr) 360px !important;
        gap: 16px !important;
    }

    .place-show-premium .mr-hero-reservation-col,
    .place-show-premium .mr-hero-checkin-col {
        max-width: 360px !important;
    }

    .place-show-premium .mr-checkin-card__inner {
        padding: 22px;
    }

    .place-show-premium .mr-checkin-title {
        font-size: 33px;
    }
}

@media (max-width: 1140px) {
    .place-show-premium .mr-panel.mr-hero .mr-hero-layout {
        grid-template-columns: minmax(0, 1fr) 330px !important;
        gap: 14px !important;
    }

    .place-show-premium .mr-hero-reservation-col,
    .place-show-premium .mr-hero-checkin-col {
        max-width: 330px !important;
    }

    .place-show-premium .mr-checkin-card,
    .place-show-premium .mr-gallery-main {
        height: 390px !important;
        min-height: 390px !important;
    }

    .place-show-premium .mr-checkin-title {
        font-size: 29px;
    }

    .place-show-premium .mr-checkin-text {
        font-size: 14px;
    }
}

/*
|--------------------------------------------------------------------------
| Tablet / Mobil
|--------------------------------------------------------------------------
*/

@media (max-width: 980px) {
    .place-show-premium .mr-panel.mr-hero .mr-hero-layout {
        grid-template-columns: 1fr !important;
    }

    .place-show-premium .mr-hero-reservation-col,
    .place-show-premium .mr-hero-checkin-col {
        max-width: none !important;
    }

    .place-show-premium .mr-gallery-main {
        height: clamp(300px, 58vw, 430px) !important;
        min-height: 300px !important;
    }

    .place-show-premium .mr-checkin-card {
        height: auto !important;
        min-height: 0 !important;
    }

    .place-show-premium .mr-checkin-card__inner {
        justify-content: flex-start;
        padding: 20px;
    }

    .place-show-premium .mr-checkin-title {
        font-size: clamp(26px, 7vw, 36px);
    }
}

@media (max-width: 768px) {
    .place-show-premium .mr-checkin-card {
        border-radius: 24px;
    }

    .place-show-premium .mr-checkin-card__inner {
        gap: 12px;
        padding: 18px;
    }

    .place-show-premium .mr-checkin-kicker {
        padding: 8px 12px;
        font-size: 10px;
    }

    .place-show-premium .mr-checkin-title {
        font-size: 30px;
    }

    .place-show-premium .mr-checkin-text {
        font-size: 14px;
    }

    .place-show-premium .mr-checkin-location {
        border-radius: 15px;
        padding: 9px 12px;
        font-size: 12px;
    }

    .place-show-premium .mr-checkin-cta {
        border-radius: 20px;
        padding: 12px;
    }

    .place-show-premium .mr-checkin-cta__icon {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        font-size: 21px;
    }

    .place-show-premium .mr-checkin-cta__content strong {
        font-size: 17px;
    }

    .place-show-premium .mr-checkin-cta__content small {
        font-size: 11px;
    }

    .place-show-premium .mr-checkin-cta__arrow {
        width: 34px;
        height: 34px;
        border-radius: 13px;
    }
}

/*
|--------------------------------------------------------------------------
| Reduced Motion / Paint Guard
|--------------------------------------------------------------------------
*/

@media (prefers-reduced-motion: reduce) {
    .place-show-premium .mr-checkin-cta,
    .place-show-premium .mr-checkin-cta:hover {
        transition: none !important;
        transform: none !important;
    }
}