/* Skrytie tlačidla Tlač a Zdieľať */
.p-detail-inner .link-icon.print,
.p-detail-inner .link-icon.share,
.p-detail-inner .link-icon.share-js {
    display: none !important;
}

/* Štýl pre konzultanta */
.custom-helper-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 1px;
    margin-bottom: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    font-family: inherit;
    
    /* Pôvodná šírka pre desktop */
    width: 52%;
    margin-right: 22px;
}

/* TOTO JE NOVÉ: Zabezpečí, aby sa obal fotky nestláčal */
.helper-avatar {
    flex-shrink: 0;
}

.helper-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: block; /* Pre istotu */
}

.helper-content {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.helper-title {
    font-weight: bold;
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
}

.helper-phone {
    font-weight: bold;
    font-size: 15px;
    color: #e60000;
}

.helper-hours {
    font-size: 12px;
    color: #777;
}

/* TOTO JE NOVÉ: Oprava pre mobily */
/* Na obrazovkách menších ako 768px (tablety a mobily) bude box na celú šírku */
@media (max-width: 768px) {
    .custom-helper-box {
        width: 100%;     /* Roztiahne sa na plnú šírku */
        margin-right: 0; /* Zruší odsadenie sprava */
        box-sizing: border-box; /* Aby padding nerozbil šírku */
    }
}