/* =====================================================================
   rystal.shop - Verified Customer Reviews
   Hosted at: https://rystal.shop/styles/reviews.css
   Built: 2026-04-27 09:21
   ===================================================================== */

.rsg-section {
    --rsg-text: #ffffff;
    --rsg-text-dim: rgba(255, 255, 255, 0.72);
    --rsg-text-muted: rgba(255, 255, 255, 0.48);
    --rsg-accent-1: #a78bfa;
    --rsg-accent-2: #60a5fa;
    --rsg-accent-3: #f472b6;
    --rsg-star: #fbbf24;
    --rsg-verified: #34d399;

    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    color: var(--rsg-text);
    background: transparent;
    padding: 56px 0;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .rsg-section *,
  .rsg-section *::before,
  .rsg-section *::after { box-sizing: border-box; }

  .rsg-inner {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
  }

  .rsg-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rsg-text-dim);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 22px;
  }
  .rsg-eyebrow svg {
    width: 12px;
    height: 12px;
    color: var(--rsg-verified);
  }

  .rsg-title {
    font-size: clamp(30px, 4.2vw, 42px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 0 0 14px;
    color: var(--rsg-text);
  }
  .rsg-title em {
    font-style: normal;
    color: var(--rsg-text-dim);
    font-weight: 500;
  }
  .rsg-sub {
    font-size: 15px;
    color: var(--rsg-text-dim);
    margin: 0 auto 40px;
    max-width: 540px;
    line-height: 1.5;
    font-weight: 400;
  }

  .rsg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
  }

  .rsg-card {
    position: relative;
    border-radius: 20px;
    padding: 28px 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s cubic-bezier(.2,.8,.2,1),
                border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .rsg-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.16);
  }

  /* Top corner shimmer disabled — kept class so HTML doesn't error */
  .rsg-card-shimmer { display: none; }

  .rsg-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
  }
  .rsg-stars svg {
    width: 15px;
    height: 15px;
    fill: var(--rsg-star);
  }

  .rsg-quote {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.25;
    color: var(--rsg-text);
    margin: 0 0 10px;
  }
  .rsg-body {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--rsg-text-dim);
    margin: 0 0 22px;
    flex-grow: 1;
    font-weight: 400;
  }
  .rsg-body strong {
    color: var(--rsg-text);
    font-weight: 600;
  }

  .rsg-meta {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .rsg-avatar {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rsg-accent-1), var(--rsg-accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #0a0a1a;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .rsg-author {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex-grow: 1;
  }
  .rsg-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--rsg-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .rsg-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    color: var(--rsg-verified);
    margin-top: 2px;
    letter-spacing: 0.02em;
  }
  .rsg-verified svg { width: 12px; height: 12px; }

  .rsg-product {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--rsg-text);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 7px 12px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
    margin-top: 16px;
    align-self: flex-start;
  }
  .rsg-product:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateX(2px);
  }
  .rsg-product svg {
    width: 11px;
    height: 11px;
    transition: transform 0.25s ease;
  }
  .rsg-product:hover svg { transform: translate(2px, -2px); }

  @media (max-width: 900px) {
    .rsg-grid { grid-template-columns: 1fr; gap: 16px; }
    .rsg-section { padding: 52px 18px; }
    .rsg-inner { text-align: left; }
    .rsg-sub { margin-left: 0; }
  }
