/**
 * Hoffmeister Klickbare Produktteile Styles
 */

.hoffmeister-klickbare-produktteile {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.hkp-image-container {
    position: relative;
    width: 100%;
    display: inline-block;
    line-height: 0;
}

.hkp-image {
    width: 100%;
    height: auto;
    display: block;
}

.hkp-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #A066FF;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: 10;
}

.hkp-dot:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.hkp-dot:active {
    transform: translate(-50%, -50%) scale(0.9);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .hkp-dot {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 480px) {
    .hkp-dot {
        width: 14px;
        height: 14px;
    }
}
