/* ... Previous styles ... */

/* =========================================
   Business Header Design V2 (Claimed Profile Style)
   ========================================= */
.tre-business-header {
    display: flex;
    align-items: flex-start; /* Top align logo and text */
    gap: 24px;
    background: transparent; 
    margin-bottom: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-bottom: 24px;
    border-bottom: 1px solid #e1e1e1;
}

/* Logo Column */
.tre-bh-logo-col {
    flex-shrink: 0;
}

.tre-bh-logo-placeholder, .tre-bh-logo-img {
    width: 100px; /* Larger logo as per new screenshot */
    height: 100px;
    object-fit: contain;
    border-radius: 4px;
}
.tre-bh-logo-placeholder {
    background-color: #000032; 
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Info Column */
.tre-bh-info-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px; /* Spacing between rows */
}

/* Row 1: Badge */
.tre-bh-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #dcdce6;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 13px;
    color: #454554;
    font-weight: 500;
    width: fit-content;
}
.tre-check-icon {
    color: #00b67a; /* Trustpilot green for checkmark */
    width: 16px;
    height: 16px;
}

/* Row 2: Name */
.tre-bh-name {
    margin: 4px 0;
    font-size: 32px; /* Large bold title */
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

/* Row 3: Stats */
.tre-bh-stats-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.tre-bh-reviews-count {
    font-weight: 500;
    color: #1a1a1a;
    border-bottom: 2px solid #1a1a1a; /* Underlined count */
    line-height: 1.4;
    cursor: pointer;
}

.tre-bh-separator {
    color: #1a1a1a;
    font-weight: bold;
}

.tre-bh-stars {
    display: flex;
    gap: 2px;
}

/* Update Header Stars to be larger boxes */
.tre-bh-stars .tre-star-icon {
    width: 32px;
    height: 32px;
    font-size: 20px;
}

.tre-bh-score {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.tre-info-icon {
    color: #454554;
    font-size: 20px;
    cursor: help;
}

/* ... Preserve Grid, Card, Layout styles below ... */

/* Container Grid */
.tre-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.tre-section-title {
    margin-bottom: 24px;
    text-align: center;
}

/* Grid Style */
.tre-reviews-grid.tre-style-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Masonry Style */
.tre-reviews-grid.tre-style-masonry {
    column-count: 3;
    column-gap: 24px;
    display: block;
}

.tre-reviews-grid.tre-style-masonry .tre-review-card {
    display: inline-block;
    width: 100%;
    margin-bottom: 24px;
    break-inside: avoid;
}

/* Review Card Header */
.tre-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.tre-avatar-placeholder { width: 40px; height: 40px; background-color: #731a98; color: white; font-size: 18px; font-weight: 500; border-radius: 50%; display: flex; align-items: center; justify-content: center; line-height: 1; flex-shrink: 0; }
.tre-avatar-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.tre-meta-wrapper { display: flex; flex-direction: column; justify-content: center; line-height: 1.2; }
.tre-author-name { font-weight: 700; font-size: 14px; color: #1a1a1a; }
.tre-time-ago { font-size: 12px; color: #454554; }

.tre-rating-row { margin-bottom: 12px; }
.tre-stars-box { display: inline-flex; gap: 2px; }
.tre-star-icon { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; font-size: 14px; }
.tre-star-icon.filled { background-color: #00b67a; color: white; }
.tre-star-icon.empty { background-color: #dcdce6; color: white; }

.tre-headline { font-size: 16px; font-weight: 700; margin: 0 0 8px 0; color: #1a1a1a; }
.tre-content-text { font-size: 14px; line-height: 1.4; color: #1a1a1a; }
.tre-see-more-link { color: #445668; text-decoration: none; font-weight: 500; margin-left: 5px; cursor: pointer; }
.tre-see-more-link:hover { text-decoration: underline; }

.tre-load-more-container { text-align: center; margin-top: 30px; }
.tre-load-more-btn { background-color: #e8f0fe !important; color: #1967d2 !important; border: 1px solid transparent !important; border-radius: 99px; padding: 12px 32px; font-size: 14px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.tre-load-more-btn:hover { background-color: #d2e3fc !important; color: #174ea6 !important; }
.tre-review-card { background: #fff; border: 1px solid #e1e1e1; border-radius: 8px; padding: 24px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); height: auto; box-sizing: border-box; }

@media (max-width: 992px) { .tre-reviews-grid.tre-style-grid { grid-template-columns: repeat(2, 1fr); } .tre-reviews-grid.tre-style-masonry { column-count: 2; } }
@media (max-width: 600px) { .tre-reviews-grid.tre-style-grid { grid-template-columns: 1fr; } .tre-reviews-grid.tre-style-masonry { column-count: 1; } .tre-review-card { padding: 16px; } .tre-business-header { flex-direction: column; align-items: flex-start; gap: 15px; } }

/* Modal Styles */
.tre-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 99999; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.tre-modal-overlay.open { display: flex; opacity: 1; }
.tre-modal-content-card { background: #fff; width: 90%; max-width: 600px; border-radius: 8px; padding: 24px; position: relative; transform: translateY(20px); transition: transform 0.3s ease; }
.tre-modal-overlay.open .tre-modal-content-card { transform: translateY(0); }
.tre-modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; border: none; background: #f5f5f5; font-size: 20px; line-height: 1; cursor: pointer; color: #1a1a1a; display: flex; align-items: center; justify-content: center; }
.tre-modal-close:hover { background: #e5e5e5; }
.tre-modal-header { display: flex; gap: 12px; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 16px; align-items: center; }
.tre-modal-author-info h3 { margin: 0; font-size: 16px; font-weight: 700; }
.tre-modal-rating-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.tre-tag { display: inline-block; background: #f2f2f5; font-size: 11px; padding: 4px 8px; border-radius: 4px; color: #444; font-weight: 600; margin-right: 8px; }
.tre-modal-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid #eee; display: flex; gap: 24px; font-size: 13px; font-weight: 600; color: #555; }
.tre-action-btn { cursor: pointer; display: flex; align-items: center; gap: 6px; }
