/* Plošné a bezpečné skrytie dodávateľských obrázkov a nadpisov v popise */
#description h3.padding-bottom-10, 
#productDescription h3.padding-bottom-10,
.p-detail-inner h3.padding-bottom-10 {
    display: none !important;
}

/* Skryjeme akýkoľvek obrázok, ktorý nasleduje hneď po skrytom nadpise */
#description h3.padding-bottom-10 + img,
#productDescription h3.padding-bottom-10 + img,
.p-detail-inner h3.padding-bottom-10 + img,
#description h3.padding-bottom-10 + p img,
#productDescription h3.padding-bottom-10 + p img {
    display: none !important;
}

/* --- VZHĽAD MODÁLNEHO OKNA --- */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.custom-modal-content {
    background: #fff;
    max-width: 500px;
    width: 90%;
    padding: 25px;
    border-radius: 10px;
    position: relative;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.custom-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    color: #333;
}

#modal-body-content h3 {
    display: block !important;
    margin: 10px 0;
    font-size: 1.4em;
    color: #000;
}

#modal-body-content img {
    display: block !important;
    max-width: 100%;
    height: auto;
    margin: 15px auto 0 auto;
}