/*
 * Description and Reviews CSS
 *
 * Styles the description and reviews sections. The read more buttons are toggled via JS.
 */

.cpb-description-section,
.cpb-reviews-section {
    margin-bottom: 30px;
}

.cpb-section-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Description content container. When collapsed, show only a limited height; when expanded, height auto */
.cpb-description-content {
    margin-bottom: 10px;
}
.cpb-description-content.collapsed {
    max-height: 7.5em; /* approximate 5 lines */
    overflow: hidden;
}

/* Toggle button styling */
.cpb-description-toggle {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}
.cpb-read-more-description {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.cpb-description-full {
    margin-top: 10px;
}

/* Reviews list */
.cpb-reviews-list {
    margin-top: 15px;
}

/* Styling for the review container */
.cpb-review-content {
    margin-bottom: 20px;
}
.cpb-review-content .cpb-review-short {
    margin-bottom: 10px;
}
.cpb-read-more-review {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
}

/* Custom review styling */
.cpb-review-image img {
    max-width: 100px;
    height: auto;
    border-radius: 4px;
    margin-bottom: 8px;
}
.cpb-reviewer-name {
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
}
.cpb-review-rating {
    color: #f5a623;
    font-size: 1.1rem;
}
.cpb-reviews-pagination a {
    background-color: #0073aa;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 5px;
    text-decoration: none;
    font-size: 0.85rem;
}
.cpb-reviews-pagination a:hover {
    background-color: #00507a;
}