/* Container and wrapper styles */
.fc-image-hotspot-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.fc-image-hotspot-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.fc-image-hotspot-main {
    display: block;
    width: 100%;
    height: auto;
}

/* Hotspot styles */
.fc-hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Logo styles */
.fc-hotspot-logo {
    display: block;
    width: var(--logo-width-desktop);
    height: auto;
    transition: transform 0.3s ease;
}

/* Logo wrapper */
.fc-hotspot-logo-wrapper {
    display: block;
}

/* Hover effects */
.fc-hotspot:hover .fc-hotspot-logo {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .fc-hotspot-logo {
        width: var(--logo-width-tablet);
    }
}

@media (max-width: 549px) {
    .fc-hotspot-logo {
        width: var(--logo-width-mobile);
    }
}

/* Button/Link reset */
.fc-hotspot-button,
.fc-hotspot-link {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
}
