#category-description #category-description-wrapper {
    -webkit-transition: max-height .2s ease-out;
    transition: max-height .2s ease-out;
}

#category-description #category-description-wrapper.collapsed {
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #000), to(transparent));
    -webkit-mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
    mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #000), to(transparent));
    mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
}

/* Custom tooltip pre dátum naskladnenia (náhrada za Tippy.js) */
.custom-restock-tooltip {
    position: absolute;
    z-index: 9999;
    background: #fff;
    color: #333;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1.4;
    max-width: 240px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    white-space: normal;
    text-align: center;
}
.custom-restock-tooltip.visible {
    opacity: 1;
}
.custom-restock-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #fff;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.08));
}