/* Tento súbor upravuje vzhľad detailu produktu a pomocných blokov. */

/* Skrytie tlačidiel Tlač a Zdieľať v detaile produktu. */
.p-detail-inner .link-icon.print,
.p-detail-inner .link-icon.share,
.p-detail-inner .link-icon.share-js {
    display: none !important;
}

/* Prenesené z online Shoptet head: za finálnu cenu doplní text s DPH. */
.price-final::after,
.p-final-price::after {
    content: " s DPH";
    font-size: 0.8em;
    font-weight: normal;
    margin-left: 3px;
}

/* Box s konzultantom v detaile produktu. */
.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;
}

/* Fotka konzultanta ostane pevná aj pri dlhšom texte. */
.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;
}

.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;
}

/* Na mobile sa box roztiahne na plnú šírku bez odsadenia. */
@media (max-width: 768px) {
    .custom-helper-box {
        width: 100%;
        margin-right: 0;
        box-sizing: border-box;
    }
}
