/* =========================================================================
   PICLAMA — RTL refinements
   main.css already uses logical properties (inset-inline, padding-inline,
   margin-inline) so most of the layout flips automatically. These are the
   few visual touch-ups that need explicit direction handling.
   ====================================================================== */

/* Brand sub-label letter-spacing reads better LTR even in RTL context */
.pic-brand-sub{direction:ltr}
.pic-brand-name{direction:ltr}

/* Keep numeric / latin values left-to-right inside RTL */
.pic-stat-num,.pic-calc-res strong,.pic-dev-hero-stats strong,.pic-404-code{direction:ltr;unicode-bidi:isolate}

/* Range sliders: flip so dragging right = more, matching RTL reading */
.pic-calc-controls input[type=range]{direction:rtl}

/* Read-more / arrow icons point the correct way in RTL */
[dir=rtl] .pic-readmore .pic-i,
[dir=rtl] .pic-btn .pic-i-arrow,
[dir=rtl] .pic-sec-foot .pic-i-arrow{transform:scaleX(-1)}

/* Breadcrumb separator already neutral (›) — nudge alignment */
[dir=rtl] .pic-breadcrumb li:not(:last-child)::after{transform:scaleX(-1)}

/* WhatsApp/contact phone numbers stay LTR */
.pic-topbar-contact a,.pic-footer-contact a[href^="tel"],.pic-contact-list a[href^="tel"]{direction:ltr;unicode-bidi:isolate}
