/* Botox Landing Page — La Clinica
   Self-contained CSS (does NOT depend on styles.css)
   Warm, premium, conversion-focused
*/

:root{
  --bg-main: #F7F2EA;
  --bg-section: #EFE7DC;
  --bg-card: rgba(255,255,255,0.72);
  --text: #141414;
  --muted: rgba(20,20,20,0.68);
  --accent: #9C6B4E;
  --stroke: rgba(20,20,20,0.10);
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Heebo', 'Inter', sans-serif;
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 16px 40px rgba(0,0,0,0.10);
  --radius: 16px;
}

*,*::before,*::after{ box-sizing:border-box; margin:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  direction: rtl;
}

/* HEADER */
.lp-header{
  position: sticky;
  top:0; z-index:1200;
  background: rgba(247,242,234,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
}
.lp-header-inner{
  max-width:1000px; margin:0 auto; padding:12px 20px;
  display:flex; align-items:center; justify-content:space-between;
}
.lp-brand{ display:inline-flex; align-items:center; text-decoration:none; }
.lp-brand-full{ height:42px; width:auto; display:block; }
.lp-brand-mark{ display:none; height:34px; width:34px; object-fit:cover; border-radius:10px; }
.lp-header-cta{
  display:inline-flex; align-items:center; justify-content:center;
  height:42px; padding:0 18px; border-radius:12px;
  background:var(--text); color:#fff; text-decoration:none;
  font-weight:700; font-size:14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}
.lp-header-cta:hover{ transform:translateY(-1px); box-shadow:var(--shadow-md); }

/* Header phone CTA */
.lp-header-actions{
  display:flex; align-items:center; gap:8px;
}
.lp-header-phone{
  display:inline-flex; align-items:center; gap:6px;
  height:42px; padding:0 12px; border-radius:12px;
  background:transparent; color:var(--text); text-decoration:none;
  font-weight:600; font-size:14px;
  border:1px solid var(--stroke);
  transition: background 0.15s;
  direction: ltr;
}
.lp-header-phone:hover{ background:rgba(20,20,20,0.04); }
.lp-header-phone svg{ width:16px; height:16px; }
@media(max-width:600px){
  .lp-header-phone{ padding:0 10px; }
  .lp-header-phone-text{ display:none; }
}

@media(max-width:820px){
  .lp-brand-full{ display:none; }
  .lp-brand-mark{ display:block; }
}

/* INNER */
.lp-inner{ max-width:1000px; margin:0 auto; padding:0 20px; }

/* HERO */
.lp-hero{
  background: var(--bg-main);
  padding: clamp(40px,6vw,72px) 0 clamp(32px,5vw,56px);
}
.lp-hero-inner{
  max-width:1000px; margin:0 auto; padding:0 20px;
  display:grid; grid-template-columns:1.1fr 0.9fr;
  gap: clamp(24px,4vw,40px); align-items:center;
}
.lp-hero h1{
  font-family: var(--serif); font-weight:600;
  font-size: clamp(28px,5vw,46px); line-height:1.12;
  margin:0 0 16px;
}
.lp-hero-trust{
  display:flex; flex-wrap:wrap; align-items:center; gap:8px;
  margin:0 0 14px; font-size:14px; color:rgba(20,20,20,0.78);
}
.lp-trust-stars{ color:#f5b800; letter-spacing:1px; font-size:15px; }
.lp-trust-rating{ font-weight:600; color:#222; }
.lp-trust-doc{ font-weight:600; color:#222; }
.lp-trust-sep{ color:rgba(20,20,20,0.35); }
@media (max-width: 600px){
  .lp-hero-trust{ font-size:13px; gap:6px; margin-bottom:12px; }
  .lp-trust-stars{ font-size:14px; }
}
.lp-hero-sub{
  font-size: clamp(16px,1.8vw,19px); color:var(--muted);
  margin:0 0 20px; line-height:1.7;
}
.lp-hero-checks{
  list-style:none; padding:0; margin:0 0 24px;
  display:grid; gap:8px;
}
.lp-hero-checks li{
  padding-right:24px; position:relative;
  font-size:15px; color:rgba(20,20,20,0.82);
}
.lp-hero-checks li::before{
  content:"✓"; position:absolute; right:0; top:0;
  color:var(--accent); font-weight:800;
}
.lp-hero-ctas{ display:flex; flex-direction:column; gap:8px; align-items:flex-start; }
.lp-hero-note{ font-size:13px; color:var(--muted); margin:0; }

/* HERO IMAGE */
.lp-hero-img{ border-radius:var(--radius); overflow:hidden; }
.lp-img-placeholder{
  background: var(--bg-section); border:2px dashed var(--stroke);
  border-radius: var(--radius); min-height:300px;
  display:flex; align-items:center; justify-content:center;
  color:var(--muted); font-size:15px; font-weight:600;
}

@media(max-width:820px){
  .lp-hero-inner{ grid-template-columns:1fr; }
  .lp-hero-img{ order:-1; }
  .lp-img-placeholder{ min-height:220px; }
}

/* PRIMARY CTA */
.lp-cta-primary{
  display:inline-flex; align-items:center; justify-content:center;
  height:52px; padding:0 28px; border-radius:14px;
  background:var(--text); color:#fff; text-decoration:none;
  font-weight:700; font-size:16px; letter-spacing:0.2px;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s, box-shadow 0.15s;
}
.lp-cta-primary:hover{ transform:translateY(-1px); box-shadow:0 20px 48px rgba(0,0,0,0.18); }
.lp-cta-large{ height:56px; padding:0 34px; font-size:17px; }

/* SECTIONS */
.lp-section{
  padding: clamp(40px,5vw,72px) 0;
}
.lp-section h2{
  font-family: var(--serif); font-weight:600;
  font-size: clamp(24px,3.5vw,36px); line-height:1.15;
  margin:0 0 10px; text-align:center;
}
.lp-section-sub{
  text-align:center; color:var(--muted);
  font-size:16px; margin:0 0 32px;
}

/* BEFORE & AFTER */
.lp-results{ background: var(--bg-section); }
.lp-ba-grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.lp-ba-card{
  background:var(--bg-card); border:1px solid var(--stroke);
  border-radius:var(--radius); padding:14px; box-shadow:var(--shadow-sm);
}
.lp-ba-images{ display:grid; grid-template-columns:1fr 1fr; gap:8px; margin:0 0 10px; }
.lp-ba-placeholder{ min-height:140px; border-radius:12px; font-size:13px; }
.lp-ba-caption{ font-size:13px; color:var(--muted); text-align:center; margin:0; }

@media(max-width:768px){
  .lp-ba-grid{ grid-template-columns:1fr; max-width:400px; margin:0 auto; }
}

/* PRICING */
.lp-pricing{ background: var(--bg-main); }
.lp-price-card{
  background:var(--bg-card); border:1px solid var(--stroke);
  border-radius:var(--radius); box-shadow:var(--shadow-md);
  padding: clamp(24px,3vw,40px);
  display:grid; grid-template-columns:1.3fr 0.7fr;
  gap:28px; align-items:center;
}
.lp-price-table{ margin:16px 0; }
.lp-price-row{
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 0; border-bottom:1px solid var(--stroke);
}
.lp-price-row:last-child{ border-bottom:none; }
.lp-price-label{ font-size:15px; color:rgba(20,20,20,0.82); }
.lp-price-value{ font-weight:800; font-size:18px; }
.lp-price-highlight{
  background: rgba(156,107,78,0.08); border-radius:12px;
  padding:12px 14px; margin:4px -14px; border-bottom:none;
}
.lp-price-note{ font-size:13px; color:var(--muted); margin:0; }
.lp-price-cta{ text-align:center; }

@media(max-width:768px){
  .lp-price-card{ grid-template-columns:1fr; }
}

/* DOCTOR */
.lp-doctor{ background: var(--bg-section); }
.lp-doctor-card{
  display:grid; grid-template-columns:0.5fr 0.5fr;
  gap:28px; align-items:center;
  background:var(--bg-card); border:1px solid var(--stroke);
  border-radius:var(--radius); box-shadow:var(--shadow-sm);
  padding: clamp(20px,3vw,34px);
}
.lp-doctor-placeholder{ min-height:280px; border-radius:12px; }
.lp-doctor-text h2{ text-align:right; font-size:clamp(22px,3vw,30px); margin:0 0 6px; }
.lp-doctor-title{ font-weight:700; color:var(--accent); font-size:14px; margin:0 0 14px; }
.lp-doctor-text p{ font-size:15px; color:rgba(20,20,20,0.82); line-height:1.75; margin:0 0 10px; }
.lp-doctor-location{ font-size:13px; color:var(--muted); font-weight:600; }

@media(max-width:768px){
  .lp-doctor-card{ grid-template-columns:1fr; }
  .lp-doctor-placeholder{ min-height:200px; }
}

/* REVIEWS */
.lp-reviews{ background: var(--bg-main); }
.lp-stars-summary{
  text-align:center; margin:0 0 24px;
  font-size:15px; color:var(--muted);
}
.lp-stars{ color:#D4A843; font-size:22px; margin-left:8px; }
.lp-reviews-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.lp-review-card{
  background:var(--bg-card); border:1px solid var(--stroke);
  border-radius:var(--radius); padding:18px; box-shadow:var(--shadow-sm);
}
.lp-review-stars{ color:#D4A843; font-size:16px; margin:0 0 10px; }
.lp-review-text{
  font-size:15px; line-height:1.75; color:rgba(20,20,20,0.82);
  margin:0 0 10px; font-style:italic;
}
.lp-review-author{ font-size:13px; color:var(--muted); font-weight:700; margin:0; }

@media(max-width:768px){
  .lp-reviews-grid{ grid-template-columns:1fr; }
}

/* HOW IT WORKS */
.lp-how{ background: var(--bg-section); }
.lp-steps{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
  margin-top:28px;
}
.lp-step{
  background:var(--bg-card); border:1px solid var(--stroke);
  border-radius:var(--radius); padding:22px 18px; text-align:center;
  box-shadow:var(--shadow-sm);
}
.lp-step-num{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  background:var(--text); color:#fff;
  font-weight:800; font-size:15px; margin:0 0 12px;
}
.lp-step h3{ font-size:16px; font-weight:800; margin:0 0 8px; }
.lp-step p{ font-size:14px; color:var(--muted); margin:0; line-height:1.65; }

@media(max-width:768px){
  .lp-steps{ grid-template-columns:1fr; max-width:400px; margin:28px auto 0; }
}

/* FAQ */
.lp-faq{ background: var(--bg-main); }
.lp-faq-item{
  background:var(--bg-card); border:1px solid var(--stroke);
  border-radius:var(--radius); padding:14px 18px;
  margin:0 0 10px; max-width:700px; margin-left:auto; margin-right:auto;
}
.lp-faq-item summary{
  cursor:pointer; font-weight:800; font-size:15px;
  color:rgba(20,20,20,0.88); line-height:1.6;
  list-style:none;
}
.lp-faq-item summary::-webkit-details-marker{ display:none; }
.lp-faq-item summary::before{
  content:"+"; float:left; font-size:18px; font-weight:400; color:var(--accent);
  margin-left:12px;
}
.lp-faq-item[open] summary::before{ content:"−"; }
.lp-faq-body{ padding-top:10px; }
.lp-faq-body p{ font-size:15px; color:rgba(20,20,20,0.78); margin:0; line-height:1.7; }

/* FINAL CTA */
.lp-final-cta{
  background: var(--bg-section);
  padding: clamp(40px,5vw,72px) 0;
}
.lp-final-card{
  background:var(--text); color:#fff;
  border-radius:var(--radius); padding: clamp(28px,4vw,48px);
  text-align:center; box-shadow:var(--shadow-md);
}
.lp-final-card h2{
  font-family:var(--serif); font-size:clamp(24px,3.5vw,36px);
  color:#fff; margin:0 0 12px;
}
.lp-final-card p{ color:rgba(255,255,255,0.78); font-size:16px; margin:0 0 24px; }
.lp-final-card .lp-cta-primary{
  background:#fff; color:var(--text);
}
.lp-final-card .lp-cta-primary:hover{ box-shadow:0 20px 48px rgba(0,0,0,0.3); }
.lp-final-note{ font-size:13px; color:rgba(255,255,255,0.56); margin:12px 0 0; }

/* FOOTER */
.lp-footer{
  background:var(--bg-main);
  padding:24px 0;
  border-top:1px solid var(--stroke);
  text-align:center;
}
.lp-footer-text{ font-size:14px; color:var(--muted); margin:0 0 4px; font-weight:600; }
.lp-footer-disclaimer{ font-size:12px; color:rgba(20,20,20,0.48); margin:0; }

/* STICKY MOBILE CTA */
.lp-sticky-cta{
  position:fixed; bottom:0; left:0; right:0; z-index:1100;
  padding:12px 16px;
  background:rgba(247,242,234,0.96);
  backdrop-filter:blur(10px);
  border-top:1px solid var(--stroke);
  transform:translateY(100%);
  transition:transform 0.3s ease;
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.lp-sticky-cta.is-visible{ transform:translateY(0); }
.lp-sticky-btn{ flex:1; max-width:340px; }
.lp-sticky-phone-btn{
  display:inline-flex; align-items:center; justify-content:center;
  width:48px; height:48px;
  border-radius:12px;
  background:var(--text); color:#fff;
  text-decoration:none;
  box-shadow:var(--shadow-sm);
  flex-shrink:0;
}
.lp-sticky-phone-btn svg{ width:22px; height:22px; }

/* Hero secondary phone CTA */
.lp-cta-secondary-phone{
  display:inline-flex; align-items:center; gap:8px;
  margin-top:12px; font-size:14px;
  color:rgba(20,20,20,0.72); text-decoration:none;
  direction:rtl;
}
.lp-cta-secondary-phone strong{ color:#111; font-weight:600; direction:ltr; }
.lp-cta-secondary-phone svg{ width:16px; height:16px; opacity:0.7; }
.lp-cta-secondary-phone:hover strong{ color:var(--accent); }

@media(min-width:821px){
  .lp-sticky-cta{ display:none; }
}

/* MOTION */
@media(prefers-reduced-motion:reduce){
  *{ scroll-behavior:auto !important; transition:none !important; }
}


/* IMAGE LIGHTBOX */
#lpLightbox{
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
#lpLightbox.is-open{ display: flex; }
.lp-lb-img{
  max-width: 95vw; max-height: 92vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  cursor: zoom-out;
}
.lp-lb-close{
  position: fixed; top: 16px; left: 16px;
  width: 44px; height: 44px;
  border-radius: 50%; border: none;
  background: rgba(255,255,255,0.95); color: #111;
  font-size: 28px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: transform 0.15s;
}
.lp-lb-close:hover{ transform: scale(1.1); }

/* Zoomable images get a hover hint */
.lp-zoomable, [data-zoomable] img{
  cursor: zoom-in;
  transition: transform 0.2s;
}
.lp-zoomable:hover, [data-zoomable] img:hover{
  transform: scale(1.02);
}


/* BEFORE/AFTER CAROUSEL — properly contained thumbnails */
.lp-ba-card{
  overflow: hidden;
  min-width: 0;  /* important: allows grid item to shrink */
  max-width: 100%;
}
.lp-ba-carousel{
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 10px;
  padding: 0 0 6px;
  scrollbar-width: thin;
  width: 100%;
  max-width: 100%;
}
.lp-ba-carousel::-webkit-scrollbar{ height: 4px; }
.lp-ba-carousel::-webkit-scrollbar-track{ background: rgba(20,20,20,0.05); border-radius: 2px; }
.lp-ba-carousel::-webkit-scrollbar-thumb{ background: rgba(156,107,78,0.4); border-radius: 2px; }

.lp-ba-carousel picture{
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: block;
  max-width: 100%;
}
.lp-ba-carousel img{
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  cursor: zoom-in;
  transition: transform 0.2s;
}
.lp-ba-carousel img:hover{ transform: scale(1.01); }

.lp-ba-treatment{
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  margin: 6px 0 4px;
  text-align: center;
  line-height: 1.4;
}

.lp-ba-card .lp-ba-count{
  display: block;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}


/* CAROUSEL ARROWS — Facebook/Instagram style */
.lp-ba-carousel-wrap{
  position: relative;
  width: 100%;
  max-width: 100%;
}

/* Hide ALL scrollbars — bottom padding zero too */
.lp-ba-carousel{
  scrollbar-width: none !important;
  padding-bottom: 0 !important;
}
.lp-ba-carousel::-webkit-scrollbar{ display: none !important; height: 0 !important; }

.lp-ba-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  color: #141414;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 3px 0;  /* visual centering of chevron */
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  z-index: 5;
  transition: opacity 0.15s, background 0.15s;
  opacity: 0;  /* hidden by default, shown on hover */
}

/* Show arrows on hover (desktop) */
.lp-ba-carousel-wrap:hover .lp-ba-arrow{ opacity: 1; }

/* Always visible on touch devices */
@media (hover: none){
  .lp-ba-arrow{ opacity: 0.85; }
}

.lp-ba-arrow:hover{ background: #fff; }
.lp-ba-arrow.is-disabled{ opacity: 0 !important; pointer-events: none; }

/* Carousel-wrap has the same border radius as image so arrows feel attached */
.lp-ba-arrow-prev{ right: 6px; }   /* RTL: prev = right side */
.lp-ba-arrow-next{ left: 6px; }    /* RTL: next = left side */

/* Single-image cards: no arrows */
.lp-ba-card[data-count="1"] .lp-ba-arrow{ display: none; }

/* Remove the count hint text since arrows are visible */
.lp-ba-card .lp-ba-count{ display: none; }


/* LIGHTBOX NAVIGATION ARROWS */
.lp-lb-nav{
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.95);
  color: #141414;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 5px 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  z-index: 10000;
  transition: transform 0.15s, background 0.15s;
}
.lp-lb-nav:hover{ background: #fff; transform: translateY(-50%) scale(1.08); }
.lp-lb-prev{ right: 24px; }
.lp-lb-next{ left: 24px; }

@media (max-width: 600px){
  .lp-lb-nav{ width: 38px; height: 38px; font-size: 24px; }
  .lp-lb-prev{ right: 12px; }
  .lp-lb-next{ left: 12px; }
}


.lp-doctor-experience{
  font-size: 13px;
  color: rgba(20,20,20,0.65);
  font-weight: 500;
  margin: -8px 0 14px;
  font-style: italic;
}


/* Doctor image — bigger thumbnail */
.lp-doctor-img picture, .lp-doctor-img img{
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 12px;
}
@media (min-width: 769px){
  .lp-doctor-img picture, .lp-doctor-img img{
    max-width: 100%;
  }
}


/* WHATSAPP TESTIMONIALS - Dark mobile style */
.wa-testimonials{
  background: var(--bg-section);
  padding: clamp(8px,1vw,14px) 0 clamp(40px,5vw,72px);
}
.wa-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px){
  .wa-grid{ grid-template-columns: 1fr; max-width: 460px; gap: 16px; }
}
@media (max-width: 600px){
  .wa-testimonials{ padding: clamp(6px,1vw,12px) 0 clamp(28px,6vw,48px); }
  .wa-testimonials .lp-inner{ padding: 0 12px; }
  .wa-grid{ max-width: 100%; gap: 14px; }
  .wa-card{ border-radius: 12px; }
  .wa-header{ padding: 9px 10px; gap: 10px; }
  .wa-back{ width: 20px; height: 20px; }
  .wa-avatar{ width: 36px; height: 36px; }
  .wa-name{ font-size: 15px; }
  .wa-header-actions{ gap: 14px; }
  .wa-icon{ width: 21px; height: 21px; }
  .wa-icon-menu{ width: 17px; height: 21px; }
  .wa-body{
    padding: 12px 8px;
    min-height: 200px;
    gap: 5px;
  }
  .wa-msg{
    font-size: 14px;
    padding: 7px 9px 17px;
    max-width: 90%;
    line-height: 1.5;
  }
  .wa-msg-time{ font-size: 10.5px; }
  .wa-day-divider{ font-size: 10.5px; padding: 3px 10px; }
}
@media (max-width: 380px){
  .wa-testimonials .lp-inner{ padding: 0 8px; }
  .wa-header{ padding: 8px 8px; gap: 8px; }
  .wa-header-actions{ gap: 11px; }
  .wa-icon{ width: 19px; height: 19px; }
  .wa-icon-menu{ width: 15px; height: 19px; }
  .wa-body{ padding: 10px 6px; }
  .wa-msg{ font-size: 13.5px; max-width: 92%; }
}
.wa-card{
  background: #0b141a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.05);
  background-image:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.030) 1.6px, transparent 1.6px),
    radial-gradient(circle at 78% 28%, rgba(255,255,255,0.022) 1.2px, transparent 1.2px),
    radial-gradient(circle at 42% 58%, rgba(255,255,255,0.030) 1.6px, transparent 1.6px),
    radial-gradient(circle at 88% 82%, rgba(255,255,255,0.020) 1.1px, transparent 1.1px),
    radial-gradient(circle at 12% 88%, rgba(255,255,255,0.025) 1.4px, transparent 1.4px);
  background-size: 80px 80px, 60px 60px, 90px 90px, 55px 55px, 70px 70px;
}
.wa-header{
  background: #1f2c33;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  direction: ltr;
}
.wa-back{
  width: 22px; height: 22px;
  color: #e9edef;
  flex-shrink: 0;
  opacity: 0.95;
}
.wa-avatar{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9b894, #8a6d54);
  flex-shrink: 0;
  filter: blur(6px);
  -webkit-filter: blur(6px);
}
.wa-avatar-1{ background: linear-gradient(135deg, #c9b894, #8a6d54); }
.wa-avatar-2{ background: linear-gradient(135deg, #e8b4b8, #a06070); }
.wa-avatar-3{ background: linear-gradient(135deg, #a8c8d8, #5a7a8a); }
.wa-avatar-4{ background: linear-gradient(135deg, #b8c4a0, #6a7858); }
.wa-avatar-5{ background: linear-gradient(135deg, #c4b5d4, #7a6a90); }
.wa-avatar-6{ background: linear-gradient(135deg, #e6b8a0, #b06848); }
.wa-name-block{
  flex: 1;
  display: flex;
  flex-direction: column;
  direction: rtl;
}
.wa-name{
  font-weight: 500;
  font-size: 16px;
  color: #e9edef;
  filter: blur(4px);
  -webkit-filter: blur(4px);
  user-select: none;
  display: inline-block;
  line-height: 1.1;
}
.wa-status{ display: none; }
.wa-header-actions{
  display: flex;
  align-items: center;
  gap: 18px;
  color: #e9edef;
}
.wa-icon{ width: 22px; height: 22px; opacity: 0.95; }
.wa-icon-menu{ width: 18px; height: 22px; }
.wa-body{
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 240px;
  justify-content: flex-end;
  direction: ltr;
}
.wa-msg{
  border-radius: 8px;
  padding: 8px 10px 18px;
  max-width: 88%;
  position: relative;
  font-size: 14px;
  line-height: 1.55;
  color: #e9edef;
  box-shadow: 0 1px 1px rgba(0,0,0,0.30);
  direction: rtl;
  text-align: right;
}
/* Patient (them) - dark gray bubble, aligned LEFT */
.wa-msg-them{
  background: #1f2c33;
  align-self: flex-start;
}
.wa-msg-them::before{
  content: "";
  position: absolute;
  top: 0;
  left: -6px;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent #1f2c33 transparent transparent;
}
/* Doctor (us) - dark green bubble, aligned RIGHT */
.wa-msg-us{
  background: #005c4b;
  align-self: flex-end;
}
.wa-msg-us::before{
  content: "";
  position: absolute;
  top: 0;
  right: -6px;
  border-style: solid;
  border-width: 0 0 8px 8px;
  border-color: transparent transparent transparent #005c4b;
}
.wa-msg-time{
  position: absolute;
  bottom: 3px;
  left: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}
.wa-msg-us .wa-msg-time::after{
  content: " ✓✓";
  color: #53bdeb;
}
.wa-day-divider{
  align-self: center;
  background: rgba(31,44,51,0.9);
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin: 4px 0;
}