/* White Rocks Interactive Map — Widget Stylesheet v1.1 */

.wr-container {
    max-width: 1440px;
    margin: 0 auto;
    overflow: visible;
}

.wr-root {
    display: flex;
    height: 1020px;
    overflow: hidden;
    background: #fff;
    position: relative;
    font-family: inherit;
    width: calc((100vw + min(100vw, 1440px)) / 2);
}
.wr-root.wr-expanded {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* SIDEBAR */
.wr-sidebar {
    width: clamp(34.75rem, -9.7015rem + 69.3878vw, 36.875rem);
    min-width: clamp(34.75rem, -9.7015rem + 69.3878vw, 36.875rem);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-shrink: 0;
    transition: width 0.35s ease, min-width 0.35s ease, opacity 0.25s ease;
}
.wr-root.wr-expanded .wr-sidebar {
    width: 0 !important;
    min-width: 0 !important;
    opacity: 0;
    pointer-events: none;
}
.wr-container:has(.wr-root.wr-expanded) {
    max-width: 100%;
}
.wr-default {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}
.wr-sidebar-head { padding: 63px 64px 0; flex-shrink: 0; }
.wr-sidebar-btn {
   margin:0 0 14px;
   display: inline-block;
}

.wr-sidebar-head h3 {
  
    margin: 14px 0 20px;
}

/* FILTER */
.wr-filter-row {
    padding: 24px 64px 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 50;
    display: flex;
}
.wr-filter-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 203px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    border: 1px solid #000;
    border-radius: 0px;
    padding: 8px 20px 10px 25px;;
    cursor: pointer;
    background: #fff;
    color: #000;
    z-index: 50;
    font-family: 'Plaax6Trial';
}

.wr-filter-btn:hover, .wr-filter-btn:focus { background-color: #fff;color:#000 }
.wr-dropdown {
    position: absolute;
    top: 60%;
    left: 64px;
    right: 50px;
    background: #fff;
    display: none;
    z-index: 49;
    padding: 40px 25px 20px;
    border: 1px solid rgba(0,0,0,1);
    max-width: 203px;
    font-family: 'Plaax6Trial';
}
.wr-dropdown--open { display: block; }
.wr-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    cursor: pointer;
    font-size: 12px;
}
.wr-dropdown-item:last-of-type { border-bottom: none; }
.wr-checkbox {
    width: 20px;
    height: 20px;
    border: 1.5px solid #000;
    background: transparent;
    flex-shrink: 0;
    transition: background 0.15s, border-color 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wr-checkbox--checked {
    background: #000;
}
.wr-checkbox--checked::after {
    content: '';
    display: block;
    width: 6px;
    height: 11px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(0px);
}


/* LIST */
.wr-list { flex: 1; overflow-y: auto; }
.wr-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px 50px 32px 64px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    cursor: pointer;
}
.wr-card-thumb {
    width: 127px;
    height:126px;
    flex-shrink: 0;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.wr-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wr-card-body { flex: 1; min-width: 0; }
.wr-card-cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid;
    padding: 2px 6px;
    margin-bottom: 14px;
    width: fit-content;
    font-family: 'Plaax6Trial';

}
.wr-card-title { margin-bottom: 15px; }
.wr-card-arrow { flex-shrink: 0; align-self: center; display: flex; }
.wr-empty {
    padding: 24px 20px;
    font-size: 12px;
    opacity: 0.55;
    text-align: center;
    line-height: 1.8;
}
.wr-empty i { font-size: 22px; display: block; margin: 0 auto 8px; }

/* DETAIL */
.wr-detail { flex: 1; overflow-y: auto; display: none; flex-direction: column; }
.wr-detail--open { display: flex; }

/* CAROUSEL */
.wr-carousel { position: relative; height: 313px; background: #1c1c2e; flex-shrink: 0; overflow: hidden; }
.wr-carousel-track { display: flex; height: 100%; transition: transform 0.35s ease; }
.wr-carousel-slide {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #1c1c2e;
}
.wr-carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wr-carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}
.wr-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.30);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}
.wr-dot:hover,.wr-dot:focus{ background: #fff;}
.wr-dot--active { background: #fff; width: 55px; border-radius: 44.282px;}
.wr-carousel-x {
    position: absolute;
    top: 12px; right: 12px;
    width: 34px; height: 34px;
    background: rgba(0,0,0,1);
    border: none;
    color: #fff;
    border: 0.5px solid rgba(255,255,255,1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    z-index: 6;
    border-radius: 0;
}
.wr-carousel-x:hover,.wr-carousel-x:focus { background: rgba(255,255,255,1);color: rgba(0,0,0,1); }
.wr-carousel-x svg { display: block; width: 19px; height: 19px; flex-shrink: 0; }

/* DETAIL BODY */
.wr-detail-body { padding: 40px 64px 64px; flex: 1; display: flex; flex-direction: column; }
.wr-detail-cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1;
    text-transform: uppercase;
    border: 1px solid;
    padding: 3.5px 7.5px 4.5px;
    margin-bottom: 14px;
    width: fit-content;
    font-family: 'Plaax6Trial';
}
.wr-detail-title {
   
    margin-bottom: 20px;
}
.wr-detail-summary { margin-bottom: px; }
.wr-detail-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 64px 0;
    padding-top: 22px;
    border-top: 0.5px solid #CCCCCC;
}
.wr-detail-col-label {
    
    margin-bottom: 14px;
}
.wr-mini-map {
    width: 100%; height: 159px;
    overflow: hidden;
    position: relative;
    border: 1px solid #D8D8D8;
}
.wr-mini-map img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wr-mini-dot {
    position: absolute;
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    transform: translate(-50%,-50%);
    box-shadow: 0 0 0 2px rgba(0,0,0,0.3);
}

/* MAP */
.wr-map {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    min-width: 0;
}
.wr-map.wr-grabbing { cursor: grabbing; }

/* Canvas — transform-origin 0 0, translate+scale applied by JS */
.wr-canvas {
    position: absolute;
    top: 0; left: 0;
    transform-origin: 0 0;
    will-change: transform;
    width: 100%;
}
.wr-map-img {
    display: block;
    pointer-events: none;
    user-select: none;
    object-fit: cover;
}
/* Pins layer sits over the map viewport — NOT inside the scaled canvas */
.wr-pins-layer {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 10;
}

/* PINS */
.wr-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    cursor: pointer;
    pointer-events: all;
}
.wr-pin-wrapper {
    position: relative;
    width: 56px;
    height: 66px;
    transform-origin: 50% 100%;
    transition: all .3s ease;
}
.wr-pin:hover .wr-pin-wrapper {
    transform: scale(1.1);
}
.wr-pin--active .wr-pin-wrapper {
    transform: scale(1.2);
}
.wr-pin-wrapper svg {
    position: absolute;
    inset: 0;
}
.wr-pin-fill {
    fill: #111;
}
.wr-pin--active .wr-pin-fill {
    fill: var(--pin-active-fill);
}
.wr-pin-stroke {
    fill: none;
    stroke: var(--pin-stroke);
    stroke-width: 2;
}
.wr-pin-stroke-soft {
    fill: none;
    stroke: var(--pin-stroke);
    stroke-width: 2;
    stroke-opacity: 0.2;
}
.wr-pin-icon {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wr-pin-icon img {
    width: 100%;
    height: 100%;
}

/* ICON MARKERS */
.wr-icon-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 5;
}
.wr-icon-tooltip {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
    padding: 5px 10px 6px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    font-family: 'Plaax6Trial', sans-serif;
}
.wr-icon-marker:hover .wr-icon-tooltip {
    opacity: 1;
}

/* MAP CONTROLS */
.wr-map-controls {
    position: absolute;
    top: 12px; right: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    z-index: 20;
}
.wr-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px 7px;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    border-radius: 0px;
    white-space: nowrap;
    text-decoration: none;
    font-family: 'Plaax6Trial';
    line-height: 1.3em;
}
.wr-map-btn:hover { background: #fff; color: #000; }
.wr-zoom-group { display: flex; flex-direction: column; gap: 10px; }
.wr-zoom-btn {
    width: 33px; height: 33px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid var(--White);
    transition: all 0.3s;
}
.wr-zoom-btn:hover, .wr-zoom-btn:focus { background: #fff; color: #000;}
.wr-zi svg { display: block; width: 14px; height: 14px; flex-shrink: 0; }
.wr-zo svg { display: block; width: 14px; height: 2px; flex-shrink: 0; overflow: visible; }

/* TOUCH HINT OVERLAY */
.wr-touch-hint {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 15;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease;
}
.wr-touch-hint span {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    max-width: 206px;
    margin: 0 auto;
    font-family: 'Plaax6Trial';
    text-transform: uppercase;
}
.wr-touch-hint--hidden { opacity: 0; }

@media (max-width: 1025px) {
    .wr-root { flex-direction: column; height: unset !important; }
    .wr-map { height: 400px; flex: none; }
    .wr-sidebar { width: 100% !important;min-width: unset!important; min-height: 780px;}
    .wr-list{max-height: 432px;border-top: 1px solid #EAEAEA;}
    .wr-card-arrow{display: none;}
    .wr-sidebar-head { padding: 38px 30px 0; }
    .wr-filter-row { padding: 32px 30px; }
    .wr-dropdown { left: 30px; right: 30px;top:50%; }
    .wr-card { padding: 30px; }
    .wr-touch-hint { display: flex; }
    .wr-expand-btn{display: none;}
    .wr-detail-body{
        padding: 40px 30px 64px;
    }
    .wr-detail-cols{grid-template-columns: 1fr;}
}
