/* --- 1. OPRAVA OBRÁZKA PRODUKTU --- */
.p-main-image { 
    display: flex !important; 
    align-items: center; 
    justify-content: center; 
    height: 480px !important; 
    overflow: hidden !important; 
    background: #fff !important; 
}
.p-main-image img { 
    display: block !important; 
    width: 100% !important; 
    height: auto !important; 
    max-height: 500px; 
    object-fit: contain; 
}
/* Likvidácia zoomu */
.mousetrap, .cloud-zoom-lens, #cloud-zoom-big { 
    display: none !important; 
}

/* --- 2. SKRYTIE LEN PRÍPLATKOVÝCH SELECTOV --- */
/* Skryjeme len tie selecty, ktoré sme úspešne nahradili rádiobuttonmi */
select.has-custom-radios { 
    display: none !important; 
}

/* --- 3. RÁDIO BUTTONY --- */
.custom-radio-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 8px 0 15px 0;
    padding: 10px;
    background: #fdfdfd;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
}
.radio-box {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}
.radio-box input {
    margin-right: 6px;
    width: 17px;
    height: 17px;
    cursor: pointer;
    accent-color: #000;
}
.radio-box label { 
    cursor: pointer; 
    margin: 0; 
    font-weight: 400; 
}