/* =========================================================================
   Dr. Seham Qadous — Stylesheet
   Design tokens
   ========================================================================= */
:root{
  /* Palette */
  --ink:            #12302E;   /* deep teal-charcoal for text/dark surfaces */
  --ink-soft:       #2C4A47;
  --primary:        #0F6B64;   /* muted deep teal — brand */
  --primary-dark:   #0B4F4A;
  --primary-light:  #DCEEEA;   /* pale teal wash */
  --paper:          #FBF8F2;   /* warm paper background, not stark white */
  --paper-alt:      #F3EEE3;
  --sand:           #EFE6D8;
  --gold:           #C69B4C;   /* muted warm accent for highlights/rating */
  --coral:          #E08A6B;   /* secondary warm accent, used sparingly */
  --line:           #E4DECF;
  --white:          #FFFFFF;
  --text-muted:     #5C6E6B;
  --danger:         #C6564A;
  --success:        #3C8F6E;

  /* Type */
  --font-display: 'Cairo', 'Tajawal', sans-serif;
  --font-body:    'Tajawal', 'Cairo', sans-serif;

  /* Radii / shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(18,48,46,0.06);
  --shadow-md: 0 10px 30px rgba(18,48,46,0.10);
  --shadow-lg: 0 20px 60px rgba(18,48,46,0.16);

  --container: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  background:var(--paper);
  color:var(--ink);
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:800;
  line-height:1.3;
  margin:0 0 .6em;
  color:var(--ink);
}
p{ margin:0 0 1em; }
.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }

/* RTL / LTR direction helpers */
html[dir="rtl"] .flip-icon{ transform:scaleX(-1); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* =========================================================================
   Reveal-on-scroll
   ========================================================================= */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 30px; border-radius:999px; border:2px solid transparent;
  font-weight:700; font-size:16px; transition:all .25s ease; white-space:nowrap;
}
.btn-primary{ background:var(--primary); color:var(--white); box-shadow:var(--shadow-sm); }
.btn-primary:hover{ background:var(--primary-dark); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-outline{ background:transparent; border-color:var(--primary); color:var(--primary); }
.btn-outline:hover{ background:var(--primary-light); }
.btn-ghost-white{ background:var(--white); color:var(--primary-dark); }
.btn-ghost-white:hover{ background:var(--primary-light); transform:translateY(-2px); }
.btn-block{ width:100%; }
.btn-lg{ padding:18px 38px; font-size:18px; }
.btn[disabled]{ opacity:.6; cursor:not-allowed; transform:none !important; }

/* =========================================================================
   Header / Nav
   ========================================================================= */
.site-header{
  position:fixed; inset-inline:0; top:0; z-index:1000;
  background:rgba(251,248,242,0.85); backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.site-header.scrolled{ box-shadow:var(--shadow-sm); border-color:var(--line); }
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; padding:16px 24px; max-width:var(--container); margin:0 auto; }
.brand{ display:flex; align-items:center; gap:12px; font-family:var(--font-display); font-weight:800; font-size:20px; color:var(--ink); }
.brand-mark{
  width:44px; height:44px; border-radius:50%; background:linear-gradient(145deg,var(--primary),var(--primary-dark));
  color:#fff; display:flex; align-items:center; justify-content:center; font-size:18px; font-weight:800; flex-shrink:0;
}
.brand small{ display:block; font-family:var(--font-body); font-weight:500; font-size:12.5px; color:var(--text-muted); }

.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{ font-weight:600; font-size:15.5px; color:var(--ink-soft); position:relative; padding:6px 0; }
.nav-links a::after{ content:''; position:absolute; bottom:0; inset-inline:0; height:2px; background:var(--primary); transform:scaleX(0); transition:transform .25s ease; }
.nav-links a:hover::after{ transform:scaleX(1); }

.nav-actions{ display:flex; align-items:center; gap:14px; }
.lang-switch{
  display:flex; align-items:center; gap:6px; background:var(--white); border:1px solid var(--line);
  border-radius:999px; padding:4px; font-size:13.5px; font-weight:700;
}
.lang-switch button{
  border:none; background:transparent; padding:7px 13px; border-radius:999px; color:var(--text-muted); transition:all .2s ease;
}
.lang-switch button.active{ background:var(--primary); color:#fff; }

.nav-toggle{ display:none; width:42px; height:42px; border-radius:10px; border:1px solid var(--line); background:var(--white); align-items:center; justify-content:center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:''; display:block; width:20px; height:2px; background:var(--ink); position:relative; transition:.25s;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero{
  position:relative; padding:150px 0 90px; overflow:hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, var(--primary-light) 0%, transparent 60%),
    radial-gradient(700px 500px at -10% 20%, var(--sand) 0%, transparent 55%),
    var(--paper);
}
.hero-grid{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:60px; align-items:center; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px; background:var(--white); border:1px solid var(--line);
  padding:8px 16px; border-radius:999px; font-size:13.5px; font-weight:700; color:var(--primary-dark); margin-bottom:22px;
  box-shadow:var(--shadow-sm);
}
.eyebrow .dot{ width:8px; height:8px; border-radius:50%; background:var(--success); box-shadow:0 0 0 3px rgba(60,143,110,.2); }
.hero h1{ font-size:clamp(34px,4.6vw,56px); margin-bottom:22px; }
.hero h1 .accent{ color:var(--primary); }
.hero-sub{ font-size:19px; color:var(--ink-soft); max-width:560px; margin-bottom:32px; }
.hero-cta-row{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:38px; }

.hero-trust{ display:flex; gap:28px; flex-wrap:wrap; }
.hero-trust .item{ display:flex; align-items:center; gap:10px; font-size:14.5px; font-weight:600; color:var(--ink-soft); }
.hero-trust svg{ color:var(--primary); flex-shrink:0; }

.hero-media{ position:relative; }
.hero-photo-card{
  position:relative; border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-lg);
  aspect-ratio:4/4.7; background:var(--sand);
}
.hero-photo-card img{ width:100%; height:100%; object-fit:cover; }

.floating-card{
  position:absolute; background:var(--white); border-radius:var(--r-md); box-shadow:var(--shadow-lg);
  padding:16px 18px; display:flex; align-items:center; gap:12px; z-index:5;
}
.floating-card.rating-card{ top:24px; inset-inline-start:-28px; }
.floating-card .stars{ color:var(--gold); font-size:14px; letter-spacing:2px; }
.floating-card .num{ font-family:var(--font-display); font-weight:800; font-size:20px; }
.floating-card.avail-card{ bottom:26px; inset-inline-end:-24px; min-width:220px; }
.avail-card .avail-icon{ width:42px; height:42px; border-radius:50%; background:var(--primary-light); display:flex; align-items:center; justify-content:center; color:var(--primary); flex-shrink:0; }
.avail-card strong{ display:block; font-size:14.5px; }
.avail-card span{ font-size:12.5px; color:var(--text-muted); }

/* =========================================================================
   Section shell
   ========================================================================= */
.section{ padding:96px 0; }
.section-alt{ background:var(--paper-alt); }
.section-dark{ background:linear-gradient(160deg,var(--primary-dark),var(--ink)); color:#fff; }
.section-dark h2, .section-dark p{ color:#fff; }
.section-head{ text-align:center; max-width:680px; margin:0 auto 56px; }
.section-head .eyebrow{ margin-inline:auto; }
.section-head h2{ font-size:clamp(28px,3.4vw,40px); }
.section-head p{ color:var(--text-muted); font-size:17.5px; }

/* =========================================================================
   Highlights
   ========================================================================= */
.highlight-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.highlight-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--r-md); padding:30px 24px;
  text-align:center; transition:transform .25s ease, box-shadow .25s ease;
}
.highlight-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.icon-badge{
  width:58px; height:58px; border-radius:16px; background:var(--primary-light); color:var(--primary);
  display:flex; align-items:center; justify-content:center; margin:0 auto 18px;
}
.highlight-card h3{ font-size:18px; margin-bottom:6px; }
.highlight-card p{ font-size:14.5px; color:var(--text-muted); margin:0; }

/* =========================================================================
   How it works (steps)
   ========================================================================= */
.steps-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; counter-reset:step; }
.step-card{
  position:relative; background:var(--white); border-radius:var(--r-md); padding:40px 28px 30px;
  border:1px solid var(--line);
}
.step-num{
  position:absolute; top:-20px; inset-inline-start:28px; width:46px; height:46px; border-radius:50%;
  background:var(--primary); color:#fff; display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:800; font-size:19px; box-shadow:var(--shadow-md);
}
.step-card h3{ font-size:19px; margin:6px 0 8px; }
.step-card p{ color:var(--text-muted); margin:0; font-size:15px; }

/* =========================================================================
   About
   ========================================================================= */
.about-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:56px; align-items:center; }
.about-photo{ position:relative; border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-lg); }
.about-photo img{ width:100%; }
.about-content h2{ font-size:clamp(26px,3.2vw,36px); }
.credential-list{ display:flex; flex-direction:column; gap:16px; margin:26px 0; }
.credential-item{ display:flex; gap:14px; align-items:flex-start; }
.credential-item .ic{ width:38px; height:38px; border-radius:10px; background:var(--primary-light); color:var(--primary); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.credential-item strong{ display:block; font-size:15.5px; }
.credential-item span{ font-size:14px; color:var(--text-muted); }

.specialty-chip-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; }
.chip{ background:var(--primary-light); color:var(--primary-dark); font-size:13.5px; font-weight:700; padding:9px 16px; border-radius:999px; }

/* =========================================================================
   Services
   ========================================================================= */
.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.service-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--r-md); padding:32px 26px;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; }
.service-icon{
  width:56px; height:56px; border-radius:14px; margin-bottom:20px;
  background:linear-gradient(145deg,var(--primary),var(--primary-dark)); color:#fff;
  display:flex; align-items:center; justify-content:center;
}
.service-card h3{ font-size:19px; margin-bottom:8px; }
.service-card p{ font-size:14.5px; color:var(--text-muted); margin:0; }

/* =========================================================================
   Booking section
   ========================================================================= */
.booking-shell{
  display:grid; grid-template-columns:1fr 1.3fr; gap:0; background:var(--white);
  border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-lg); border:1px solid var(--line);
}
.booking-info{
  background:linear-gradient(165deg,var(--primary-dark),var(--ink)); color:#fff; padding:48px 40px;
  display:flex; flex-direction:column; justify-content:space-between;
}
.booking-info h3{ color:#fff; font-size:26px; }
.booking-info p{ color:rgba(255,255,255,.82); }
.booking-info-list{ display:flex; flex-direction:column; gap:16px; margin:20px 0; }
.booking-info-list li{ display:flex; align-items:flex-start; gap:12px; font-size:14.5px; color:rgba(255,255,255,.92); }
.booking-info-list svg{ flex-shrink:0; margin-top:2px; color:var(--gold); }
.booking-whatsapp{
  display:flex; align-items:center; gap:12px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.25);
  border-radius:var(--r-md); padding:16px 18px; margin-top:12px;
}
.booking-whatsapp .ic{ width:40px; height:40px; border-radius:50%; background:#fff; color:var(--primary-dark); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.booking-whatsapp a{ font-weight:700; text-decoration:underline; }

.booking-form-area{ padding:44px 40px; }
.booking-steps-tab{ display:flex; gap:10px; margin-bottom:28px; }
.booking-steps-tab .tstep{
  flex:1; text-align:center; padding:10px 6px; border-radius:999px; background:var(--paper-alt); font-size:13px; font-weight:700; color:var(--text-muted);
}
.booking-steps-tab .tstep.active{ background:var(--primary); color:#fff; }

.calendar-nav{ display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.calendar-nav button{ width:36px; height:36px; border-radius:50%; border:1px solid var(--line); background:var(--white); display:flex; align-items:center; justify-content:center; color:var(--primary); }
.calendar-nav button:hover{ background:var(--primary-light); }
.calendar-nav .month-label{ font-weight:800; font-family:var(--font-display); font-size:16.5px; }

.day-strip{ display:grid; grid-template-columns:repeat(7,1fr); gap:8px; margin-bottom:22px; }
.day-pill{
  border:1px solid var(--line); border-radius:12px; padding:10px 4px; text-align:center; background:var(--white);
  font-size:12.5px; color:var(--ink-soft); transition:all .2s ease;
}
.day-pill .wd{ display:block; font-size:11px; color:var(--text-muted); margin-bottom:4px; }
.day-pill .dn{ display:block; font-weight:800; font-size:15px; font-family:var(--font-display); }
.day-pill.has-slots{ border-color:var(--primary); cursor:pointer; }
.day-pill.has-slots:hover{ background:var(--primary-light); }
.day-pill.selected{ background:var(--primary); border-color:var(--primary); color:#fff; }
.day-pill.selected .wd{ color:rgba(255,255,255,.8); }
.day-pill.disabled{ opacity:.35; }

.time-slot-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:8px; min-height:52px; }
.time-slot{
  border:1px solid var(--line); background:var(--white); border-radius:10px; padding:11px 6px; font-size:14px; font-weight:700; color:var(--ink-soft);
  transition:all .2s ease; text-align:center;
}
.time-slot:hover{ border-color:var(--primary); color:var(--primary); }
.time-slot.selected{ background:var(--primary); border-color:var(--primary); color:#fff; }
.empty-note{ grid-column:1/-1; text-align:center; color:var(--text-muted); font-size:14px; padding:14px 0; }

.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:26px; }
.form-grid .full{ grid-column:1/-1; }
.field label{ display:flex; align-items:center; gap:8px; font-weight:700; font-size:14.5px; margin-bottom:8px; }
.field label .req{ color:var(--danger); }
.field input, .field select, .field textarea{
  width:100%; padding:13px 15px; border-radius:10px; border:1px solid var(--line); background:var(--paper);
  font-family:inherit; font-size:14.5px; color:var(--ink); transition:border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--primary); box-shadow:0 0 0 3px var(--primary-light); }
.field .err{ color:var(--danger); font-size:13px; margin-top:5px; }
.field.has-err input, .field.has-err select, .field.has-err textarea{ border-color:var(--danger); }

.consent-row{ display:flex; align-items:flex-start; gap:10px; margin-top:22px; }
.consent-row input{ margin-top:4px; width:18px; height:18px; accent-color:var(--primary); flex-shrink:0; }
.consent-row span{ font-size:13.5px; color:var(--text-muted); }
.consent-row a{ color:var(--primary); font-weight:700; text-decoration:underline; }

.selected-summary{
  display:flex; align-items:center; gap:10px; background:var(--primary-light); color:var(--primary-dark);
  border-radius:10px; padding:12px 16px; font-size:14px; font-weight:700; margin-top:20px;
}

.form-msg{ margin-top:18px; border-radius:10px; padding:14px 16px; font-size:14.5px; font-weight:600; display:none; }
.form-msg.show{ display:block; }
.form-msg.ok{ background:#E4F3EC; color:var(--success); }
.form-msg.error{ background:#FBE7E4; color:var(--danger); }

.booking-success{ text-align:center; padding:20px 0; }
.booking-success .ic{ width:76px; height:76px; border-radius:50%; background:var(--primary-light); color:var(--primary); display:flex; align-items:center; justify-content:center; margin:0 auto 20px; }

/* =========================================================================
   Testimonials
   ========================================================================= */
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testi-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--r-md); padding:28px; }
.testi-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.testi-avatar{ width:46px; height:46px; border-radius:50%; background:var(--primary); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:14px; }
.testi-stars{ color:var(--gold); font-size:14px; letter-spacing:2px; }
.testi-card p{ font-style:italic; color:var(--ink-soft); margin:0; font-size:15px; }

/* =========================================================================
   FAQ (accordion)
   ========================================================================= */
.faq-list{ max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{ background:var(--white); border:1px solid var(--line); border-radius:var(--r-md); overflow:hidden; }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:20px 24px; background:transparent; border:none; text-align:start; font-weight:700; font-size:16px; color:var(--ink);
}
.faq-q .plus{ flex-shrink:0; width:26px; height:26px; border-radius:50%; background:var(--primary-light); color:var(--primary); display:flex; align-items:center; justify-content:center; transition:transform .25s ease; }
.faq-item.open .faq-q .plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-a-inner{ padding:0 24px 22px; color:var(--text-muted); font-size:14.5px; }

/* =========================================================================
   Contact
   ========================================================================= */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.contact-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--r-md); padding:26px; display:flex; gap:16px; align-items:flex-start; margin-bottom:20px; }
.contact-card .ic{ width:46px; height:46px; border-radius:12px; background:var(--primary-light); color:var(--primary); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-card h4{ font-size:16.5px; margin-bottom:4px; }
.contact-card p{ margin:0; color:var(--text-muted); font-size:14.5px; }
.contact-map{ border-radius:var(--r-md); overflow:hidden; border:1px solid var(--line); min-height:220px; }

/* =========================================================================
   CTA banner
   ========================================================================= */
.cta-banner{
  background:linear-gradient(120deg,var(--primary),var(--primary-dark)); border-radius:var(--r-lg);
  padding:60px 40px; text-align:center; color:#fff; position:relative; overflow:hidden;
}
.cta-banner h2{ color:#fff; font-size:clamp(26px,3.4vw,38px); }
.cta-banner p{ color:rgba(255,255,255,.88); font-size:17px; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer{ background:var(--ink); color:rgba(255,255,255,.78); padding:64px 0 26px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:40px; margin-bottom:44px; }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:14px; font-family:var(--font-display); font-weight:800; font-size:19px; color:#fff; }
.footer-col h4{ color:#fff; font-size:15.5px; margin-bottom:16px; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:14.5px; color:rgba(255,255,255,.72); }
.footer-col a:hover{ color:#fff; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.12); padding-top:22px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:13.5px; color:rgba(255,255,255,.55); }
.footer-admin-link{ font-size:13px; color:rgba(255,255,255,.4) !important; }

/* =========================================================================
   Utility / misc
   ========================================================================= */
.whatsapp-fab{
  position:fixed; bottom:26px; inset-inline-end:26px; z-index:900; width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-lg);
  transition:transform .2s ease;
}
.whatsapp-fab:hover{ transform:scale(1.08); }

.skip-link{ position:absolute; inset-inline-start:-999px; top:0; background:var(--primary); color:#fff; padding:10px 18px; z-index:2000; border-radius:0 0 10px 0; }
.skip-link:focus{ inset-inline-start:0; }

:focus-visible{ outline:3px solid var(--gold); outline-offset:2px; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 980px){
  .hero-grid, .about-grid, .booking-shell, .contact-grid{ grid-template-columns:1fr; }
  .hero-media{ order:-1; max-width:380px; margin:0 auto 20px; }
  .highlight-grid, .steps-grid, .services-grid, .testi-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .nav-links{ display:none; }
  .nav-toggle{ display:flex; }
}
@media (max-width: 640px){
  .highlight-grid, .steps-grid, .services-grid, .testi-grid, .footer-grid{ grid-template-columns:1fr; }
  .form-grid{ grid-template-columns:1fr; }
  .day-strip{ grid-template-columns:repeat(4,1fr); }
  .time-slot-grid{ grid-template-columns:repeat(2,1fr); }
  .booking-info, .booking-form-area{ padding:32px 22px; }
  .hero{ padding:120px 0 60px; }
  .floating-card{ display:none; }
  .section{ padding:64px 0; }
}

/* Mobile nav drawer */
.mobile-drawer{
  position:fixed; inset:0; background:rgba(18,48,46,.5); z-index:1100; opacity:0; pointer-events:none; transition:opacity .25s ease;
}
.mobile-drawer.open{ opacity:1; pointer-events:auto; }
.mobile-drawer-panel{
  position:absolute; top:0; inset-inline-end:0; width:78%; max-width:320px; height:100%; background:var(--paper);
  padding:26px; transform:translateX(100%); transition:transform .3s ease;
}
html[dir="rtl"] .mobile-drawer-panel{ transform:translateX(-100%); }
.mobile-drawer.open .mobile-drawer-panel{ transform:translateX(0); }
.mobile-drawer-panel a{ display:block; padding:14px 4px; font-weight:700; font-size:17px; border-bottom:1px solid var(--line); }
.mobile-drawer-close{ width:38px; height:38px; border-radius:50%; background:var(--white); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
