.virtual-try-on-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hand-container {
    position: relative;
    width: 300px;
    height: auto;
}

.hand-image {
    width: 100%;
    display: block;
}

.sleeve-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.sleeve-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sleeve-image {
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sleeve-image:hover {
    transform: scale(1.1);
}