/* Featured Doctors / Doctor Discovery Section - V14.1 Card Upgrade (based on V13) */
.vr-featured-doctors{
  padding:104px 0 108px;
  background:
    radial-gradient(circle at 10% 10%,rgba(123,77,255,.08),transparent 34%),
    radial-gradient(circle at 88% 6%,rgba(46,214,255,.10),transparent 35%),
    linear-gradient(180deg,#fff 0%,#F8FAFC 100%);
  overflow:hidden;
}
.vr-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:32px;
  margin-bottom:32px;
}
.vr-section-head--doctors{align-items:flex-start}
.vr-section-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--primary);
  background:rgba(123,77,255,.08);
  border:1px solid rgba(123,77,255,.13);
  border-radius:999px;
  padding:8px 12px;
  font-size:13px;
  font-weight:500;
  margin-bottom:14px;
}
.vr-section-head h2{
  margin:0;
  font-size:clamp(32px,3.2vw,50px);
  line-height:1.06;
  letter-spacing:-.05em;
  color:#0B1220;
}
.vr-section-head p{
  margin:14px 0 0;
  max-width:640px;
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
  font-weight:400;
}
.vr-doctor-proof{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  min-width:250px;
}
.vr-doctor-proof span{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 14px;
  border:1px solid rgba(229,231,235,.82);
  background:rgba(255,255,255,.78);
  box-shadow:0 12px 34px rgba(17,24,39,.05);
  border-radius:18px;
  color:#667085;
  font-size:13px;
  font-weight:400;
}
.vr-doctor-proof strong{
  color:#111827;
  font-weight:700;
}
.vr-doctor-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:26px;
}
.vr-section-head__action{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--primary);
  background:#fff;
  border:1px solid rgba(123,77,255,.13);
  font-weight:600;
  white-space:nowrap;
  padding:12px 16px;
  border-radius:15px;
  box-shadow:0 10px 28px rgba(17,24,39,.05);
  transition:background .22s ease,transform .22s ease,border-color .22s ease;
}
.vr-section-head__action:hover{
  background:rgba(123,77,255,.08);
  border-color:rgba(123,77,255,.26);
  transform:translateY(-2px);
}
.vr-doctor-tabs{
  display:flex;
  gap:10px;
  align-items:center;
  overflow:auto;
  scrollbar-width:none;
  padding:2px 2px 3px;
  margin-bottom:34px;
}
.vr-doctor-tabs::-webkit-scrollbar{display:none}
.vr-tab{
  border:1px solid rgba(229,231,235,.92);
  background:rgba(255,255,255,.86);
  color:#374151;
  border-radius:999px;
  padding:12px 17px;
  font-size:14px;
  font-weight:500;
  white-space:nowrap;
  transition:background .22s ease,color .22s ease,border-color .22s ease,transform .22s ease,box-shadow .22s ease;
}
.vr-tab:hover{
  border-color:rgba(123,77,255,.34);
  color:var(--primary);
  transform:translateY(-1px);
}
.vr-tab.is-active{
  background:var(--primary);
  color:#fff;
  border-color:var(--primary);
  box-shadow:0 14px 30px rgba(123,77,255,.20);
}
.vr-doctor-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  align-items:stretch;
}
.vr-doctor-card{
  display:flex;
  flex-direction:column;
  background:rgba(255,255,255,.98);
  border:1px solid rgba(229,231,235,.95);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 12px 34px rgba(17,24,39,.065);
  transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;
  min-width:0;
  position:relative;
}
.vr-doctor-card:hover{
  transform:translateY(-7px);
  border-color:rgba(123,77,255,.46);
  box-shadow:0 26px 64px rgba(17,24,39,.13);
}
.vr-doctor-card__media{
  position:relative;
  aspect-ratio:4/3.65;
  overflow:hidden;
  background:#EEF2FF;
}
.vr-doctor-card__media:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(8,7,28,0) 46%,rgba(8,7,28,.34) 100%);
  pointer-events:none;
}
.vr-doctor-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.vr-doctor-card:hover .vr-doctor-card__media img{transform:scale(1.045)}
.vr-verified-badge,
.vr-featured-badge{
  position:absolute;
  top:14px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:7px;
  border-radius:999px;
  padding:8px 10px;
  font-size:12px;
  font-weight:600;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}
.vr-verified-badge{
  left:14px;
  color:#fff;
  background:rgba(123,77,255,.93);
  box-shadow:0 10px 26px rgba(123,77,255,.20);
}
.vr-featured-badge{
  right:14px;
  color:#075E4A;
  background:rgba(255,255,255,.90);
  border:1px solid rgba(255,255,255,.72);
}
.vr-featured-badge i{color:var(--accent)}
.vr-card-overlay-link{
  position:absolute;
  z-index:3;
  left:14px;
  right:14px;
  bottom:14px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:14px;
  background:rgba(255,255,255,.92);
  color:#111827;
  font-size:13px;
  font-weight:600;
  transform:translateY(10px);
  opacity:0;
  transition:opacity .25s ease,transform .25s ease,background .25s ease;
}
.vr-doctor-card:hover .vr-card-overlay-link{
  opacity:1;
  transform:translateY(0);
}
.vr-card-overlay-link:hover{background:#fff;color:var(--primary)}
.vr-doctor-card__body{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:14px;
  flex:1;
}
.vr-doctor-card__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
}
.vr-doctor-card h3{
  margin:0 0 6px;
  font-size:19px;
  line-height:1.18;
  letter-spacing:-.027em;
  color:#111827;
  font-weight:700;
}
.vr-doctor-card__specialty{
  margin:0;
  color:var(--muted);
  font-size:13.5px;
  font-weight:400;
  line-height:1.45;
}
.vr-rating{
  display:inline-flex;
  align-items:center;
  gap:5px;
  color:#111827;
  font-size:13px;
  font-weight:600;
  white-space:nowrap;
  background:#FFF8E1;
  border:1px solid rgba(245,179,1,.18);
  border-radius:999px;
  padding:6px 8px;
}
.vr-rating i{color:#F5B301}
.vr-doctor-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px 12px;
  color:#4B5563;
  font-size:13px;
  line-height:1.35;
}
.vr-doctor-card__meta span{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.vr-doctor-card__meta i{color:var(--primary);font-size:12px}
.vr-language-row{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
.vr-language-row span{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:7px 10px;
  background:rgba(46,214,255,.08);
  border:1px solid rgba(46,214,255,.18);
  color:#0F5D73;
  font-size:12px;
  line-height:1;
  font-weight:500;
}
.vr-chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
.vr-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:7px 10px;
  background:#F8FAFC;
  border:1px solid rgba(229,231,235,.9);
  color:#374151;
  font-size:12px;
  line-height:1;
  font-weight:400;
}
.vr-card-stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px;
}
.vr-card-stat{
  border:1px solid rgba(229,231,235,.92);
  border-radius:16px;
  padding:11px;
  background:linear-gradient(180deg,#fff,#F9FAFB);
}
.vr-card-stat strong{
  display:block;
  color:#111827;
  font-size:13.5px;
  font-weight:700;
  margin-bottom:3px;
}
.vr-card-stat span{
  display:block;
  color:var(--muted);
  font-size:12px;
  font-weight:400;
}
.vr-doctor-card__footer{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-top:4px;
}
.vr-starting-price span{
  display:block;
  color:var(--muted);
  font-size:12px;
  font-weight:400;
  margin-bottom:3px;
}
.vr-starting-price strong{
  display:block;
  color:#111827;
  font-size:18px;
  font-weight:700;
}
.vr-doctor-card__cta{
  min-height:44px;
  padding:0 16px;
  border-radius:14px;
  font-size:13px;
}
.vr-featured-note{
  margin-top:30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  padding:22px 24px;
  border-radius:28px;
  border:1px solid rgba(123,77,255,.13);
  background:
    linear-gradient(135deg,rgba(123,77,255,.08),rgba(46,214,255,.07)),
    rgba(255,255,255,.88);
  color:#374151;
  box-shadow:0 18px 44px rgba(17,24,39,.06);
}
.vr-featured-note__label{
  display:inline-flex;
  color:var(--primary);
  font-size:13px;
  font-weight:600;
  margin-bottom:6px;
}
.vr-featured-note p{margin:0;color:#4B5563;line-height:1.6;font-weight:400}
.vr-featured-note strong{color:#111827;font-weight:700}
.vr-featured-note a{color:var(--primary);font-weight:600;white-space:nowrap}
.vr-doctor-card.is-hidden{display:none}

@media (max-width:1320px){
  .vr-doctor-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
}
@media (max-width:1180px){
  .vr-featured-doctors{padding:84px 0 88px}
  .vr-section-head{display:block}
  .vr-section-head__action{margin-top:20px}
  .vr-doctor-toolbar{align-items:flex-start;flex-direction:column}
  .vr-doctor-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:760px){
  .vr-featured-doctors{padding:64px 0 72px}
  .vr-section-head{display:block;margin-bottom:24px}
  .vr-section-head__action{margin-top:16px;padding-left:14px}
  .vr-doctor-toolbar{gap:14px;margin-bottom:18px}
  .vr-doctor-tabs{margin-left:-2px;margin-right:-2px;padding-bottom:8px;max-width:100%;margin-bottom:24px}
  .vr-doctor-grid{display:flex;gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;padding:4px 4px 18px;margin-inline:-4px;scrollbar-width:none}
  .vr-doctor-grid::-webkit-scrollbar{display:none}
  .vr-doctor-card{width:100%;min-width:100%;max-width:100%;flex:0 0 100%;scroll-snap-align:start}
  .vr-card-overlay-link{opacity:1;transform:none;background:rgba(255,255,255,.92)}
  .vr-featured-note{display:block;padding:20px}
  .vr-featured-note a{display:inline-flex;margin-top:14px}
}
@media (max-width:430px){
  .vr-doctor-card{width:100%;min-width:100%;max-width:100%;flex:0 0 100%}
  .vr-doctor-card__footer{align-items:flex-start;flex-direction:column}
  .vr-doctor-card__cta{width:100%}
}


/* Phase 6.1.2 Doctors archive/listing */
.vr-doctors-listing-hero .vr-container{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,460px);gap:32px;align-items:center}.vr-doctors-filter{position:relative;z-index:2}.vr-doctors-filter label{display:block;margin-bottom:14px}.vr-doctors-filter label span{display:block;margin-bottom:7px;font-size:13px;font-weight:800;color:rgba(255,255,255,.86)}.vr-doctors-filter input,.vr-doctors-filter select{width:100%;min-height:48px;border:1px solid rgba(255,255,255,.18);border-radius:16px;background:rgba(255,255,255,.1);color:#fff;padding:0 14px;outline:0}.vr-doctors-filter option{color:#171433}.vr-empty-doctors{grid-column:1/-1;text-align:center}.vr-pagination{margin-top:34px;display:flex;justify-content:center}.vr-pagination ul{display:flex;gap:8px;list-style:none;margin:0;padding:0}.vr-pagination a,.vr-pagination span{display:flex;align-items:center;justify-content:center;min-width:42px;height:42px;border-radius:14px;background:#fff;border:1px solid rgba(65,50,143,.12);color:#41328f;text-decoration:none;font-weight:800}.vr-pagination .current{background:#41328f;color:#fff}@media(max-width:900px){.vr-doctors-listing-hero .vr-container{grid-template-columns:1fr}.vr-doctors-filter{width:100%}}

/* Phase 6.3.0 — Dynamic Doctor Listing Card Fields */
.vr-card-dynamic-fields{display:flex;flex-direction:column;gap:10px;margin:14px 0 2px}
.vr-card-dynamic-field{border:1px solid rgba(226,232,240,.9);background:rgba(248,250,252,.86);border-radius:16px;color:#334155;font-size:13px;line-height:1.45}
.vr-card-dynamic-field--stat,.vr-card-dynamic-field--media,.vr-card-dynamic-field--link{display:flex;align-items:center;gap:9px;padding:10px 12px;text-decoration:none}
.vr-card-dynamic-field i{color:var(--primary);font-size:13px;flex:0 0 auto}
.vr-card-dynamic-field strong{color:#111827;font-weight:900}.vr-card-dynamic-field em{margin-left:auto;font-style:normal;background:#fff;color:#41328f;border-radius:999px;padding:3px 8px;font-weight:900;font-size:12px}
.vr-card-dynamic-field--chips,.vr-card-dynamic-field--text{padding:10px 12px}
.vr-card-dynamic-label{display:flex;align-items:center;gap:8px;color:#111827;font-weight:900;margin-bottom:8px}
.vr-card-dynamic-field--chips>div{display:flex;flex-wrap:wrap;gap:7px}.vr-card-mini-chip{display:inline-flex;align-items:center;border-radius:999px;background:#fff;color:#5b39d6;border:1px solid rgba(123,77,255,.14);padding:6px 9px;font-weight:800;font-size:12px}
.vr-card-dynamic-field--text p{margin:0;color:#64748b}.vr-card-dynamic-field--link:hover{border-color:rgba(123,77,255,.25);background:#fff;color:#41328f}
@media(max-width:760px){.vr-card-dynamic-fields{gap:8px}.vr-card-dynamic-field--stat,.vr-card-dynamic-field--media,.vr-card-dynamic-field--link,.vr-card-dynamic-field--chips,.vr-card-dynamic-field--text{padding:9px 10px}}

/* Phase 6.3.1 — Doctor Card Data Integrity: data slots only, original card design preserved */
.vr-rating--fixed{gap:3px;padding:6px 9px}.vr-rating--fixed strong{margin-left:4px;color:#111827;font-weight:800}.vr-card-core-fields{display:flex;flex-direction:column;gap:10px;margin:14px 0 2px}.vr-card-core-stat,.vr-card-fact-line{border:1px solid rgba(226,232,240,.9);background:rgba(248,250,252,.86);border-radius:16px;color:#334155;line-height:1.45}.vr-card-core-stat{display:flex;align-items:center;gap:9px;padding:11px 13px}.vr-card-core-stat i,.vr-card-fact-line i{color:var(--primary);font-size:13px;flex:0 0 auto}.vr-card-core-stat strong{color:#111827;font-weight:900}.vr-card-fact-line{display:flex;align-items:flex-start;gap:9px;padding:11px 13px;font-size:13px}.vr-card-fact-line strong{color:#111827;font-weight:900}@media(max-width:760px){.vr-card-core-fields{gap:8px}.vr-card-core-stat,.vr-card-fact-line{padding:10px 11px}.vr-rating--fixed strong{display:none}}


/* Phase 6.3.2 — Doctor Card UI cleanup + reliable education display */
.vr-doctor-card{
  border-radius:26px;
  border-color:rgba(226,232,240,.95);
  box-shadow:0 18px 46px rgba(15,23,42,.08);
}
.vr-doctor-card__body{
  gap:12px;
  padding:18px 18px 20px;
}
.vr-doctor-card__top{
  align-items:flex-start;
}
.vr-doctor-card h3{
  max-width:100%;
  overflow-wrap:anywhere;
}
.vr-rating--fixed{
  flex:0 0 auto;
  box-shadow:0 8px 20px rgba(245,179,1,.10);
}
.vr-doctor-card__meta{
  padding:0;
}
.vr-doctor-card__meta span{
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
}
.vr-card-core-fields{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin:8px 0 0;
  padding:10px;
  border:1px solid rgba(226,232,240,.78);
  border-radius:20px;
  background:linear-gradient(180deg,rgba(248,250,252,.92),rgba(255,255,255,.94));
}
.vr-card-core-stat,
.vr-card-fact-line{
  border:0;
  background:transparent;
  border-radius:0;
  padding:0;
  color:#475569;
}
.vr-card-core-stat{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:30px;
}
.vr-card-core-stat i,
.vr-card-fact-icon{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 28px;
  border-radius:10px;
  color:#7B4DFF;
  background:rgba(123,77,255,.10);
}
.vr-card-core-stat i{font-size:12px;color:#7B4DFF}
.vr-card-core-stat strong{
  color:#111827;
  font-size:14px;
  font-weight:850;
}
.vr-card-fact-line{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:13px;
  line-height:1.45;
}
.vr-card-fact-icon i{font-size:12px;color:#7B4DFF}
.vr-card-fact-content{
  min-width:0;
  display:block;
  flex:1;
}
.vr-card-fact-content strong{
  display:block;
  margin:1px 0 2px;
  color:#111827;
  font-size:12.5px;
  font-weight:850;
}
.vr-card-fact-content em{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  color:#64748B;
  font-style:normal;
  font-size:13px;
}
.vr-card-fact-line--education .vr-card-fact-content em{
  -webkit-line-clamp:3;
}
.vr-card-dynamic-fields{
  margin-top:8px;
}
.vr-doctor-card__footer{
  padding-top:8px;
  border-top:1px solid rgba(226,232,240,.72);
}
@media(max-width:760px){
  .vr-doctor-card__body{padding:16px;gap:11px}
  .vr-card-core-fields{padding:9px;border-radius:18px}
  .vr-rating--fixed strong{display:inline}
}

/* Phase 6.3.3 — Doctor Card separated fields + calculated experience */
.vr-card-core-fields{
  padding:0;
  border:0;
  background:transparent;
  gap:9px;
}
.vr-card-core-stat,
.vr-card-fact-line{
  min-height:42px;
  padding:10px 12px;
  border:1px solid rgba(226,232,240,.86);
  border-radius:16px;
  background:linear-gradient(180deg,#fff,rgba(248,250,252,.92));
  box-shadow:0 8px 20px rgba(15,23,42,.035);
}
.vr-card-core-stat strong{
  font-size:13.5px;
  line-height:1.35;
}
.vr-card-fact-content strong{
  font-size:12px;
  letter-spacing:.01em;
  text-transform:none;
}
.vr-card-fact-content em{
  color:#5F6B7A;
  line-height:1.45;
}
.vr-card-fact-line--education .vr-card-fact-content em{
  -webkit-line-clamp:2;
}
.vr-doctor-card__meta span{
  white-space:normal;
}
@media(min-width:1024px){
  .vr-card-core-fields{gap:8px}
}
@media(max-width:760px){
  .vr-card-core-stat,
  .vr-card-fact-line{padding:10px 11px;border-radius:15px}
}

/* Phase 7.5.1 — Homepage Doctors Final Polish
   Scope: homepage doctors section only. Keeps doctor card data/UI intact and improves mobile width,
   filter tab readability, and the View All Doctors CTA. */
.vr-featured-doctors .vr-section-head__action{
  min-height:52px;
  padding:0 22px;
  border-radius:18px;
  color:#fff;
  background:linear-gradient(135deg,var(--primary),#7B4DFF);
  border:1px solid rgba(123,77,255,.36);
  box-shadow:0 16px 40px rgba(123,77,255,.22);
  font-weight:900;
  letter-spacing:-.01em;
  text-decoration:none;
}
.vr-featured-doctors .vr-section-head__action:before{
  content:"\f0f0";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  width:34px;
  height:34px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.18);
}
.vr-featured-doctors .vr-section-head__action:hover{
  background:linear-gradient(135deg,#5B39D6,#8B5CF6);
  border-color:rgba(123,77,255,.58);
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 22px 54px rgba(123,77,255,.30);
}
.vr-featured-doctors .vr-section-head__action i{
  transition:transform .22s ease;
}
.vr-featured-doctors .vr-section-head__action:hover i{
  transform:translateX(4px);
}
.vr-featured-doctors .vr-doctor-tabs{
  width:100%;
  max-width:100%;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  scroll-snap-type:x proximity;
  padding:3px 2px 10px;
}
.vr-featured-doctors .vr-doctor-tabs::-webkit-scrollbar{display:none}
.vr-featured-doctors .vr-tab{
  flex:0 0 auto;
  width:auto;
  max-width:none;
  min-width:max-content;
  white-space:nowrap;
  overflow:visible;
  text-overflow:clip;
  scroll-snap-align:start;
}
@media (max-width:760px){
  .vr-featured-doctors{
    overflow:hidden;
  }
  .vr-featured-doctors .vr-section-head__action{
    width:100%;
    justify-content:center;
    margin-top:20px;
  }
  .vr-featured-doctors .vr-doctor-tabs{
    gap:10px;
    margin-left:0;
    margin-right:0;
    padding:4px 2px 12px;
  }
  .vr-featured-doctors .vr-tab{
    padding:13px 18px;
    font-size:14px;
  }
  .vr-featured-doctors .vr-doctor-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:22px;
    overflow:visible;
    scroll-snap-type:none;
    padding:0;
    margin:0;
  }
  .vr-featured-doctors .vr-doctor-grid::-webkit-scrollbar{display:none}
  .vr-featured-doctors .vr-doctor-card{
    width:100%;
    min-width:0;
    max-width:none;
    scroll-snap-align:unset;
  }
  .vr-featured-doctors .vr-doctor-card__media{
    aspect-ratio:4/3.5;
  }
}
@media (max-width:430px){
  .vr-featured-doctors .vr-doctor-card{
    width:100%;
    min-width:0;
  }
}

/* Phase 10.1.1 — Homepage Featured Doctors Carousel Drag Refinement
   Scope: Featured Doctors section only. Existing card UI is preserved. */
/* Phase 10.1.2 Featured Doctors carousel: full-width mobile + native touch scroll */
.vr-doctors-carousel{
  position:relative;
  width:100%;
  max-width:100%;
  overflow:hidden;
  --vr-doctors-carousel-gap:18px;
  --vr-doctors-carousel-per-view:4;
}
.vr-doctors-carousel__viewport{
  display:flex;
  gap:var(--vr-doctors-carousel-gap);
  align-items:stretch;
  width:100%;
  max-width:100%;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  cursor:grab;
  touch-action:auto;
  overscroll-behavior-x:contain;
  overscroll-behavior-y:auto;
}
.vr-doctors-carousel__viewport::-webkit-scrollbar{display:none}
.vr-doctors-carousel__viewport.is-dragging{
  cursor:grabbing;
  scroll-behavior:auto;
  user-select:none;
}
.vr-doctors-carousel__slide{
  flex:0 0 calc((100% - (var(--vr-doctors-carousel-gap) * (var(--vr-doctors-carousel-per-view) - 1))) / var(--vr-doctors-carousel-per-view));
  min-width:0;
  max-width:none;
  display:flex;
  scroll-snap-align:start;
  scroll-snap-stop:always;
}
.vr-doctors-carousel__slide.is-hidden{display:none}
.vr-doctors-carousel__slide .vr-doctor-card{
  width:100%;
  min-width:0!important;
  max-width:none!important;
  height:100%;
}
.vr-doctors-carousel__empty{padding:26px;text-align:center;color:var(--muted)}
@media (max-width:1199px){.vr-doctors-carousel{--vr-doctors-carousel-per-view:3}}
@media (max-width:899px){.vr-doctors-carousel{--vr-doctors-carousel-per-view:2}}
@media (max-width:767px){
  .vr-featured-doctors .vr-container{
    overflow:visible;
  }
  .vr-featured-doctors .vr-doctors-carousel{
    width:100%;
    max-width:100%;
    margin-left:0;
    margin-right:0;
    padding-left:0;
    padding-right:0;
    box-sizing:border-box;
    overflow:hidden;
    --vr-doctors-carousel-per-view:1;
    --vr-doctors-carousel-gap:5px;
  }
  .vr-featured-doctors .vr-doctors-carousel__viewport{
    gap:5px!important;
    width:100%;
    max-width:100%;
    padding:0!important;
    margin:0;
    scroll-padding-inline:0;
    touch-action:pan-x pan-y;
  }
  .vr-featured-doctors .vr-doctors-carousel__slide{
    flex:0 0 100%!important;
    width:100%!important;
    min-width:100%!important;
    max-width:100%!important;
    padding:0!important;
    margin:0!important;
    box-sizing:border-box;
  }
  .vr-featured-doctors .vr-doctors-carousel__slide .vr-doctor-card{
    width:100%!important;
    min-width:0!important;
    max-width:none!important;
    margin:0!important;
    box-sizing:border-box;
  }
}


/* Phase 10.1.6 — Featured Doctors mobile width hardening
   Removes the old 88% mobile card behavior from the homepage doctors carousel only. */
@media (max-width:767px){
  .vr-featured-doctors .vr-doctors-carousel__viewport{
    gap:5px!important;
    padding-left:0!important;
    padding-right:0!important;
  }
  .vr-featured-doctors .vr-doctors-carousel__slide{
    flex-basis:100%!important;
    width:100%!important;
    min-width:100%!important;
    max-width:100%!important;
  }
  .vr-featured-doctors .vr-doctors-carousel__slide .vr-doctor-card{
    width:100%!important;
    min-width:0!important;
    max-width:none!important;
    margin:0!important;
  }
}


/* Phase 7.0.14: treatment category + multi-specialty chips on doctor cards */
.vr-card-treatment-row{
    display:flex;
    align-items:center;
    gap:8px;
    margin:10px 0 8px;
}
.vr-card-treatment{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:7px 10px;
    border-radius:999px;
    background:rgba(91,61,245,.09);
    color:#3526a7;
    font-size:12px;
    font-weight:800;
    line-height:1.2;
}
.vr-chip-row--specialties{
    margin-top:8px;
}
.vr-chip--more{
    background:rgba(15,23,42,.06)!important;
    color:#475569!important;
    font-weight:800;
}

/* Phase 7.0.19 — Featured Doctors display limits + listing CTA */
.vr-featured-doctors__action{
  display:flex;
  justify-content:center;
  margin-top:28px;
}
.vr-featured-doctors__action .vr-btn{
  min-width:190px;
  justify-content:center;
}
@media (max-width:767px){
  .vr-featured-doctors .vr-doctors-carousel{
    overflow:visible !important;
  }
  .vr-featured-doctors .vr-doctors-carousel__viewport{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:14px !important;
    overflow:visible !important;
    padding:0 !important;
    margin:0 !important;
    scroll-snap-type:none !important;
    touch-action:auto !important;
  }
  .vr-featured-doctors .vr-doctors-carousel__slide{
    width:100% !important;
    min-width:0 !important;
    max-width:100% !important;
    flex:none !important;
    scroll-snap-align:none !important;
  }
  .vr-featured-doctors .vr-doctors-carousel__slide .vr-doctor-card{
    width:100% !important;
    min-width:0 !important;
    max-width:100% !important;
    flex:none !important;
    margin-bottom:0 !important;
  }
  .vr-featured-doctors__action{
    margin-top:22px;
  }
  .vr-featured-doctors__action .vr-btn{
    width:100%;
  }
}
