/* Manufacturer description styles */
.sw100.tw75 p,
.sw100.tw75 li {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.sw100.tw75 h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px;
    color: #222;
}

.sw100.tw75 ul {
    list-style: disc;
    padding-left: 20px;
    margin: 10px 0;
}

.sw100.tw75 li {
    margin-bottom: 6px;
}

.sw100.tw75 p {
    margin-bottom: 12px;
}

/* Collapse/expand for long descriptions */
.desc-wrap {
    position: relative;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-bottom: 30px;
}

.desc-wrap.collapsed {
    max-height: 200px;
}

.desc-wrap.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
}

.desc-toggle {
    display: none;
    margin-bottom: 30px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #800020;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
}

.desc-toggle:hover {
    color: #a3002e;
}


/* Top rated block */
.top-rated-block {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 20px 24px 16px;
    margin-bottom: 30px;
}

.top-rated-block > h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin: 0 0 15px;
}

@media (max-width: 767px) {
    .top-rated-block {
        padding: 16px 12px 12px;
        border-radius: 8px;
    }
}
