/* Skryť farby v detaile */
.p-detail-inner .p-short-description .farby-vysivky {
    display: none !important;
}

/* Tlačidlo farby */
.farby-wrapper {
    text-align: left;
    padding: 10px 0;
}

.farby-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ded4cc78;
    color: #ffffff;
    padding: 8px 11px;
    border-radius: 4px;
    border: 2px solid #895b1c;
    cursor: pointer;
    font-family: "futura-pt-bold", sans-serif;
    font-size: 14px;
    transition: background-color 0.3s;
}

.farby-button:hover {
    background-color: #be854466;
}

.farby-button img {
    width: 36px;
    height: 35px;
    flex-shrink: 0;
}

.farby-button span {
    cursor: pointer;
    color: #895b1c;
    font-weight: 600;
}

/* Riadok s tlačidlom */
tr.farby-row td {
    padding: 15px 0 !important;
    border: wheat;
    text-align: center;
}


/* Obsah popupu */
.farby-vysivky {
    margin-bottom: 32px;
    max-height: 70vh;
    overflow: auto;
    scrollbar-width: thin;
}

.farby-vysivky img {
    padding: 10px;
}

.farby-popup div {
    margin-bottom: 32px;
    max-height: 70vh;
    overflow: auto;
    scrollbar-width: thin;
    margin: 0 auto;
    text-align: center;
}

/* Krížik na zatvorenie */
.krizek {
    position: absolute;
    width: 28px;
    height: 28px;
    right: 12px;
    top: 12px;
    background: url(/user/documents/upload/fonty/cancel.svg) 50% no-repeat;
    cursor: pointer;
}

/* Overlay (tmavé pozadie) */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(121, 85, 72, 0.42);
    z-index: 100;
}

/* Desktop popup */
@media (min-width: 769px) {
    .farby-popup {
        position: fixed;
        top: 20px;
        left: 50%;
        width: 870px;
        margin-left: -435px;
        z-index: 101;
        background-color: #ffffff;
        border-radius: 6px;
        padding: 32px 32px 0 32px;
    }
}

/* Mobile popup */
@media (max-width: 768px) {
    .farby-popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        z-index: 101;
        background-color: #fff;
        border-radius: 6px;
        padding: 32px 32px 0 32px;
    }
    
    .popup-overlay {
        z-index: 100;
    }
    
    /* Roztiahni riadok */
    tr.farby-row {
        width: 100% !important;
        display: block !important;
    }
    
    /* Roztiahni bunku td */
    tr.farby-row td {
        width: 100% !important;
        display: block !important;
        padding: 10px 0 !important;
    }
    
    /* Roztiahni wrapper */
    .farby-wrapper {
        width: 100% !important;
        text-align: center;
        padding: 10px 0;
    }
    
    /* Roztiahni tlačidlo na celú šírku */
    .farby-button {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        box-sizing: border-box;
    }
    
    .farby-button:hover {
        background-color: #ded4cc78;
    }
}
