/* ============================================================
   MEHTA SOCIAL PROOF & URGENCY — Complete CSS
   ============================================================ */
:root {
    --msp-green:      #0D2818;
    --msp-green-mid:  #1A4A2E;
    --msp-green-light:#2D7A4F;
    --msp-gold:       #C9A84C;
    --msp-gold-light: #E8C96A;
    --msp-cream:      #FAFAF7;
    --msp-white:      #FFFFFF;
    --msp-text:       #1A1A1A;
    --msp-muted:      #666666;
    --msp-red:        #E53E3E;
    --msp-orange:     #DD6B20;
    --msp-shadow:     0 4px 24px rgba(13,40,24,0.12);
    --msp-radius:     12px;
}

/* ─── RATING SUMMARY BAR ──────────────────────────────────── */
.msp-rating-summary {
    display: flex;
    gap: 32px;
    align-items: center;
    background: var(--msp-cream);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--msp-radius);
    padding: 20px 24px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.msp-rating-big {
    text-align: center;
    flex-shrink: 0;
}

.msp-rating-number {
    display: block;
    font-size: 52px;
    font-weight: 800;
    color: var(--msp-green);
    line-height: 1;
}

.msp-rating-stars-big {
    color: #F5A623;
    font-size: 22px;
    letter-spacing: 3px;
    margin: 4px 0;
}

.msp-rating-count {
    font-size: 12px;
    color: var(--msp-muted);
    font-weight: 500;
}

.msp-rating-bars {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.msp-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.msp-bar-label {
    width: 32px;
    text-align: right;
    font-weight: 600;
    color: var(--msp-green);
    flex-shrink: 0;
}

.msp-bar-track {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.msp-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--msp-gold) 0%, #F5A623 100%);
    border-radius: 4px;
    transition: width 1s ease;
}

.msp-bar-pct {
    width: 32px;
    font-size: 12px;
    color: var(--msp-muted);
    flex-shrink: 0;
}

/* ─── REVIEWS LIST ────────────────────────────────────────── */
.msp-reviews-section {
    margin: 32px 0;
}

.msp-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.msp-reviews-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--msp-green);
    margin: 0;
}

.msp-reviews-count {
    font-size: 14px;
    font-weight: 400;
    color: var(--msp-muted);
}

.msp-sort-note {
    font-size: 12px;
    color: var(--msp-muted);
}

.msp-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.msp-review-item {
    background: var(--msp-white);
    border: 1px solid rgba(13,40,24,0.08);
    border-radius: var(--msp-radius);
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.msp-review-item:hover {
    box-shadow: var(--msp-shadow);
    border-color: rgba(201,168,76,0.25);
}

.msp-review-hidden {
    display: none;
}

.msp-ri-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.msp-ri-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.msp-ri-meta { flex: 1; }

.msp-ri-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--msp-green);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.msp-verified {
    font-size: 10.5px;
    background: #e8f5ee;
    color: #1a7a3a;
    border: 1px solid #b8e0c4;
    border-radius: 10px;
    padding: 2px 8px;
    font-weight: 600;
}

.msp-ri-location {
    font-size: 12px;
    color: var(--msp-muted);
    margin-top: 2px;
}

.msp-ri-date {
    font-size: 11.5px;
    color: #aaa;
    flex-shrink: 0;
    margin-left: auto;
}

.msp-ri-stars {
    margin-bottom: 8px;
    font-size: 16px;
    letter-spacing: 1px;
}

.msp-star-full  { color: #F5A623; }
.msp-star-empty { color: #ddd; }

.msp-ri-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--msp-green);
    margin-bottom: 8px;
}

.msp-ri-body {
    font-size: 13.5px;
    color: var(--msp-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.msp-ri-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.msp-ri-product {
    font-size: 11.5px;
    background: rgba(13,40,24,0.06);
    color: var(--msp-green);
    border-radius: 20px;
    padding: 3px 12px;
    font-weight: 600;
    border: 1px solid rgba(13,40,24,0.1);
}

.msp-ri-helpful {
    font-size: 11.5px;
    color: var(--msp-muted);
}

/* Load More */
.msp-load-more-wrap {
    text-align: center;
    margin-top: 20px;
}

.msp-load-more-btn {
    background: none;
    border: 2px solid var(--msp-green);
    color: var(--msp-green);
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.msp-load-more-btn:hover {
    background: var(--msp-green);
    color: var(--msp-gold-light);
}

.msp-arrow { transition: transform 0.3s ease; }
.msp-load-more-btn:hover .msp-arrow { transform: translateY(3px); }

/* ─── URGENCY BLOCK ───────────────────────────────────────── */
.msp-viewing-now {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--msp-text);
    background: #fff8e6;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 12px;
    font-weight: 500;
}

.msp-viewing-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: msp-blink 1.5s infinite;
}

@keyframes msp-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.msp-urgency-block {
    background: #fff;
    border: 1px solid rgba(13,40,24,0.1);
    border-radius: var(--msp-radius);
    padding: 18px;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Stock bar */
.msp-stock-bar { }

.msp-stock-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--msp-red);
    margin-bottom: 8px;
}

.msp-stock-fire { font-size: 16px; }

.msp-stock-track {
    height: 8px;
    background: #fee2e2;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}

.msp-stock-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--msp-red) 0%, var(--msp-orange) 100%);
    border-radius: 4px;
}

.msp-stock-sold {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--msp-muted);
}

.msp-sold-dot {
    width: 6px;
    height: 6px;
    background: var(--msp-red);
    border-radius: 50%;
}

/* Offer timer */
.msp-offer-timer {
    background: linear-gradient(135deg, var(--msp-green) 0%, var(--msp-green-mid) 100%);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.msp-offer-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--msp-gold-light);
    flex-shrink: 0;
}

.msp-timer-boxes {
    display: flex;
    align-items: center;
    gap: 6px;
}

.msp-timer-unit {
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 6px 10px;
    text-align: center;
    min-width: 48px;
}

.msp-timer-num {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.msp-timer-text {
    display: block;
    font-size: 9px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.msp-timer-colon {
    font-size: 20px;
    font-weight: 800;
    color: var(--msp-gold-light);
    margin-bottom: 12px;
}

/* Recent buyers */
.msp-recent-buyers {
    display: flex;
    align-items: center;
    gap: 10px;
}

.msp-buyers-avatars {
    display: flex;
    align-items: center;
}

.msp-buyer-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.msp-buyers-text {
    font-size: 13px;
    color: var(--msp-text);
}

/* Delivery badge */
.msp-delivery-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--msp-text);
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 8px 14px;
}

/* ─── MEDIA / CERTIFICATIONS ──────────────────────────────── */
.msp-media-section {
    background: var(--msp-green);
    padding: 24px 20px;
    margin: 0;
}

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

.msp-media-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.msp-media-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.msp-media-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
    gap: 2px;
}

.msp-logo-text {
    font-size: 14px;
    font-weight: 800;
    color: var(--msp-gold-light);
    letter-spacing: 0.5px;
}

.msp-logo-sub {
    font-size: 10px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.msp-media-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* Stats section */
.msp-stats-section {
    background: linear-gradient(135deg, var(--msp-green) 0%, var(--msp-green-mid) 100%);
    padding: 48px 20px;
}

.msp-stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.msp-stat-item {
    text-align: center;
    padding: 16px 32px;
    flex: 1;
    min-width: 140px;
}

.msp-stat-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.msp-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--msp-gold-light);
    line-height: 1;
    margin-bottom: 6px;
}

.msp-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.msp-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* Certifications */
.msp-certs-section {
    padding: 32px 0;
    margin: 20px 0;
}

.msp-certs-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--msp-green);
    margin-bottom: 20px;
    text-align: center;
}

.msp-certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.msp-cert-card {
    background: var(--msp-cream);
    border: 1px solid rgba(13,40,24,0.08);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.msp-cert-card:hover {
    border-color: var(--msp-gold);
    box-shadow: 0 4px 16px rgba(13,40,24,0.1);
    transform: translateY(-2px);
}

.msp-cert-icon {
    font-size: 26px;
    margin-bottom: 8px;
}

.msp-cert-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--msp-green);
    margin-bottom: 4px;
}

.msp-cert-desc {
    font-size: 11.5px;
    color: var(--msp-muted);
    line-height: 1.5;
}

/* ─── BEFORE/AFTER RESULTS ────────────────────────────────── */
.msp-results-section {
    background: linear-gradient(135deg, #f9f5ec 0%, #f0ead6 100%);
    padding: 64px 20px;
}

.msp-results-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.msp-results-header {
    text-align: center;
    margin-bottom: 44px;
}

.msp-section-tag {
    display: inline-block;
    background: rgba(13,40,24,0.08);
    color: var(--msp-green);
    border: 1px solid rgba(13,40,24,0.15);
    border-radius: 20px;
    padding: 4px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.msp-results-header h2 {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--msp-green);
    margin: 0 0 10px;
}

.msp-results-header p {
    font-size: 15px;
    color: var(--msp-muted);
    margin: 0;
}

.msp-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.msp-result-card {
    background: var(--msp-white);
    border-radius: var(--msp-radius);
    overflow: hidden;
    box-shadow: var(--msp-shadow);
    transition: transform 0.3s ease;
}

.msp-result-card:hover {
    transform: translateY(-4px);
}

.msp-result-header {
    padding: 18px 20px;
    color: #fff;
}

.msp-result-person {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.msp-result-product {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.msp-result-duration {
    font-size: 12px;
    color: var(--msp-gold-light);
    font-weight: 600;
}

.msp-result-body {
    padding: 18px 20px;
}

.msp-before-after {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

.msp-before-col, .msp-after-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.msp-ba-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 4px;
}

.msp-before-label {
    background: #fee2e2;
    color: var(--msp-red);
}

.msp-after-label {
    background: #dcfce7;
    color: #16a34a;
}

.msp-ba-item {
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 6px;
    line-height: 1.4;
}

.msp-before-item {
    background: #fff5f5;
    color: #c53030;
    border-left: 3px solid #fc8181;
}

.msp-after-item {
    background: #f0fff4;
    color: #276749;
    border-left: 3px solid #68d391;
}

.msp-ba-arrow {
    font-size: 20px;
    color: var(--msp-gold);
    font-weight: 700;
    margin-top: 28px;
    flex-shrink: 0;
}

.msp-result-quote {
    font-size: 12.5px;
    color: var(--msp-muted);
    font-style: italic;
    line-height: 1.6;
    border-top: 1px solid rgba(13,40,24,0.08);
    padding-top: 12px;
}

.msp-results-disclaimer {
    text-align: center;
    font-size: 11px;
    color: #aaa;
    font-style: italic;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .msp-results-grid { grid-template-columns: repeat(2, 1fr); }
    .msp-certs-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .msp-results-grid { grid-template-columns: 1fr; }
    .msp-certs-grid   { grid-template-columns: repeat(2, 1fr); }
    .msp-rating-summary { flex-direction: column; }
    .msp-stats-inner  { gap: 0; }
    .msp-stat-item    { padding: 12px 16px; min-width: 120px; }
    .msp-stat-divider { display: none; }
    .msp-media-logos  { gap: 0; }
    .msp-media-logo   { padding: 8px 12px; }
    .msp-media-divider { display: none; }
    .msp-offer-timer  { flex-direction: column; gap: 10px; }
    .msp-before-after { flex-direction: column; }
    .msp-ba-arrow     { transform: rotate(90deg); margin: 0 auto; }
}

@media (max-width: 480px) {
    .msp-certs-grid { grid-template-columns: 1fr; }
}
