.vvj-shorex-map-widget {
    display: grid;
    gap: 32px;
    width: 100%;
}

.vvj-shorex-map-widget.layout-map_left {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.vvj-shorex-map-widget.layout-map_right {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.vvj-shorex-map-widget.layout-map_right .vvj-shorex-left {
    order: 2;
}

.vvj-shorex-map-widget.layout-map_right .vvj-shorex-right {
    order: 1;
}

.vvj-shorex-map-widget.layout-map_top {
    grid-template-columns: 1fr;
}

.vvj-shorex-left,
.vvj-shorex-right {
    min-width: 0;
}

.vvj-shorex-left {
    background: #fff7f7;
    border: 1px solid rgba(38, 56, 95, 0.12);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 18px 50px rgba(38, 56, 95, 0.08);
}

.vvj-shorex-map {
    width: 100%;
    height: 620px;
    border-radius: 14px;
    overflow: hidden;
}

.vvj-shorex-right {
    background: #ffffff;
    border: 1px solid rgba(38, 56, 95, 0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(38, 56, 95, 0.08);
}

.vvj-shorex-map-widget.is-sticky-enabled.layout-map_left .vvj-shorex-right,
.vvj-shorex-map-widget.is-sticky-enabled.layout-map_right .vvj-shorex-right {
    position: sticky;
    top: var(--vvj-sticky-offset, 100px);
    align-self: start;
}

.vvj-shorex-map-widget.layout-map_top .vvj-shorex-right {
    position: relative;
    top: auto;
}

.vvj-shorex-tabs {
    display: flex;
    gap: 10px;
    padding: 20px;
    background: #8D2428;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.vvj-shorex-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    border: 0;
    border-radius: 8px;
    padding: 13px 22px;
    background: #ffffff;
    color: #24365C;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.vvj-shorex-tab:hover {
    transform: translateY(-1px);
}

.vvj-shorex-tab.is-active {
    background: #F47D75;
    color: #ffffff;
}

.vvj-shorex-panels {
    padding: 32px;
}

.vvj-shorex-panel {
    display: none;
}

.vvj-shorex-panel.is-active {
    display: block;
}

.vvj-shorex-hero-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 28px;
    background: #f5f5f5;
    border-radius: 14px;
}

.vvj-shorex-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.vvj-image-ratio-16-9 .vvj-shorex-hero-image {
    aspect-ratio: 16 / 9;
}

.vvj-image-ratio-4-3 .vvj-shorex-hero-image {
    aspect-ratio: 4 / 3;
}

.vvj-image-ratio-3-2 .vvj-shorex-hero-image {
    aspect-ratio: 3 / 2;
}

.vvj-image-ratio-1-1 .vvj-shorex-hero-image {
    aspect-ratio: 1 / 1;
}

.vvj-image-ratio-21-9 .vvj-shorex-hero-image {
    aspect-ratio: 21 / 9;
}

.vvj-image-ratio-auto .vvj-shorex-hero-image {
    aspect-ratio: auto;
    height: auto;
}

.vvj-image-ratio-auto .vvj-shorex-hero-image img {
    height: auto;
    object-fit: initial;
}

.vvj-shorex-title {
    margin: 0 0 10px;
    color: #26385F;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
}

.vvj-shorex-subtitle {
    margin-bottom: 18px;
    color: #F47D75;
    font-weight: 700;
    line-height: 1.5;
}

.vvj-shorex-content {
    color: #63708A;
    font-size: 16px;
    line-height: 1.8;
}

.vvj-shorex-content > :first-child {
    margin-top: 0;
}

.vvj-shorex-content > :last-child {
    margin-bottom: 0;
}

.vvj-shorex-content img,
.vvj-shorex-content video,
.vvj-shorex-content iframe {
    max-width: 100%;
    border-radius: 14px;
}

.vvj-shorex-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.vvj-shorex-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 6px;
    background: #8D2428;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.vvj-shorex-marker-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.vvj-shorex-marker {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 3px solid #ffffff;
    background-color: #9CA8BA;
    box-shadow: 0 6px 18px rgba(38, 56, 95, 0.3);
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.25s ease, box-shadow 0.25s ease;
}

.vvj-shorex-marker.is-active {
    transform: scale(1.27);
    background-color: #F47D75;
    box-shadow: 0 8px 24px rgba(244, 125, 117, 0.55);
}

.vvj-shorex-marker.has-custom-icon {
    width: 42px;
    height: 42px;
    border: none;
    background-color: transparent;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: none;
    transform: scale(1);
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.vvj-shorex-marker.has-custom-icon.is-active {
    width: 42px;
    height: 42px;
    transform: scale(1.19);
    background-color: transparent;
    box-shadow: none;
}

.vvj-shorex-error {
    padding: 16px;
    border-radius: 8px;
    background: #fff2f2;
    color: #8D2428;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .vvj-shorex-map-widget.layout-map_left,
    .vvj-shorex-map-widget.layout-map_right {
        grid-template-columns: 1fr;
    }

    .vvj-shorex-map-widget.layout-map_right .vvj-shorex-left,
    .vvj-shorex-map-widget.layout-map_right .vvj-shorex-right {
        order: initial;
    }

    .vvj-shorex-map-widget.is-sticky-enabled .vvj-shorex-right {
        position: relative;
        top: auto;
    }

    .vvj-shorex-map {
        height: 520px;
    }
}

@media (max-width: 767px) {
    .vvj-shorex-left {
        padding: 12px;
        border-radius: 14px;
    }

    .vvj-shorex-map {
        height: 420px;
        border-radius: 12px;
    }

    .vvj-shorex-tabs {
        padding: 14px;
        gap: 8px;
    }

    .vvj-shorex-tab {
        padding: 10px 16px;
        font-size: 14px;
    }

    .vvj-shorex-panels {
        padding: 22px;
    }

    .vvj-shorex-title {
        font-size: 26px;
    }
}
