.hs-wrapper-4ed9a4d5 {
    position: relative;
    display: inline-block;
    max-width: 100%;
    line-height: 0;
}

.hs-base-img-4ed9a4d5 {
    width: 100%;
    height: auto;
    display: block;
}

.hs-point-4ed9a4d5 {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* Layer Control Classes */
.hs-layer-below-4ed9a4d5 {
    z-index: 2;
}

.hs-layer-above-4ed9a4d5 {
    z-index: 10;
}

.hs-point-4ed9a4d5:hover,
.hs-point-4ed9a4d5.is-active,
.hs-point-4ed9a4d5.is-hovered {
    z-index: 100;
}

.hs-marker-4ed9a4d5 {
    width: 20px;
    height: 20px;
    background-color: #ff5722; /* Default */
    border-radius: 50%;
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease;
}

.hs-marker-4ed9a4d5::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: rgba(255, 87, 34, 0.5); /* Default */
    animation: hs-pulse-4ed9a4d5 2s infinite ease-out;
    z-index: -1;
}

.hs-point-4ed9a4d5:hover .hs-marker-4ed9a4d5,
.hs-point-4ed9a4d5.is-active .hs-marker-4ed9a4d5 {
    transform: scale(1.2);
}

.hs-tooltip-4ed9a4d5 {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    color: #333333;
    padding: 15px;
    border-radius: 8px;
    width: max-content;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 9999; /* Force tooltip above everything */
    pointer-events: none;
    line-height: 1.5;
    
    /* Layout */
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Tooltip Positioning Classes */
.hs-tooltip-4ed9a4d5.is-bottom {
    bottom: auto;
    top: calc(100% + 15px);
    transform: translateX(-50%) translateY(-10px);
}
.hs-point-4ed9a4d5:hover .hs-tooltip-4ed9a4d5.is-bottom,
.hs-point-4ed9a4d5.is-active .hs-tooltip-4ed9a4d5.is-bottom {
    transform: translateX(-50%) translateY(0);
}

.hs-tooltip-4ed9a4d5.is-left {
    left: 0;
    transform: translateX(0) translateY(10px);
}
.hs-point-4ed9a4d5:hover .hs-tooltip-4ed9a4d5.is-left,
.hs-point-4ed9a4d5.is-active .hs-tooltip-4ed9a4d5.is-left {
    transform: translateX(0) translateY(0);
}

.hs-tooltip-4ed9a4d5.is-left.is-bottom {
    transform: translateX(0) translateY(-10px);
}
.hs-point-4ed9a4d5:hover .hs-tooltip-4ed9a4d5.is-left.is-bottom,
.hs-point-4ed9a4d5.is-active .hs-tooltip-4ed9a4d5.is-left.is-bottom {
    transform: translateX(0) translateY(0);
}

.hs-tooltip-4ed9a4d5.is-right {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(10px);
}
.hs-point-4ed9a4d5:hover .hs-tooltip-4ed9a4d5.is-right,
.hs-point-4ed9a4d5.is-active .hs-tooltip-4ed9a4d5.is-right {
    transform: translateX(0) translateY(0);
}

.hs-tooltip-4ed9a4d5.is-right.is-bottom {
    transform: translateX(0) translateY(-10px);
}
.hs-point-4ed9a4d5:hover .hs-tooltip-4ed9a4d5.is-right.is-bottom,
.hs-point-4ed9a4d5.is-active .hs-tooltip-4ed9a4d5.is-right.is-bottom {
    transform: translateX(0) translateY(0);
}

/* Arrows */
.hs-tooltip-4ed9a4d5::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

.hs-tooltip-4ed9a4d5.is-bottom::after {
    top: auto;
    bottom: 100%;
    border-color: transparent transparent #ffffff transparent;
}

.hs-tooltip-4ed9a4d5.is-left::after {
    left: 20px;
    transform: none;
}

.hs-tooltip-4ed9a4d5.is-right::after {
    left: auto;
    right: 20px;
    transform: none;
}

/* Trigger visibility */
.hs-point-4ed9a4d5:hover .hs-tooltip-4ed9a4d5,
.hs-point-4ed9a4d5.is-active .hs-tooltip-4ed9a4d5,
.hs-point-4ed9a4d5.is-hovered .hs-tooltip-4ed9a4d5 {
    opacity: 1;
    visibility: visible;
}

.hs-point-4ed9a4d5:hover .hs-tooltip-4ed9a4d5:not(.is-bottom):not(.is-left):not(.is-right),
.hs-point-4ed9a4d5.is-active .hs-tooltip-4ed9a4d5:not(.is-bottom):not(.is-left):not(.is-right),
.hs-point-4ed9a4d5.is-hovered .hs-tooltip-4ed9a4d5:not(.is-bottom):not(.is-left):not(.is-right) {
    transform: translateX(-50%) translateY(0);
}

.hs-tooltip-img-4ed9a4d5 {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    display: block;
}

.hs-tooltip-content-wrapper-4ed9a4d5 {
    flex-grow: 1;
    min-width: 0; /* Important for text truncation to work inside flex items */
}

.hs-tooltip-title-4ed9a4d5 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
    white-space: normal;
}

.hs-tooltip-desc-4ed9a4d5 {
    font-size: 13px;
    opacity: 0.9;
    white-space: normal;
}

@keyframes hs-pulse-4ed9a4d5 {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .hs-tooltip-4ed9a4d5 {
        width: 250px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .hs-tooltip-img-4ed9a4d5 {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
}
