/* ===== Review System Styles (Listing + Detail) ===== */

/* ===== SHARED ===== */
.dc-rv-hero,
.dc-rvd-hero {
  position: relative;
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #0f1e3d 0%, #1a2f5a 50%, #0f1e3d 100%);
  overflow: hidden;
}
.dc-rv-hero__bg,
.dc-rvd-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(193,162,72,0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(26,47,90,0.4) 0%, transparent 50%);
}
.dc-rv-hero__content,
.dc-rvd-hero__content > * { position: relative; z-index: 1; }
.dc-rv-hero__crumbs,
.dc-rvd-hero__crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  margin-bottom: 20px;
}
.dc-rv-hero__crumbs a,
.dc-rvd-hero__crumbs a { color: rgba(255,255,255,0.6); text-decoration: none; }
.dc-rv-hero__crumbs a:hover,
.dc-rvd-hero__crumbs a:hover { color: #c1a248; }
.dc-rv-hero__crumbs span,
.dc-rvd-hero__crumbs span { color: rgba(255,255,255,0.4); }
.dc-rv-hero__crumbs > span:last-child,
.dc-rvd-hero__crumbs > span:last-child { color: #c1a248; font-weight: 600; }
.dc-rv-hero__badge,
.dc-rvd-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193,162,72,0.15);
  border: 1px solid rgba(193,162,72,0.3);
  color: #c1a248;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.dc-rv-hero__badge .material-symbols-outlined,
.dc-rvd-hero__badge .material-symbols-outlined { font-size: 18px; }
.dc-rv-hero h1,
.dc-rvd-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.1;
}
.dc-rv-hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 680px;
}
.dc-rv-hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.dc-rv-hero__stats > div { display: flex; flex-direction: column; }
.dc-rv-hero__stats strong { font-size: 1.8rem; font-weight: 800; color: #c1a248; }
.dc-rv-hero__stats span { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ===== LISTING: Category Cards Grid ===== */
.dc-rv-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.dc-rv-category-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e8e8;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dc-rv-category-card:hover {
  border-color: #c1a248;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.dc-rv-category-card__image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: #f5f5f5;
}

.dc-rv-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dc-rv-category-card:hover .dc-rv-category-card__image img {
  transform: scale(1.08);
}

.dc-rv-category-card__content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dc-rv-category-card__content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dc-navy-deep);
  margin: 0 0 8px 0;
}

.dc-rv-category-card__content p {
  font-size: 13px;
  color: #999;
  margin: 0;
}

/* ===== LISTING: Tabs ===== */
.dc-rv-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.dc-rv-tab {
  padding: 10px 22px;
  border: 1px solid #e0e0e0;
  border-radius: 100px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.dc-rv-tab:hover { border-color: #c1a248; color: #c1a248; }
.dc-rv-tab.is-active { background: #c1a248; border-color: #c1a248; color: #fff; }

/* ===== LISTING: Layout ===== */
.dc-rv-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

/* -- Filter Sidebar -- */
.dc-rv-filters {
  position: sticky;
  top: 120px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 24px;
}
.dc-rv-filters__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}
.dc-rv-filters__header h3 {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.dc-rv-filters__header h3 .material-symbols-outlined { font-size: 20px; color: #c1a248; }
.dc-rv-filters__clear {
  background: none;
  border: none;
  font-size: 12px;
  color: #c1a248;
  cursor: pointer;
  font-weight: 600;
}
.dc-rv-filter-group { margin-bottom: 18px; }
.dc-rv-filter-group > label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}
.dc-rv-filter-options { display: flex; flex-wrap: wrap; gap: 6px; }
.dc-rv-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 100px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dc-rv-filter-chip input { display: none; }
.dc-rv-filter-chip:has(input:checked) {
  background: #c1a248;
  border-color: #c1a248;
  color: #fff;
}
.dc-rv-filter-select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  background: #fff;
  cursor: pointer;
}

/* -- Toolbar -- */
.dc-rv-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.dc-rv-count { font-size: 14px; color: #666; }
.dc-rv-count strong { color: #c1a248; font-size: 1.1rem; }
.dc-rv-sort { display: flex; align-items: center; gap: 8px; }
.dc-rv-sort label { font-size: 13px; color: #666; }
.dc-rv-sort select {
  padding: 8px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}

/* -- Patient Cards Grid -- */
.dc-rv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.dc-rv-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.dc-rv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: #c1a248;
}
.dc-rv-card.is-hidden { display: none; }
.dc-rv-card__ba {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dc-rv-card__ba img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.dc-rv-card:hover .dc-rv-card__ba img { transform: scale(1.08); }
.dc-rv-card__ba-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15,30,61,0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}
.dc-rv-card__body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.dc-rv-card__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.dc-rv-card__header h4 { font-size: 1.05rem; font-weight: 700; margin: 0; }
.dc-rv-card__verified { color: #4caf50; display: flex; align-items: center; }
.dc-rv-card__verified .material-symbols-outlined { font-size: 18px; }
.dc-rv-card__meta {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.dc-rv-card__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #666;
}
.dc-rv-card__meta .material-symbols-outlined { font-size: 16px; color: #c1a248; }
.dc-rv-card__result {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin: 8px 0 12px;
  font-style: italic;
  flex: 1;
}
.dc-rv-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}
.dc-rv-card__date { font-size: 12px; color: #999; }
.dc-rv-card__stats { font-size: 12px; color: #999; display: flex; align-items: center; gap: 4px; }
.dc-rv-card__stats .material-symbols-outlined { font-size: 14px; }

/* -- No Results -- */
.dc-rv-no-results {
  text-align: center;
  padding: 60px 20px;
}
.dc-rv-no-results .material-symbols-outlined { font-size: 48px; color: #ccc; margin-bottom: 12px; }
.dc-rv-no-results p { font-size: 16px; color: #666; margin-bottom: 20px; }

/* ===== LISTING CTA ===== */
.dc-rv-cta,
.dc-rvd-cta {
  background: linear-gradient(135deg, #0f1e3d 0%, #1a2f5a 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dc-rv-cta::before,
.dc-rvd-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(193,162,72,0.1) 0%, transparent 60%);
}
.dc-rv-cta__inner,
.dc-rvd-cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 0 24px; }
.dc-rv-cta__inner h2,
.dc-rvd-cta__inner h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.dc-rv-cta__inner p,
.dc-rvd-cta__inner p { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.dc-rv-cta__buttons,
.dc-rvd-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== DETAIL: Hero ===== */
.dc-rvd-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.dc-rvd-hero__subtitle { font-size: 1.2rem; color: #c1a248; font-weight: 600; margin-bottom: 20px; }
.dc-rvd-hero__meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.dc-rvd-hero__meta > div { display: flex; align-items: center; gap: 10px; }
.dc-rvd-hero__meta .material-symbols-outlined { color: #c1a248; font-size: 28px; }
.dc-rvd-hero__meta strong { display: block; color: #fff; font-size: 1.05rem; font-weight: 700; }
.dc-rvd-hero__meta span { font-size: 12px; color: rgba(255,255,255,0.5); }
.dc-rvd-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.dc-rvd-hero__ba-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.dc-rvd-hero__ba-image img { width: 100%; border-radius: 20px; }
.dc-rvd-hero__ba-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15,30,61,0.85);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ===== DETAIL: Layout ===== */
.dc-rvd-layout { padding: 60px 0; }
.dc-rvd-layout__grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.dc-rvd-layout__main { min-width: 0; }

/* -- Detail Sections -- */
.dc-rvd-section { padding: 36px 0; border-bottom: 1px solid #f0f0f0; }
.dc-rvd-section:first-child { padding-top: 0; }
.dc-rvd-section:last-child { border-bottom: none; }
.dc-rvd-section--surface { background: #fafafa; margin: 0 -24px; padding: 36px 24px; border-radius: 16px; }
.dc-rvd-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; }

/* -- BA Gallery -- */
.dc-rvd-ba-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.dc-rvd-ba-item { position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden; cursor: pointer; }
.dc-rvd-ba-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dc-rvd-ba-item:hover img { transform: scale(1.06); }
.dc-rvd-ba-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,30,61,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 14px;
  opacity: 0; transition: opacity 0.3s ease;
}
.dc-rvd-ba-item:hover .dc-rvd-ba-item__overlay { opacity: 1; }
.dc-rvd-ba-item__tag { background: #c1a248; color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; margin-bottom: 4px; width: fit-content; }
.dc-rvd-ba-item__label { color: #fff; font-size: 13px; font-weight: 600; }

/* -- Patient Story -- */
.dc-rvd-story p { font-size: 1.05rem; color: #555; line-height: 1.8; margin-bottom: 16px; }
.dc-rvd-story__rating { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.dc-rvd-story__stars { display: flex; gap: 2px; }
.dc-rvd-story__stars .material-symbols-outlined { color: #ffc107; font-size: 24px; }
.dc-rvd-story__rating span { font-size: 15px; font-weight: 600; color: #333; }

/* -- Treatment Info -- */
.dc-rvd-info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.dc-rvd-info-item { display: flex; gap: 14px; padding: 16px 20px; background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; }
.dc-rvd-info-item .material-symbols-outlined { color: #c1a248; font-size: 28px; flex-shrink: 0; }
.dc-rvd-info-item strong { display: block; font-size: 14px; margin-bottom: 2px; }
.dc-rvd-info-item p { font-size: 14px; color: #666; margin: 0; }

/* -- Timeline -- */
.dc-rvd-timeline { position: relative; }
.dc-rvd-timeline__item { display: flex; gap: 20px; padding-bottom: 24px; position: relative; }
.dc-rvd-timeline__item:last-child { padding-bottom: 0; }
.dc-rvd-timeline__item::after { content: ''; position: absolute; left: 80px; top: 28px; bottom: 0; width: 2px; background: #e8e8e8; }
.dc-rvd-timeline__item:last-child::after { display: none; }
.dc-rvd-timeline__date { width: 80px; flex-shrink: 0; font-size: 13px; font-weight: 700; color: #c1a248; padding-top: 2px; text-align: right; }
.dc-rvd-timeline__content { flex: 1; }
.dc-rvd-timeline__content h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.dc-rvd-timeline__content p { font-size: 14px; color: #666; margin: 0; line-height: 1.6; }

/* -- Doctor -- */
.dc-rvd-doctor { display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: start; }
.dc-rvd-doctor__image img { width: 100%; border-radius: 16px; object-fit: cover; }
.dc-rvd-doctor__info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.dc-rvd-doctor__title { color: #c1a248; font-weight: 600; font-size: 14px; margin-bottom: 16px; }
.dc-rvd-doctor__stats { display: flex; gap: 20px; margin-bottom: 16px; flex-wrap: wrap; }
.dc-rvd-doctor__stats span { display: flex; align-items: center; gap: 4px; font-size: 13px; color: #c1a248; font-weight: 600; }
.dc-rvd-doctor__stats .material-symbols-outlined { font-size: 18px; }
.dc-rvd-doctor__creds { list-style: none; padding: 0; margin: 0 0 20px 0; }
.dc-rvd-doctor__creds li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; color: #444; }
.dc-rvd-doctor__creds .material-symbols-outlined { color: #c1a248; font-size: 20px; flex-shrink: 0; }
.dc-rvd-doctor__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* -- Recovery -- */
.dc-rvd-recovery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dc-rvd-recovery__item { background: #fff; border: 1px solid #e8e8e8; border-radius: 14px; padding: 20px; }
.dc-rvd-recovery__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 2px solid #f0f0f0; }
.dc-rvd-recovery__day { font-size: 1rem; font-weight: 700; color: #c1a248; }
.dc-rvd-recovery__header .material-symbols-outlined { font-size: 24px; color: #1a2f5a; }
.dc-rvd-recovery__item ul { list-style: none; padding: 0; margin: 0; }
.dc-rvd-recovery__item ul li { font-size: 13px; color: #666; padding: 5px 0; padding-left: 18px; position: relative; line-height: 1.5; }
.dc-rvd-recovery__item ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: #c1a248; }

/* -- FAQ -- */
.dc-rvd-faq__item { border: 1px solid #e8e8e8; border-radius: 12px; margin-bottom: 10px; overflow: hidden; transition: border-color 0.25s ease; }
.dc-rvd-faq__item.is-open { border-color: #c1a248; }
.dc-rvd-faq__question { width: 100%; padding: 16px 22px; border: none; background: #fff; display: flex; justify-content: space-between; align-items: center; font-size: 15px; font-weight: 600; color: #1a2f5a; cursor: pointer; text-align: left; }
.dc-rvd-faq__icon { transition: transform 0.3s ease; color: #c1a248; }
.dc-rvd-faq__item.is-open .dc-rvd-faq__icon { transform: rotate(180deg); }
.dc-rvd-faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.dc-rvd-faq__item.is-open .dc-rvd-faq__answer { max-height: 300px; }
.dc-rvd-faq__answer p { padding: 0 22px 16px; font-size: 14px; color: #666; line-height: 1.7; margin: 0; }

/* -- Cross Navigation -- */
.dc-rvd-cross { margin-bottom: 32px; }
.dc-rvd-cross:last-child { margin-bottom: 0; }
.dc-rvd-cross h2 { font-size: 1.3rem; margin-bottom: 16px; }
.dc-rvd-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.dc-rvd-related-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.dc-rvd-related-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.dc-rvd-related-card__image { aspect-ratio: 16/10; overflow: hidden; }
.dc-rvd-related-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dc-rvd-related-card:hover .dc-rvd-related-card__image img { transform: scale(1.06); }
.dc-rvd-related-card__body { padding: 14px; }
.dc-rvd-related-card__body h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.dc-rvd-related-card__body p { font-size: 12px; color: #c1a248; font-weight: 600; margin: 0; }

/* -- Sticky Sidebar -- */
.dc-rvd-layout__sidebar { position: sticky; top: 120px; }
.dc-rvd-sidebar { display: flex; flex-direction: column; gap: 16px; }
.dc-rvd-sidebar__card { background: #fff; border: 1px solid #e8e8e8; border-radius: 16px; padding: 24px; }
.dc-rvd-sidebar__card--cta { background: linear-gradient(135deg, #0f1e3d 0%, #1a2f5a 100%); border: none; color: #fff; text-align: center; }
.dc-rvd-sidebar__card--cta h3 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.dc-rvd-sidebar__card--cta p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 18px; }
.dc-rvd-sidebar__line, .dc-rvd-sidebar__call, .dc-rvd-sidebar__treatment {
  display: flex; align-items: center; justify-content: center; gap: 6px; padding: 11px; border-radius: 10px; font-size: 13px; font-weight: 600; text-decoration: none; margin-top: 8px; transition: all 0.25s ease;
}
.dc-rvd-sidebar__line, .dc-rvd-sidebar__call { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.dc-rvd-sidebar__line:hover, .dc-rvd-sidebar__call:hover { background: rgba(255,255,255,0.15); }
.dc-rvd-sidebar__treatment { background: rgba(193,162,72,0.15); color: #c1a248; border: 1px solid rgba(193,162,72,0.3); }
.dc-rvd-sidebar__card h4 { font-size: 14px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.dc-rvd-sidebar__card h4 .material-symbols-outlined { font-size: 18px; color: #c1a248; }
.dc-rvd-sidebar__share { display: flex; gap: 10px; }
.dc-rvd-sidebar__share a { width: 38px; height: 38px; border-radius: 10px; background: #f5f5f5; display: flex; align-items: center; justify-content: center; color: #666; text-decoration: none; transition: all 0.25s ease; }
.dc-rvd-sidebar__share a:hover { background: #c1a248; color: #fff; }
.dc-rvd-sidebar__share .material-symbols-outlined { font-size: 18px; }
.dc-rvd-sidebar__stats { list-style: none; padding: 0; margin: 0; }
.dc-rvd-sidebar__stats li { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.dc-rvd-sidebar__stats li:last-child { border-bottom: none; }
.dc-rvd-sidebar__stats span { color: #666; }
.dc-rvd-sidebar__stats strong { color: #1a2f5a; }

/* -- Sticky Mobile CTA -- */
.dc-rvd-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 1000;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.dc-rvd-sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-right: 1px solid #f0f0f0;
}
.dc-rvd-sticky-cta a:last-child { border-right: none; }
.dc-rvd-sticky-cta__book { background: #c1a248; color: #fff; }
.dc-rvd-sticky-cta__line { background: #06c755; color: #fff; }
.dc-rvd-sticky-cta__call { color: #1a2f5a; }
.dc-rvd-sticky-cta .material-symbols-outlined, .dc-rvd-sticky-cta i { font-size: 18px; }

/* -- Lightbox -- */
.dc-rv-lightbox {
  position: fixed; inset: 0; background: rgba(15,30,61,0.92); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.dc-rv-lightbox.is-open { opacity: 1; pointer-events: auto; }
.dc-rv-lightbox__close { position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border: none; border-radius: 50%; background: rgba(255,255,255,0.15); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.25s ease; }
.dc-rv-lightbox__close:hover { background: rgba(255,255,255,0.3); }
.dc-rv-lightbox__content img { max-width: 90vw; max-height: 85vh; border-radius: 12px; object-fit: contain; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .dc-rvd-layout__grid { grid-template-columns: 1fr 280px; }
}
@media (max-width: 991px) {
  .dc-rv-layout { grid-template-columns: 1fr; }
  .dc-rv-filters { position: static; }
  .dc-rvd-hero__grid { grid-template-columns: 1fr; }
  .dc-rvd-hero__ba { max-width: 400px; }
  .dc-rvd-layout__grid { grid-template-columns: 1fr; }
  .dc-rvd-layout__sidebar { position: static; max-width: 600px; margin: 0 auto; }
  .dc-rvd-doctor { grid-template-columns: 1fr; }
  .dc-rvd-doctor__image { max-width: 200px; }
  .dc-rvd-recovery { grid-template-columns: 1fr; }
  .dc-rvd-sticky-cta { display: flex; }
  body { padding-bottom: 52px; }
}
@media (max-width: 767px) {
  .dc-rv-hero__stats { gap: 20px; }
  .dc-rv-hero__stats strong { font-size: 1.4rem; }
  .dc-rv-grid { grid-template-columns: 1fr; }
  .dc-rv-toolbar { flex-direction: column; gap: 12px; align-items: flex-start; }
  .dc-rvd-hero__meta { gap: 16px; }
  .dc-rvd-hero__actions { flex-direction: column; }
  .dc-rvd-hero__actions a { width: 100%; text-align: center; }
  .dc-rvd-section { padding: 28px 0; }
  .dc-rvd-section--surface { margin: 0 -16px; padding: 28px 16px; }
  .dc-rvd-ba-grid { grid-template-columns: 1fr 1fr; }
  .dc-rvd-info-grid { grid-template-columns: 1fr; }
  .dc-rvd-timeline__date { width: 60px; font-size: 11px; }
  .dc-rvd-timeline__item::after { left: 60px; }
  .dc-rv-cta__buttons, .dc-rvd-cta__buttons { flex-direction: column; }
  .dc-rv-cta__buttons a, .dc-rvd-cta__buttons a { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .dc-rvd-ba-grid { grid-template-columns: 1fr; }
  .dc-rvd-related-grid { grid-template-columns: 1fr 1fr; }
}
