.arh-widget-container-097f1edb {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
    border-radius: 12px;
}

.arh-viewport {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}

.arh-base-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.arh-hotspots-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.arh-hotspot-item {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    z-index: 10;
}

/* Markers */
.arh-marker {
    position: relative;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 11;
}

.arh-hotspot-item.is-active .arh-marker {
    transform: scale(1.15);
}

/* Tooltip / Popover */
.arh-tooltip {
    position: absolute;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.85);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: 12;
    pointer-events: auto;
}

.arh-tooltip.is-revealed {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Placements */
.arh-placement-top {
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translate(-50%, 10px) scale(0.85);
}
.arh-placement-top.is-revealed {
    transform: translate(-50%, 0) scale(1);
}

.arh-placement-bottom {
    top: calc(100% + 10px);
    left: 50%;
    transform: translate(-50%, -10px) scale(0.85);
}
.arh-placement-bottom.is-revealed {
    transform: translate(-50%, 0) scale(1);
}

.arh-placement-left {
    right: calc(100% + 10px);
    top: 50%;
    transform: translate(10px, -50%) scale(0.85);
}
.arh-placement-left.is-revealed {
    transform: translate(0, -50%) scale(1);
}

.arh-placement-right {
    left: calc(100% + 10px);
    top: 50%;
    transform: translate(-10px, -50%) scale(0.85);
}
.arh-placement-right.is-revealed {
    transform: translate(0, -50%) scale(1);
}

/* Tooltip internal styling */
.arh-tooltip-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.arh-tooltip-media-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.arh-t-img {
    max-width: 45px;
    max-height: 45px;
    object-fit: cover;
    border-radius: 4px;
}

.arh-t-logo {
    max-height: 20px;
    object-fit: contain;
}

.arh-tooltip-title {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.arh-tooltip-desc {
    font-size: 11px;
    line-height: 1.3;
    margin: 0;
}
