/* ===========================================================================
   Popup okno – vpravo dole, samostatný modul
   =========================================================================== */
#wt-popup-fixed {
    position: fixed;
    right: 70px;
    bottom: 70px;
    z-index: 9999;
    line-height: 0;
    border-radius: 10px;
    box-shadow: 0px 10px 40px 0px #0000004D;

    animation: wt-popup-in 0.35s ease-out;
    font-family: inherit;
}

@keyframes wt-popup-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

#wt-popup-fixed .wt-popup-foto {
    display: block;
    max-width: 360px;
    max-height: 360px;
    width: auto;
    height: auto;
    border-radius: 10px;
}

#wt-popup-fixed .wt-popup-zavrit {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 6px;
    height: 6px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

#wt-popup-fixed .wt-popup-zavrit img {
    width: 6px;
    height:  6px;
    display: block;
    min-width: 6px;
}

#wt-popup-fixed .wt-popup-telo {
    padding: 0;
}

#wt-popup-fixed .wt-popup-nazev {
    display: none;
}

#wt-popup-fixed .wt-popup-button {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 156px;
    height: 44px;
    background: #fac01f;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    box-sizing: border-box;
    transition: background 0.15s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
}

#wt-popup-fixed .wt-popup-button span {
    display: inline-block;
}

#wt-popup-fixed .wt-popup-button img {
    width: 4px;
    height: 6px;
    display: block;
}

#wt-popup-fixed .wt-popup-button:hover {
    background: #e6a800;
    color: #000;
}

#wt-popup-fixed.hidden {
    display: none;
}

@media (max-width: 480px) {
    #wt-popup-fixed {
        right: 10px;
        bottom: 10px;
    }
    #wt-popup-fixed .wt-popup-foto {
        max-width: calc(100vw - 20px);
    }
}
