/* ── Recenzii Google Carousel — v1.0.0 ── */
.ru-reviews {
  --ru-blue:    #0c43bd;
  --ru-blue-bg: #eef2ff;
  --ru-text:    #12161d;
  --ru-sub:     #4b5262;
  --ru-muted:   #8a93a6;
  --ru-border:  #dde1ea;
  --ru-bsoft:   #e4e7ef;
  --ru-bg:      #ffffff;
  --ru-panel:   #f5f6f9;
  --ru-star:    #FBBC04;
  --ru-t:       .15s;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  padding: 0;
}

/* ── Header ── */
.ru-header {
  text-align: center;
  margin-bottom: 28px;
  padding: 0 24px;
}

/* ── Badge ── */
.ru-badge {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--ru-bg);
  border: 1.5px solid var(--ru-bsoft);
  border-radius: 12px;
  padding: 16px 24px;
}

.ru-badge-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-right: 18px;
  border-right: 1px solid var(--ru-border);
}

.ru-badge-wordmark {
  font-size: .88rem;
  font-weight: 700;
  color: var(--ru-sub);
  letter-spacing: -.01em;
}

.ru-badge-score { line-height: 1; }

.ru-score-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--ru-text);
}

.ru-stars { display: flex; gap: 2px; margin: 5px 0 3px; }
.ru-star  { width: 15px; height: 15px; fill: var(--ru-star); }

.ru-count {
  font-size: .7rem;
  font-weight: 600;
  color: var(--ru-muted);
  letter-spacing: .02em;
}

.ru-badge-divider {
  width: 1px;
  height: 40px;
  background: var(--ru-border);
}

.ru-badge-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--ru-blue);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--ru-t);
}
.ru-badge-link:hover { opacity: .7; }

.ru-badge-link-mobile {
  display: none;
  margin-top: 10px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--ru-blue);
  text-decoration: none;
}
.ru-badge-link-mobile:hover { opacity: .7; }

/* ── Carousel ── */
.ru-carousel-outer   { position: relative; }
.ru-carousel-viewport { overflow: hidden; }

.ru-carousel-track {
  display: flex;
  gap: 12px;
  align-items: stretch;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  cursor: grab;
}
.ru-carousel-track.is-dragging { cursor: grabbing; transition: none; }

/* ── Card ── */
.ru-card {
  flex: 0 0 calc(33.333% - 8px);
  background: var(--ru-bg);
  border: 1.5px solid var(--ru-bsoft);
  border-radius: 10px;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  transition: border-color var(--ru-t), background var(--ru-t);
  user-select: none;
  -webkit-user-select: none;
}
.ru-card:hover {
  border-color: #c5cfe8;
  background: #fafbff;
}

.ru-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ru-card-stars { display: flex; gap: 2px; }
.ru-card-star  { width: 12px; height: 12px; fill: var(--ru-star); }

.ru-card-gicon { flex-shrink: 0; opacity: .45; }

.ru-card-text {
  font-size: .9rem;
  color: var(--ru-sub);
  line-height: 1.7;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ru-card-author {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--ru-bsoft);
}

.ru-card-name {
  font-size: .8rem;
  font-weight: 700;
  color: var(--ru-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ru-card-sep  { color: var(--ru-border); font-size: .75rem; flex-shrink: 0; }

.ru-card-date {
  font-size: .72rem;
  color: var(--ru-muted);
  font-weight: 500;
  flex-shrink: 0;
}

/* ── Navigation ── */
.ru-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
  padding: 0 24px;
}

.ru-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--ru-bsoft);
  background: var(--ru-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ru-muted);
  flex-shrink: 0;
  transition: border-color var(--ru-t), color var(--ru-t), background var(--ru-t), transform .1s;
  -webkit-tap-highlight-color: transparent;
}
.ru-arrow svg {
  width: 15px !important;
  height: 15px !important;
  flex-shrink: 0;
  stroke: currentColor;
}
.ru-arrow:hover  { border-color: var(--ru-blue); color: var(--ru-blue); background: var(--ru-blue-bg); }
.ru-arrow:active { transform: scale(.9); }
.ru-arrow:disabled { opacity: .3; cursor: default; pointer-events: none; }

.ru-dots { display: flex; gap: 5px; align-items: center; }

.ru-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ru-border);
  border: none; padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--ru-t), width var(--ru-t), opacity var(--ru-t), transform var(--ru-t);
  -webkit-tap-highlight-color: transparent;
}
.ru-dot.active {
  background: var(--ru-blue);
  width: 20px;
  border-radius: 3px;
}
.ru-dot.edge {
  transform: scale(.65);
  opacity: .45;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .ru-card { flex: 0 0 calc(50% - 6px); }
  .ru-badge { flex-wrap: wrap; justify-content: center; }
  .ru-badge-divider, .ru-badge-link { display: none; }
}

@media (max-width: 520px) {
  .ru-card { flex: 0 0 100%; }
  .ru-badge { padding: 14px 16px; gap: 12px; }
  .ru-score-num { font-size: 1.65rem; }
  .ru-badge-link-mobile { display: inline-flex; }
}
