.woocommerce-product-gallery__wrapper .images{
    width: 100% !important;
}

a.woocommerce-product-gallery__trigger {
    display: none !important;
}

.dmd-buy-all-button {
    width: fit-content;
    display: inline;
    display: inline-block;
    float: none;
    vertical-align: middle;
    margin: 0px !important;
    padding: 13px 50px;
    font-size: 18px;
    color: white;
    background-color: black;
    border: none;
    cursor: pointer;

}

.points-area .point {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 50, 50, 0.7);
    border: 2px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
}

.points-area .point:hover {
    transform: translate(-50%, -50%) scale(1.2);
    background: rgba(255, 0, 0, 0.9);
}

.points-area .point-label {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    transform: translate(-50%, 10px);
    white-space: nowrap;
    pointer-events: none;
}