.mod-megamenu>.mod-megamenu--item:last-child {
    margin-left: auto;
}

.mod-megamenu>.mod-megamenu--item:last-child>.mod-megamenu--item-anchor {
    padding-right: 0;
}

.text-center {
    text-align: center !important;
    margin: 0px;
}

/* Автоматично Read More за VirtueMart описания */
.truncated-description {
    max-height: 280px; /* ≈ 400-500 символа – тествай и промени ако искаш */
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.truncated-description::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(transparent, #ffffff);
    pointer-events: none;
    z-index: 1;
}

.truncated-description.expanded {
    max-height: none;
}

.truncated-description.expanded::after {
    display: none;
}

/* Бутон стил (модерен Bootstrap) */
.vm-readmore-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px auto 15px;
    padding: 12px 28px;
    font-weight: 600;
}

.vm-readmore-btn .chevron {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vm-readmore-btn[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}
