/* ─── Customer Reviews ─── */
.crs-section {
    padding: 40px 20px;
    background: var(--ivory);
    font-family: 'DM Sans', sans-serif;
}

.crs-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.crs-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.crs-heading-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.crs-accent-bar {
    width: 4px;
    height: 28px;
    background: var(--accent);
    border-radius: 3px;
    flex-shrink: 0;
}

.crs-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--eerie-black);
    letter-spacing: -0.4px;
    margin: 0;
}

.crs-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.crs-score-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1.5px solid var(--linen);
    border-radius: 100px;
    padding: 5px 14px;
}

.crs-score-num {
    font-size: 15px;
    font-weight: 700;
    color: var(--eerie-black);
}

.crs-score-stars {
    color: #f59e0b;
    font-size: 12px;
    letter-spacing: 1px;
}

.crs-score-count {
    font-size: 12px;
    color: var(--gray400);
}

.crs-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--success);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.crs-btn:hover {
    background: var(--hover-success);
}

/* Layout */
.crs-layout {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    align-items: start;
}

/* Sidebar */
.crs-sidebar {
    background: var(--white);
    border: 1.5px solid var(--linen);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.crs-big-num {
    font-size: 42px;
    font-weight: 700;
    color: var(--eerie-black);
    line-height: 1;
}

.crs-big-stars {
    font-size: 14px;
    color: #f59e0b;
    letter-spacing: 2px;
    display: block;
    margin: 4px 0 2px;
}

.crs-total-label {
    font-size: 11px;
    color: var(--gray400);
}

.crs-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.crs-bar-row {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
}

.crs-bar-lbl {
    width: 10px;
    text-align: right;
    color: var(--gray600);
    font-weight: 500;
}

.crs-bar-track {
    flex: 1;
    height: 5px;
    background: var(--gray100);
    border-radius: 3px;
    overflow: hidden;
}

.crs-bar-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 3px;
}

.crs-bar-n {
    font-size: 10px;
    color: var(--gray400);
    min-width: 14px;
}

/* Grid & Cards */
.crs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.crs-card {
    background: var(--white);
    border: 1.5px solid var(--linen);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.crs-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.crs-qdeco {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 28px;
    color: var(--linen);
    font-family: Georgia, serif;
    line-height: 1;
    user-select: none;
}

.crs-card-top {
    display: flex;
    align-items: center;
    gap: 9px;
}

.crs-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.av1 {
    background: var(--primary)
}

.av2 {
    background: var(--accent)
}

.av3 {
    background: var(--success)
}

.av4 {
    background: #8b5cf6
}

.av5 {
    background: #ec4899
}

.crs-user {
    flex: 1;
    min-width: 0;
}

.crs-user-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--eerie-black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 2px;
}

.crs-stars {
    display: flex;
    gap: 1px;
}

.crs-star {
    font-size: 11px;
    color: var(--gray200);
}

.crs-star.on {
    color: #f59e0b;
}

.crs-text {
    font-size: 12.5px;
    color: var(--gray600);
    line-height: 1.65;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.crs-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid var(--gray100);
}

.crs-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--success);
}

.crs-vdot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
}

.crs-date {
    font-size: 10px;
    color: var(--gray400);
}

/* Responsive */
@media (max-width: 860px) {
    .crs-layout {
        grid-template-columns: 1fr;
    }

    .crs-sidebar {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .crs-bars {
        flex: 1;
    }

    .crs-big-num {
        font-size: 36px;
    }
}

@media (max-width: 560px) {
    .crs-section {
        padding: 28px 14px;
    }

    .crs-title {
        font-size: 18px;
    }

    .crs-grid {
        grid-template-columns: 1fr;
    }

    .crs-sidebar {
        flex-direction: column;
    }
}
