.stay-detail-shell {
    display: grid;
    gap: 28px;
}

.stay-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.stay-location-line {
    margin: 0;
    color: #222222;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    line-height: 1.3;
}

.stay-topbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.stay-topbar-actions button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 12px;
    border: 0;
    background: transparent;
    color: #222222;
    cursor: pointer;
    font-size: 15px;
}

.stay-topbar-actions button:hover {
    color: #e31c5f;
}

.stay-hero-intro {
    display: grid;

    gap: 28px;
    align-items: start;
    grid-template-columns: 390px auto;
    grid-template-areas:
        "copy gallery"
        "booking gallery"
    ;

    @media (max-width: 1024px) {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "gallery"
            "booking"
        ;
    }
}

.stay-hero-copy {
    display: grid;
    gap: 16px;
    padding-top: 8px;
    grid-area: copy;
}

.stay-property-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(34, 34, 34, 0.08);
    color: #222222;
    font-size: 15px;
    font-weight: 700;
}

.stay-hero-copy h1,
.stay-copy-block h2,
.stay-booking-price strong {
    margin: 0;
    font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

.stay-hero-copy h1 {
    font-size: clamp(42px, 4.6vw, 58px);
    line-height: 1.04;
}

.stay-summary-meta,
.stay-address-line,
.stay-copy-block p,
.stay-price-line,
.stay-fee-note span,
.stay-booking-price span {
    color: #5d5d5d;
    line-height: 1.8;
}

.stay-summary-meta,
.stay-address-line,
.stay-price-line {
    margin: 0;
    font-size: 18px;
}

.stay-phone-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    color: #222222;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.stay-phone-link i {
    color: #e31c5f;
}

.stay-check-in {
   
    display: flex;
    /* width: fit-content; */
    align-items: baseline;
    padding: 12px 0;
    gap: 4px;
    color: #4f4f4f;
     font-size: 18px;
    line-height: 1.5;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.stay-check-in-label {
    color: #222222;
    font-weight: 700;
}

.stay-price-line strong {
    color: #222222;
    font-size: 22px;
}

.stay-booking-inline {
    display: grid;
    gap: 16px;
    margin-top: 6px;
    grid-area: booking;
}

.stay-gallery-hero {
    min-width: 0;
    grid-area: gallery;
}

.stay-gallery-swiper-shell {
    position: relative;
    overflow: hidden;


    border-radius: var(--radius-md);
    background: linear-gradient(160deg, #f2ece6, #eceff4);
    box-shadow: 0 24px 54px rgba(34, 34, 34, 0.08);
}

.stay-gallery-swiper,
.stay-gallery-swiper .swiper-wrapper,
.stay-gallery-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.stay-gallery-slide-card {
    position: relative;
    /* min-height: 620px; */
    overflow: hidden;
}

.stay-gallery-slide-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 24, 38, 0.04), rgba(18, 24, 38, 0.1));
    pointer-events: none;
}

.stay-gallery-slide-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.stay-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: #111111;
    box-shadow: 0 18px 36px rgba(34, 34, 34, 0.16);
    transform: translateY(-50%);
    cursor: pointer;
    transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.stay-gallery-nav:hover {
    background: #ffffff;
    color: #e31c5f;
    box-shadow: 0 22px 40px rgba(34, 34, 34, 0.2);
    transform: translateY(-50%) scale(1.04);
}

.stay-gallery-nav--prev {
    left: 20px;
}

.stay-gallery-nav--next {
    right: 20px;
}

.stay-gallery-nav i {
    font-size: 30px;
}

.stay-gallery-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.stay-gallery-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.72);
    opacity: 1;
}

.stay-gallery-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    transform: scale(1.08);
}

.stay-gallery-swiper-shell.is-single .stay-gallery-nav,
.stay-gallery-swiper-shell.is-single .stay-gallery-pagination {
    display: none;
}

.stay-gallery-empty {
    min-height: 420px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-md);
    background: linear-gradient(160deg, #f2ece6, #eceff4);
    color: #666666;
    font-size: 18px;
}

.stay-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
}


.stay-detail-content {
    display: grid;
    gap: 30px;
}

.stay-divider-block {
    padding-top: 28px;

    &:not(.first-child) {
        border-top: 1px solid rgba(34, 34, 34, 0.12);
    }

}

.stay-copy-block {
    display: grid;
    gap: 16px;
}

.stay-copy-block h2 {
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.12;
}

.stay-copy-block p {
    margin: 0;
    font-size: 16px;
}

.stay-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stay-chip-list span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: #f5f3f1;
    border: 1px solid rgba(34, 34, 34, 0.06);
    color: #3a3a3a;
    font-size: 14px;
    font-weight: 600;
}

.stay-chip-list--transport span {
    background: rgba(216, 231, 244, 0.46);
    color: #35466f;
}


.stay-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.stay-related-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid rgba(34, 34, 34, 0.08);
    box-shadow: 0 18px 40px rgba(34, 34, 34, 0.08);
}

.stay-related-media {
    display: grid;
    place-items: center;
    min-height: 220px;
    background: linear-gradient(145deg, #f1ede7, #e4e9ef);
    color: #7d7d7d;
    text-decoration: none;
}

.stay-related-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.stay-related-body {
    display: grid;
    gap: 12px;
    padding: 20px;
}

.stay-related-location,
.stay-related-apartment {
    margin: 0;
    color: #666666;
    font-size: 14px;
}

.stay-related-body h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
}

.stay-related-body h3 a,
.stay-related-footer a {
    color: #222222;
    text-decoration: none;
}

.stay-related-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stay-related-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f5f3f1;
    color: #4a4a4a;
    font-size: 13px;
    font-weight: 600;
}

.stay-related-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 4px;
}

.stay-related-footer strong {
    color: #aa144f;
    font-size: 18px;
}

.stay-related-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(216, 231, 244, 0.55);
    color: #35466f;
    font-size: 14px;
    font-weight: 700;
}

.stay-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 26px;
}

.stay-feature-grid article {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    align-items: start;
}

.stay-feature-grid i {
    margin-top: 4px;
    color: #222222;
    font-size: 20px;
}

.stay-feature-grid strong {
    display: block;
    color: #222222;
    font-size: 18px;
}

.stay-feature-grid span {
    display: block;
    margin-top: 4px;
    color: #666666;
    line-height: 1.7;
}

.stay-video-placeholder {
    min-height: 190px;
    padding: 26px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(247, 215, 195, 0.35), rgba(216, 231, 244, 0.36));
    border: 1px solid rgba(34, 34, 34, 0.06);
}

.stay-fee-note,
.stay-booking-card {
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(34, 34, 34, 0.08);
}

.stay-fee-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 74px;
    padding: 16px 22px;
}

.stay-fee-note i {
    color: #ff385c;
    font-size: 18px;
}

.stay-booking-card {
    padding: 22px;
    border: 1px solid rgba(34, 34, 34, 0.08);
}

.stay-booking-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.stay-booking-price strong {
    font-size: 24px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.stay-booking-form {
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

.stay-booking-dates {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid rgba(34, 34, 34, 0.3);
    border-radius: 18px 18px 0 0;
    overflow: hidden;
}

.stay-booking-dates>div,
.stay-booking-guests {
    padding: 14px 16px;
    background: #ffffff;
}

.stay-booking-dates>div:first-child {
    border-right: 1px solid rgba(34, 34, 34, 0.2);
}

.stay-booking-dates label,
.stay-booking-guests label {
    display: block;
    color: #222222;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stay-booking-dates span,
.stay-booking-guests span {
    display: block;
    margin-top: 8px;
    color: #222222;
    font-size: 18px;
}

.stay-booking-guests {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(34, 34, 34, 0.3);
    border-top: 0;
    border-radius: 0 0 18px 18px;
}

.stay-booking-guests div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stay-booking-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: 999px;
    background: linear-gradient(145deg, #ff1361, #d6025b);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 1180px) {
    .stay-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .stay-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .stay-related-grid {
        grid-template-columns: 1fr;
    }

    .stay-gallery-hero,
    .stay-feature-grid {
        grid-template-columns: 1fr;
    }

    .stay-gallery-main-card,
    .stay-gallery-side-card {
        min-height: 240px;
        border-radius: 22px;
    }

    .stay-hero-intro {
        gap: 22px;
    }

    .stay-hero-copy h1 {
        font-size: 40px;
    }

    .stay-gallery-side-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stay-booking-dates {
        grid-template-columns: 1fr;
        border-radius: 18px 18px 0 0;
    }

    .stay-booking-dates>div:first-child {
        border-right: 0;
        border-bottom: 1px solid rgba(34, 34, 34, 0.2);
    }
}

@media (max-width: 640px) {


    .stay-related-body {
        padding: 18px;
    }

    .stay-related-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .stay-related-footer a {
        width: 100%;
    }

    .stay-location-line {
        font-size: 20px;
    }

    .stay-hero-copy h1 {
        font-size: 34px;
    }

    .stay-gallery-side-grid,
    .stay-feature-grid {
        grid-template-columns: 1fr;
    }

    .stay-btn {
        width: 100%;
    }
}


.stay-gallery-hero.gallery-count-1 {
    grid-template-columns: 1fr;
}

.stay-gallery-hero.gallery-count-1 .stay-gallery-main-card {
    min-height: 620px;
    border-radius: 26px;
}

.stay-gallery-hero.gallery-count-2 {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.stay-gallery-hero.gallery-count-2 .stay-gallery-side-grid {
    grid-template-columns: 1fr;
}

.stay-gallery-hero.gallery-count-2 .stay-gallery-side-card,
.stay-gallery-hero.gallery-count-3 .stay-gallery-side-card,
.stay-gallery-hero.gallery-count-4 .stay-gallery-side-card,
.stay-gallery-hero.gallery-count-5 .stay-gallery-side-card {
    border-radius: 22px;
}

.stay-gallery-hero.gallery-count-2 .stay-gallery-side-card {
    min-height: 620px;
}

.stay-gallery-hero.gallery-count-3 .stay-gallery-side-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stay-gallery-hero.gallery-count-3 .stay-gallery-side-card:first-child {
    grid-column: 1 / -1;
    min-height: 220px;
}

.stay-gallery-hero.gallery-count-4 .stay-gallery-side-grid,
.stay-gallery-hero.gallery-count-5 .stay-gallery-side-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {

    .stay-gallery-hero.gallery-count-1 .stay-gallery-main-card,
    .stay-gallery-hero.gallery-count-2 .stay-gallery-side-card {
        min-height: 320px;
    }
}


@media (max-width: 900px) {

    .stay-gallery-nav {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 640px) {



    .stay-gallery-nav {
        width: 44px;
        height: 44px;
    }

    .stay-gallery-nav--prev {
        left: 12px;
    }

    .stay-gallery-nav--next {
        right: 12px;
    }

    .stay-gallery-nav i {
        font-size: 18px;
    }
}


.stay-gallery-expand {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #222222;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(34, 34, 34, 0.14);
    cursor: pointer;
}

.stay-gallery-expand:hover {
    color: #e31c5f;
    background: #ffffff;
}

.stay-gallery-swiper-shell.is-single .stay-gallery-expand {
    right: 16px;
    top: 16px;
}


.stay-gallery-slide-card a {
    display: block;
    width: 100%;
    height: 100%;
}

body.is-stay-fancybox-open {
    overflow: hidden;
}

.stay-detail-hero {
    /* background-color: #ff385c1f; */
    padding: 5vmin 0;
    background: linear-gradient(135deg, rgba(247, 215, 195, 0.8), rgba(216, 231, 244, 0.8));
}