.hellosmaak-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #1f2933;
}

.hellosmaak-align-left .hellosmaak-rating-summary {
    justify-content: flex-start;
}

.hellosmaak-align-center .hellosmaak-rating-summary {
    justify-content: center;
}

.hellosmaak-align-right .hellosmaak-rating-summary {
    justify-content: flex-end;
}

.hellosmaak-stars {
    --hellosmaak-star-size: 20px;
    --hellosmaak-star-gap: 1px;
    --hellosmaak-star-fill: #ffc600;
    --hellosmaak-star-base: #d7dbe4;
    position: relative;
    display: inline-block;
    width: calc((var(--hellosmaak-star-size) * 5) + (var(--hellosmaak-star-gap) * 4));
    height: var(--hellosmaak-star-size);
}

.hellosmaak-stars-base,
.hellosmaak-stars-fill {
    position: absolute;
    inset: 0;
    background-repeat: repeat-x;
    background-size: calc(var(--hellosmaak-star-size) + var(--hellosmaak-star-gap)) var(--hellosmaak-star-size);
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;
    -webkit-mask-size: calc(var(--hellosmaak-star-size) + var(--hellosmaak-star-gap)) var(--hellosmaak-star-size);
    mask-size: calc(var(--hellosmaak-star-size) + var(--hellosmaak-star-gap)) var(--hellosmaak-star-size);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 1.5l2.78 6.18 6.72.55-5.1 4.62 1.5 6.67L12 15.9l-5.9 3.62 1.5-6.67-5.1-4.62 6.72-.55z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 1.5l2.78 6.18 6.72.55-5.1 4.62 1.5 6.67L12 15.9l-5.9 3.62 1.5-6.67-5.1-4.62 6.72-.55z'/%3E%3C/svg%3E");
}

.hellosmaak-stars-base {
    background-color: var(--hellosmaak-star-base);
}

.hellosmaak-stars-fill {
    background-color: var(--hellosmaak-star-fill);
    overflow: hidden;
}

.hellosmaak-review-count {
    color: var( --e-global-color-5c43758 );
    text-decoration: none;
    font-weight: 500;
}

.hellosmaak-review-count:hover,
.hellosmaak-review-count:focus {
    text-decoration: underline;
}

.hellosmaak-reviews-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hellosmaak-review-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 0.75rem;
    background-color: #ffffff;
    color: #707070;
    font-size: 0.95rem;
    line-height: 1.6;
    justify-content: space-between;
}

.hellosmaak-review-content p {
    margin: 0;
}

.hellosmaak-review-author {
    font-weight: 600;
    color: #707070;
    font-size: 0.9rem;
}

.hellosmaak-placeholder {
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: rgba(0, 102, 179, 0.08);
    color: #0b1f33;
    font-size: 0.9rem;
}

.hellosmaak-review-form {
    margin-top: 1.25rem;
}
.hellosmaak-review-form select,
.hellosmaak-review-form textarea,
.hellosmaak-review-form button {
    font: inherit;
}
.hellosmaak-review-form textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #d2d6dc;
}
.hellosmaak-review-form button {
    background-color: #0066b3;
    color: #fff;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
}
.hellosmaak-review-form button:hover { opacity: 0.9; }

@media (max-width: 1024px) {
    .hellosmaak-reviews-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hellosmaak-reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
