:root{
  --white:#ffffff;
  --cream:#ffffff;
  --ink:#2b1d16;
  --ink-soft:#6b5c52;
  --terracotta:#9d2224;
  --terracotta-deep:#711819;
  --gold:#c9a76a;
  --line:#ece1d8;
  --shadow: 0 20px 60px rgba(43,29,22,0.08);
  --ease: cubic-bezier(.22,.61,.36,1);
  --font-heading: 'Source Serif 4', serif;
  --font-body: 'Source Serif 4', serif;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth; background:var(--white) !important;}
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white) !important;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{text-decoration:none !important;color:inherit;}
ul{list-style:none;}
section{position:relative;}
.trst-container{
  width:min(1180px, 100% - 64px);
  margin-inline:auto;
}
.trst-eyebrow{
  font-family:var(--font-heading);
  font-size:12.5px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--terracotta);
  font-weight:600;
  display:inline-block;
  margin-bottom:18px;
}
h1,h2,h3,h4{ font-family:var(--font-heading); font-weight:600; line-height:1.2; letter-spacing:.01em; }
p, span, a, li, input, textarea, select{ font-family:var(--font-body); }
.trst-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 34px;
  border-radius:2px;
  font-family:var(--font-heading);
  font-size:14px;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-weight:600;
  transition:transform .5s var(--ease), background .4s ease, color .4s ease, box-shadow .4s ease;
  cursor:pointer;
  border:1px solid transparent;
  background:none;
  will-change:transform;
}
.trst-btn-solid{ background:var(--terracotta); color:#fff; }
.trst-btn-solid:hover{ background:var(--terracotta-deep) !important; color:#fff !important; transform:translateY(-2px); box-shadow:0 14px 30px rgba(157,34,36,.28);}
.trst-btn-outline{ border-color:rgba(43,29,22,.25); color:var(--ink);}
.trst-btn-outline:hover{ border-color:var(--ink) !important; color:var(--ink) !important; transform:translateY(-2px);}
.trst-btn-light{ background:#fff; color:var(--terracotta-deep); margin-top:8px; }
.trst-btn-light:hover{ background:var(--cream) !important; transform:translateY(-2px); }

/* ---------- reveal animation ---------- */
.trst-reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity 1s var(--ease), transform 1s var(--ease);
}
.trst-reveal.in{ opacity:1; transform:translateY(0); }
.trst-stagger > * { transition-delay:calc(var(--i,0) * 90ms); }

/* signature divider */
.trst-searline{ width:100%; display:flex; justify-content:center; padding:6px 0; }
.trst-searline svg{ width:min(420px,70%); height:14px; overflow:visible; }
.trst-searline path{
  stroke:var(--terracotta); stroke-width:1.4; fill:none; stroke-linecap:round;
  stroke-dasharray:520; stroke-dashoffset:520;
  transition:stroke-dashoffset 1.4s var(--ease);
}
.trst-searline.in path{ stroke-dashoffset:0; }
.trst-searline circle{ fill:var(--gold); opacity:0; transition:opacity .5s ease .9s; }
.trst-searline.in circle{ opacity:1; }

/* ================= HEADER ================= */
header{
  position:fixed; top:0; left:0; width:100%;
  z-index:1000;
  padding:20px 0;
  background:#ffffff !important;
  box-shadow:0 2px 20px rgba(43,29,22,.05);
  transition:padding .45s var(--ease), box-shadow .45s var(--ease);
}
header .trst-container{ display:flex; align-items:center; justify-content:space-between; }
header.trst-scrolled{ padding:10px 0; box-shadow:0 8px 30px rgba(43,29,22,.09); }

.trst-brand{ display:flex; align-items:center; }
.trst-brand-img{ width:auto; max-width:260px; transition:height .45s var(--ease); }
.trst-brand-img--header{ height:var(--logo-h, 44px) !important; max-height:60px; }
header.trst-scrolled .trst-brand-img--header{ height:calc(var(--logo-h, 44px) - 10px) !important; }
.trst-brand-img--footer{ height:var(--logo-h, 50px); }
.trst-brand-word{
  font-family:var(--font-heading); font-weight:700; color:var(--terracotta);
  font-size:19px; line-height:1.15; letter-spacing:.05em; text-transform:uppercase;
  transition:font-size .45s var(--ease);
}
header.trst-scrolled .trst-brand-word{ font-size:16px; }
.trst-brand-word--footer{ color:var(--terracotta); font-size:24px; }

.trst-nav-links{ display:flex; gap:26px; }
.trst-nav-links a{
  font-family:var(--font-heading);
  font-size:12.5px; letter-spacing:.06em; text-transform:uppercase; font-weight:500;
  color:var(--ink); position:relative; padding-bottom:4px; transition:color .3s ease;
  white-space:nowrap;
}
.trst-nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; height:1px; width:0;
  background:var(--terracotta); transition:width .35s var(--ease);
}
.trst-nav-links a:hover{ color:var(--terracotta) !important; }
.trst-nav-links a:hover::after{ width:100%; }

.trst-header-actions{ display:flex; align-items:center; gap:24px; }
.trst-btn-header{
  font-family:var(--font-heading); font-size:13px; font-weight:600; letter-spacing:.04em; text-transform:uppercase;
  color:var(--terracotta); padding:8px 2px; position:relative; transition:color .3s ease;
}
.trst-btn-header::after{
  content:''; position:absolute; left:0; bottom:4px; height:1px; width:100%;
  background:currentColor; transform:scaleX(0); transform-origin:right; transition:transform .35s var(--ease);
}
.trst-btn-header:hover{ color:var(--terracotta-deep) !important; }
.trst-btn-header:hover::after{ transform:scaleX(1); transform-origin:left; }

.trst-burger{ display:none; flex-direction:column; gap:5px; cursor:pointer; z-index:1100; }
.trst-burger span{ width:26px; height:1.6px; background:var(--ink); transition:all .35s var(--ease); }

.trst-mobile-nav{
  position:fixed; inset:0; background:var(--white);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:32px;
  transform:translateY(-100%); transition:transform .55s var(--ease);
  z-index:1050;
}
.trst-mobile-nav.open{ transform:translateY(0); }
.trst-mobile-nav a{ font-size:22px; letter-spacing:.08em; text-transform:uppercase; font-family:var(--font-heading); }
.trst-mobile-nav a:hover{ color:var(--terracotta) !important; }
.trst-mobile-nav-visit{ margin-top:10px; font-size:14px !important; letter-spacing:.06em !important; padding:15px 36px !important; color:#fff !important; }
.trst-mobile-nav-visit:hover{ color:#fff !important; }

/* ================= SECTIONS ================= */
.trst-section{ padding:120px 0; }
.trst-section-tight{ padding:90px 0; }
.trst-bg-cream{ background:var(--cream); }

/* ---------- HERO ---------- */
.trst-hero{
  min-height:100vh; min-height:100svh;
  display:flex; align-items:center; justify-content:center; text-align:center;
  position:relative; padding-top:128px; padding-bottom:80px;
  background:var(--ink); overflow:hidden;
}
.trst-hero-slider{ position:absolute; inset:0; z-index:0; }
.trst-hero-slide{
  position:absolute; inset:0; background-size:cover; background-position:center;
  opacity:0; transform:scale(1.06); transition:opacity 1.6s ease;
}
.trst-hero-slide.is-active{ opacity:1; animation:trstKenBurns 9s ease-out forwards; }
@keyframes trstKenBurns{ from{ transform:scale(1.06);} to{ transform:scale(1);} }
.trst-hero-scrim{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(20,13,9,.62) 0%, rgba(20,13,9,.5) 45%, rgba(20,13,9,.8) 100%);
}
.trst-hero-dots{ position:absolute; z-index:3; right:34px; top:50%; transform:translateY(-50%); display:flex; flex-direction:column; gap:10px; }
.trst-hero-dot{ width:8px; height:8px; border-radius:50%; border:1px solid rgba(255,255,255,.6); background:transparent; cursor:pointer; padding:0; transition:background .35s ease, transform .35s ease; }
.trst-hero-dot.is-active{ background:#fff; transform:scale(1.3); }
@media (max-width:760px){ .trst-hero-dots{ right:16px; gap:8px; } }

.trst-hero-inner{ position:relative; z-index:5; max-width:760px; margin-inline:auto; }
.trst-hero h1{
  font-size:clamp(38px, 6vw, 70px); letter-spacing:-.01em; color:#fff;
  text-shadow:0 2px 14px rgba(0,0,0,.55), 0 0 46px rgba(0,0,0,.35);
  opacity:0; transform:translateY(30px); animation:trstHeroUp 1.1s var(--ease) .35s forwards;
}
.trst-subtitle{
  margin-top:22px; font-size:clamp(16px,2vw,20px); font-style:italic; font-weight:400;
  color:rgba(255,255,255,.92);
  text-shadow:0 2px 10px rgba(0,0,0,.5);
  opacity:0; transform:translateY(30px); animation:trstHeroUp 1.1s var(--ease) .55s forwards;
}
.trst-hero-ctas{
  margin-top:44px; display:flex; gap:18px; justify-content:center; flex-wrap:wrap;
  opacity:0; transform:translateY(30px); animation:trstHeroUp 1.1s var(--ease) .75s forwards;
}
.trst-hero-ctas .trst-btn-outline{ border-color:rgba(255,255,255,.55); color:#fff; }
.trst-hero-ctas .trst-btn-outline:hover{ border-color:#fff !important; color:#fff !important; background:rgba(255,255,255,.08); }
@keyframes trstHeroUp{ to{ opacity:1; transform:translateY(0);} }

.trst-scroll-cue{
  position:absolute; bottom:38px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color:rgba(255,255,255,.85); font-size:11px; letter-spacing:.24em; text-transform:uppercase;
  opacity:0; animation:trstFadeSimple 1s ease 1.3s forwards; z-index:2;
}
@keyframes trstFadeSimple{ to{ opacity:.85; } }
.trst-chev{ width:14px; height:14px; border-right:1.4px solid rgba(255,255,255,.85); border-bottom:1.4px solid rgba(255,255,255,.85); transform:rotate(45deg); animation:trstChevBounce 1.8s ease-in-out infinite; }
@keyframes trstChevBounce{ 0%,100%{ transform:translateY(0) rotate(45deg);} 50%{ transform:translateY(6px) rotate(45deg);} }

/* ---------- ABOUT ---------- */
.trst-about-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:80px; align-items:center; }
.trst-about-art{
  aspect-ratio:1/1.05; border-radius:6px; overflow:hidden;
  background:linear-gradient(160deg,#fff 0%, var(--cream) 100%);
  border:1px solid var(--line); box-shadow:var(--shadow);
}
.trst-about-copy h2{ font-size:clamp(28px,3.4vw,42px); margin-bottom:24px; max-width:16ch; }
.trst-about-copy p{ font-size:17px; line-height:1.85; color:var(--ink-soft); max-width:52ch; }

/* ---------- SECTION HEAD (Best Sellers / Gallery) ---------- */
.trst-section-head{ text-align:center; max-width:680px; margin:0 auto 56px; }
.trst-section-head p{ font-size:16.5px; color:var(--ink-soft); line-height:1.8; margin-top:14px; }
.trst-gallery-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:30px; flex-wrap:wrap; margin-bottom:56px; }
.trst-gallery-head h2{ font-size:clamp(28px,3.4vw,42px); max-width:14ch; }
.trst-gallery-head p{ font-size:16.5px; color:var(--ink-soft); max-width:42ch; line-height:1.8; }

/* ---------- PRODUCT / GALLERY CARDS (shared style) ---------- */
.trst-product-grid, .trst-gallery-grid{ display:grid !important; gap:22px; }
.trst-product-grid{ grid-template-columns:repeat(4,1fr) !important; }
.trst-gallery-grid{ grid-template-columns:repeat(3,1fr) !important; }
.trst-pcard, .trst-gcard{
  aspect-ratio:3/4; border-radius:6px; padding:26px;
  display:flex; flex-direction:column; justify-content:flex-end; gap:4px;
  position:relative; overflow:hidden;
  transition:transform .6s var(--ease), box-shadow .6s var(--ease);
  border:1px solid var(--line); isolation:isolate;
}
.trst-pcard:hover, .trst-gcard:hover{ transform:translateY(-8px); box-shadow:0 24px 50px rgba(43,29,22,.18); }
.trst-pcard img, .trst-gcard img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition:transform 1s var(--ease); z-index:-2;
}
.trst-pcard:hover img, .trst-gcard:hover img{ transform:scale(1.07); }
.trst-pcard::after, .trst-gcard::after{
  content:''; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(180deg, rgba(30,20,14,0) 35%, rgba(30,20,14,.78) 100%);
}
.trst-pcard h4, .trst-gcard h4{ font-size:18px; font-weight:600; position:relative; z-index:2; color:#fff; }
.trst-pcard span, .trst-gcard span{ font-size:12.5px; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.78); position:relative; z-index:2; }

.trst-tilt{ transition:transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .6s var(--ease); transform-style:preserve-3d; will-change:transform; }

/* ---------- OUR BRANCH ---------- */
.trst-branch{ display:grid; grid-template-columns:1fr 1fr; gap:0; border-radius:8px; overflow:hidden; box-shadow:var(--shadow); }
.trst-branch-info{ background:var(--terracotta); color:#fff; padding:70px 60px; display:flex; flex-direction:column; justify-content:center; gap:26px; }
.trst-branch-info .trst-eyebrow{ color:#e8caa8; }
.trst-branch-info h2{ font-size:clamp(26px,3vw,38px); max-width:14ch; }
.trst-branch-info p{ font-size:16.5px; line-height:1.85; color:rgba(255,255,255,.9); max-width:44ch; }
.trst-branch-list{ display:flex; flex-direction:column; gap:14px; margin-top:6px; }
.trst-branch-list li{ display:flex; gap:14px; font-size:15px; color:rgba(255,255,255,.95); align-items:flex-start; }
.trst-branch-list svg{ flex:none; width:18px; height:18px; margin-top:3px; }
.trst-branch-map{ min-height:420px; }
.trst-branch-map iframe{ width:100%; height:100%; border:0; filter:saturate(.2) sepia(.15) contrast(1.02); min-height:420px; }

/* ---------- CALL TO ACTION ---------- */
.trst-cta{
  background:linear-gradient(160deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
  padding:110px 0; text-align:center;
}
.trst-cta-inner{ max-width:640px; margin-inline:auto; }
.trst-cta h2{ color:#fff; font-size:clamp(28px,3.6vw,44px); margin-bottom:18px; }
.trst-cta p{ color:rgba(255,255,255,.88); font-size:17px; line-height:1.8; margin-bottom:8px; }

/* ---------- FOOTER — centered, white background ---------- */
footer{ background:#ffffff !important; color:var(--ink); padding:80px 0 40px; border-top:1px solid var(--line); }
.trst-footer-centered{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:22px; }
.trst-footer-centered .trst-brand-word--footer{ display:inline-block; }
.trst-footer-tagline{ font-size:15px; line-height:1.8; color:var(--ink-soft); max-width:46ch; margin-top:-4px; }

.trst-footer-nav{ display:flex; flex-wrap:wrap; justify-content:center; gap:28px; margin-top:6px; }
.trst-footer-nav a{ font-family:var(--font-heading); font-size:13px; letter-spacing:.1em; text-transform:uppercase; color:var(--ink); transition:color .3s ease; }
.trst-footer-nav a:hover{ color:var(--terracotta) !important; }

.trst-footer-info{ display:flex; flex-wrap:wrap; justify-content:center; gap:10px 22px; font-size:14.5px; color:var(--ink-soft); }
.trst-footer-info li::after{ content:'·'; margin-left:22px; color:var(--line); }
.trst-footer-info li:last-child::after{ content:''; margin:0; }

.trst-footer-social{ display:flex; gap:14px; }
.trst-footer-social a{
  width:36px; height:36px; border:1px solid var(--line); border-radius:50%; color:var(--terracotta);
  display:flex; align-items:center; justify-content:center; transition:background .35s ease, border-color .35s ease;
}
.trst-footer-social a:hover{ background:var(--cream); border-color:var(--terracotta); }
.trst-footer-social svg{ width:15px; height:15px; }

.trst-footer-bottom{
  display:flex; justify-content:center; align-items:center; gap:6px 24px; flex-wrap:wrap;
  padding-top:26px; margin-top:12px; width:100%;
  border-top:1px solid var(--line);
  font-size:13px; color:var(--ink-soft);
}
.trst-footer-bottom a{ color:var(--ink-soft); }
.trst-footer-bottom a:hover{ color:var(--terracotta) !important; }

/* ================= RESPONSIVE ================= */
@media (max-width:1100px){
  .trst-nav-links{ display:none; }
  .trst-burger{ display:flex; }
}
@media (max-width:980px){
  .trst-nav-links{ display:none; }
  .trst-burger{ display:flex; }
  .trst-about-grid{ grid-template-columns:1fr; gap:50px; }
  .trst-about-art{ max-width:360px; margin-inline:auto; }
  .trst-branch{ grid-template-columns:1fr; }
  .trst-product-grid, .trst-gallery-grid{ grid-template-columns:repeat(2,1fr) !important; }
}
@media (max-width:560px){
  .trst-container{ width:min(560px, 100% - 40px); }
  .trst-section{ padding:86px 0; }
  .trst-section-tight{ padding:60px 0; }
  .trst-product-grid, .trst-gallery-grid{ grid-template-columns:1fr !important; }
  .trst-footer-nav{ gap:16px 22px; }
  .trst-footer-info li::after{ margin-left:14px; }
  .trst-branch-info{ padding:50px 30px; }
  .trst-btn-header{ display:none; }
  .trst-cta{ padding:80px 0; }
}
@media (max-width:400px){
  .trst-brand-word{ font-size:15px; }
  header.trst-scrolled .trst-brand-word{ font-size:13px; }
  .trst-brand-img--header{ height:min(var(--logo-h, 44px), 34px); }
  header.trst-scrolled .trst-brand-img--header{ height:min(calc(var(--logo-h, 44px) - 10px), 28px); }
}

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
  .trst-reveal{ opacity:1; transform:none; }
  .trst-hero-slide.is-active{ animation:none; transform:scale(1); }
}

/* ================= MENU (bilingual EN/AR) ================= */
.trst-page-hero{
  padding:172px 0 70px;
  text-align:center;
  background:
    radial-gradient(circle at 16% 20%, rgba(157,34,36,.06), transparent 45%),
    radial-gradient(circle at 86% 80%, rgba(157,34,36,.05), transparent 50%),
    var(--white);
}
.trst-page-hero h1{ font-size:clamp(34px,5vw,58px); }
.trst-page-hero p{ margin-top:16px; font-size:17px; font-style:italic; color:var(--ink-soft); }
@media (max-width:560px){ .trst-page-hero{ padding:140px 0 50px; } }

.trst-menu-toolbar{
  position:sticky; top:84px; z-index:60;
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  padding:16px 0 28px;
  background:var(--white);
}
.trst-tabs{ display:flex; gap:8px; background:var(--cream); padding:6px; border-radius:40px; }
.trst-tab-btn{
  padding:11px 22px; border-radius:40px; font-family:var(--font-heading); font-size:14px; font-weight:600;
  letter-spacing:.03em; color:var(--ink-soft); cursor:pointer; border:none; background:transparent;
  transition:background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  white-space:nowrap;
}
.trst-tab-btn.active{ background:var(--terracotta) !important; color:#fff !important; box-shadow:0 8px 20px rgba(157,34,36,.25); }

.trst-lang-switch{ display:flex; align-items:center; gap:0; border:1px solid var(--line); border-radius:40px; padding:4px; }
.trst-lang-btn{
  padding:9px 20px; border-radius:40px; font-size:13.5px; font-weight:600; letter-spacing:.05em;
  color:var(--ink-soft); cursor:pointer; border:none; background:transparent;
  transition:background .35s var(--ease), color .35s var(--ease);
}
.trst-lang-btn.active{ background:var(--ink) !important; color:#fff !important; }

/* menu sections */
.trst-menu-section{ margin-bottom:64px; }
.trst-menu-section-title{ display:flex; align-items:center; gap:18px; margin-bottom:30px; }
.trst-menu-section-title h2{ font-size:clamp(22px,2.6vw,30px); white-space:nowrap; }
.trst-menu-section-title .trst-rule{ height:1px; width:100%; background:var(--line); }

.trst-menu-list{ display:flex; flex-direction:column; }
.trst-menu-item{
  display:flex; flex-wrap:wrap; justify-content:space-between; align-items:baseline; gap:4px 18px;
  padding:18px 0; border-bottom:1px solid var(--line);
}
.trst-menu-item:last-child{ border-bottom:none; }
.trst-menu-item-main{ flex:1 1 240px; min-width:0; }
.trst-menu-item-name{ display:flex; align-items:baseline; gap:10px; flex-wrap:wrap; }
.trst-menu-item-name h4{ font-size:17px; font-weight:600; }
.trst-menu-item-desc{ font-size:14.5px; color:var(--ink-soft); margin-top:5px; line-height:1.6; max-width:56ch; }
.trst-menu-item-price{
  font-size:17px; font-weight:600; color:var(--terracotta); white-space:nowrap; flex:0 0 auto;
  display:flex; flex-direction:column; align-items:flex-end; gap:2px;
}
.trst-menu-item-price small{ font-size:11px; font-weight:500; color:var(--ink-soft); text-transform:none; }
.trst-price-variants{ display:flex; flex-direction:column; align-items:flex-end; gap:3px; flex:0 0 auto; }
.trst-price-variants .trst-pv{ display:flex; gap:8px; align-items:baseline; font-size:15px; white-space:nowrap; }
.trst-price-variants .trst-pv .trst-lbl{ font-size:11.5px; color:var(--ink-soft); font-weight:500; text-transform:uppercase; letter-spacing:.04em; }

/* featured / framed item */
.trst-menu-feature{
  border:1px solid var(--terracotta); border-radius:6px; padding:26px 30px; margin:8px 0 34px;
  display:flex; justify-content:space-between; align-items:center; gap:14px 20px; flex-wrap:wrap;
  background:linear-gradient(160deg,#fff, var(--cream));
}
.trst-menu-feature > div:first-child{ flex:1 1 220px; }
.trst-menu-feature h4{ font-size:19px; }
.trst-menu-feature p{ font-size:14px; color:var(--ink-soft); margin-top:6px; max-width:48ch; }
.trst-menu-feature .trst-menu-item-price{ font-size:20px; flex:0 0 auto; }

.trst-menu-note{
  text-align:center; font-size:13.5px; color:var(--ink-soft); font-style:italic;
  border-top:1px solid var(--line); padding-top:28px; margin-top:10px;
}

.trst-menu-panel{ display:none; }
.trst-menu-panel.active{ display:block; }

/* ---------- EN/AR toggle — both languages are rendered server-side,
   CSS just shows/hides the matching span. No JS templating needed. ---------- */
.trst-i18n-ar{ display:none; direction:rtl; font-family:'Amiri', serif; unicode-bidi:isolate; }
.trst-i18n-en{ display:inline; unicode-bidi:isolate; }
#trstMenuArea.lang-ar .trst-i18n-en{ display:none; }
#trstMenuArea.lang-ar .trst-i18n-ar{ display:inline; }
#trstMenuArea.lang-ar{ direction:rtl; }
#trstMenuArea.lang-ar .trst-eyebrow{ letter-spacing:0; }
#trstMenuArea.lang-ar .trst-menu-item-name{ direction:rtl; }
#trstMenuArea.lang-ar .trst-menu-item-desc{ direction:rtl; }

/* ---------- Mobile ---------- */
@media (max-width:640px){
  .trst-menu-toolbar{ flex-direction:column; align-items:center; gap:14px; top:76px; }
  .trst-tabs{ overflow-x:auto; justify-content:flex-start; max-width:100%; scrollbar-width:none; -ms-overflow-style:none; }
  .trst-tabs::-webkit-scrollbar{ display:none; }
  .trst-menu-section{ margin-bottom:48px; }
  .trst-menu-section-title{ gap:14px; margin-bottom:22px; }
  .trst-menu-section-title h2{ font-size:20px; }
  .trst-menu-item{ padding:15px 0; gap:2px 14px; }
  .trst-menu-item-name h4{ font-size:15.5px; }
  .trst-menu-item-desc{ font-size:13.5px; max-width:none; }
  .trst-menu-item-price{ font-size:15.5px; }
  .trst-price-variants .trst-pv{ font-size:14px; }
  .trst-menu-feature{ padding:20px; }
}

