@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600&family=Aref+Ruqaa&family=Josefin+Sans:wght@300&display=swap');

/* =========================================================
   MSA Apotheca — مسا للأعشاب والعناية
   Custom CSS for Salla (Raed theme) — v3.8
   يُلصق كاملًا في: لوحة سلة ← CSS مخصص
   (سطر @import لازم يبقى أول سطر في الملف)
   ========================================================= */

/* ---------- 1) المتغيرات: الخلفيات من صورة القطن، والخط #686B50 ---------- */
:root {
  --msa-bg:        #FBF8F5;      /* أبيض القطن — خلفية الموقع */
  --msa-bg-rgb:    251 248 245;  /* نفس لون الخلفية (للطبقات الشفافة) */
  --msa-surface:   #EBE5DB;      /* الجدار الكريمي — خلفية البطاقات */
  --msa-line:      #D5CCC1;      /* الحجر — الخطوط الفاصلة */
  --msa-ink:       #686B50;      /* لون الخط — العناوين */
  --msa-ink-soft:  #686B50;      /* لون الخط — النصوص */
  --msa-accent:    #686B50;      /* لون الخط — النصوص الصغيرة والتمييز */

  /* بهتان الصور: 0 = بدون، 0.5 = باهتة جدًا */
  --msa-fade: .28;
  --msa-saturate: .85;

  --msa-font: "IBM Plex Sans Arabic", system-ui, sans-serif;
  /* خط اسم البراند فقط — مستوحى من الشعار */
  --msa-font-brand: "Aref Ruqaa", "IBM Plex Sans Arabic", serif;
  --msa-font-brand-latin: "Josefin Sans", "IBM Plex Sans Arabic", sans-serif;

  --msa-gutter: clamp(16px, 4vw, 48px);
  --msa-max: 1440px;
}

/* ---------- 2) الأساس ---------- */
body {
  background: var(--msa-bg) !important;
  color: var(--msa-ink-soft);
}

/* الخط المعتمد على كامل الموقع (مع استثناء أيقونات سلة) */
body,
body :is(h1, h2, h3, h4, h5, h6, p, a, span, div, li, label, button, input, select, textarea, small, strong):not([class*="sicon"]) {
  font-family: var(--msa-font) !important;
}

.msa-root,
.msa-root * { box-sizing: border-box; }

.msa-root {
  color: var(--msa-ink-soft);
  font-family: var(--msa-font);
  font-weight: 400;
  line-height: 1.8;
}

.msa-root a { color: inherit; text-decoration: none; }
.msa-root img { max-width: 100%; display: block; }

.msa-root :focus-visible {
  outline: 2px solid var(--msa-accent);
  outline-offset: 3px;
}

.msa-latin {
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--msa-accent);
  direction: ltr;
}

/* عناصر الثيم المخفية (يضيف الكلاس الـ JavaScript) */
.msa-hidden { display: none !important; }

/* صفحات المحتوى: إلغاء صور الخلفية (يضيف الكلاس الـ JavaScript) */
.msa-nobg::before,
.msa-nobg::after { background-image: none !important; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* السهم يتجه لليسار بالعربي، ولليمين بالإنجليزي */
.msa-arrow { width: 1.25em; height: 1em; flex: none; }
[dir="ltr"] .msa-arrow { transform: scaleX(-1); }

/* ---------- 3) الهيدر ---------- */
.msa-header {
  background: var(--msa-bg);
  padding: 22px var(--msa-gutter);
  position: relative;
  z-index: 40;
}

.msa-header__inner {
  max-width: var(--msa-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.msa-header__start {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
}

.msa-header__end {
  justify-self: end;
  direction: ltr;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.msa-icons { display: flex; align-items: center; gap: 18px; }

.msa-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--msa-ink);
  cursor: pointer;
  transition: color .2s;
}
.msa-icon:hover { color: var(--msa-accent); }
.msa-icon svg { width: 22px; height: 22px; }

.msa-cart-count {
  position: absolute;
  top: 0;
  inset-inline-end: -2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: var(--msa-ink);
  color: var(--msa-bg);
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

.msa-account { position: relative; display: inline-flex; }

.msa-menu {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-start: 50%;
  translate: -50% 0;
  z-index: 50;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  padding: 6px 0;
  background: var(--msa-bg);
  border: 1px solid var(--msa-line);
}
.msa-menu[hidden] { display: none; }
.msa-menu a,
.msa-menu button {
  padding: 9px 18px;
  border: 0;
  background: none;
  font: inherit;
  font-size: 14px;
  color: var(--msa-ink);
  text-align: start;
  cursor: pointer;
  transition: background-color .2s;
}
.msa-menu a:hover,
.msa-menu button:hover { background: var(--msa-surface); }
.msa-menu [hidden] { display: none; }

.msa-nav { display: flex; align-items: center; gap: 16px; font-size: 15px; white-space: nowrap; }
.msa-nav a { color: var(--msa-ink); transition: color .2s; }
.msa-nav a:hover { color: var(--msa-accent); }

.msa-sep { width: 1px; height: 16px; background: var(--msa-ink); opacity: .35; }

.msa-lang-current { color: var(--msa-ink); }
.msa-lang-link { color: var(--msa-ink-soft); letter-spacing: .08em; }
.msa-lang-link:hover { color: var(--msa-accent); }

/* الشعار */
.msa-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--msa-ink);
}
.msa-root .msa-logo__ar {
  font-family: var(--msa-font-brand) !important;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}
.msa-logo__img { height: clamp(44px, 5vw, 64px); width: auto; }
.msa-root .msa-logo .msa-latin {
  font-family: var(--msa-font-brand-latin) !important;
  font-weight: 300;
  font-size: clamp(9px, 1.1vw, 13px);
  letter-spacing: .32em;
  color: var(--msa-ink-soft);
  white-space: nowrap;
}

/* نافذة البحث */
.msa-search {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgb(104 107 80 / .3);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh var(--msa-gutter) 0;
}
.msa-search[hidden] { display: none; }

.msa-search__box {
  width: min(560px, 100%);
  display: flex;
  gap: 8px;
  background: var(--msa-bg);
  padding: 12px;
  border: 1px solid var(--msa-line);
}
.msa-search__box input {
  flex: 1;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid var(--msa-line);
  background: transparent;
  padding: 10px 4px;
  font-size: 16px;
  color: var(--msa-ink);
  outline: none;
}
.msa-search__box input:focus { border-color: var(--msa-accent); }

/* ---------- 4) الأزرار والروابط ---------- */
.msa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 168px;
  padding: 9px 24px;
  border: 1px solid var(--msa-ink);
  color: var(--msa-ink);
  font-size: 15px;
  background: transparent;
  cursor: pointer;
  transition: background-color .25s, color .25s;
}
.msa-btn:hover { background: var(--msa-ink); color: var(--msa-bg); }

.msa-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--msa-ink);
  font-size: 16px;
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}
.msa-link:hover { border-color: var(--msa-ink); }

/* ---------- 5) بهتان الصور ---------- */
.msa-hero__slide,
.msa-cat__img,
.msa-panel__bg {
  filter: saturate(var(--msa-saturate));
}

.msa-cat__img::after,
.msa-panel__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(var(--msa-bg-rgb) / var(--msa-fade));
}

/* ---------- 6) الهيرو ---------- */
.msa-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(440px, 44vw, 680px);
  padding: 48px 10%;
  background-color: var(--msa-surface);
  overflow: hidden;
}

.msa-hero__slides { position: absolute; inset: 0; }

/* طبقة البهتان + تفتيح جهة النص */
.msa-hero__slides::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgb(var(--msa-bg-rgb) / .85) 0%, rgb(var(--msa-bg-rgb) / .55) 40%, rgb(var(--msa-bg-rgb) / 0) 70%),
    rgb(var(--msa-bg-rgb) / var(--msa-fade));
}

.msa-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.msa-hero__slide.is-active { opacity: 1; }

/* إخفاء زر التشغيل وأدوات الفيديو في الآيفون */
.msa-hero video::-webkit-media-controls,
.msa-hero video::-webkit-media-controls-panel,
.msa-hero video::-webkit-media-controls-overlay-play-button,
.msa-hero video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0 !important;
}
.msa-hero__media { pointer-events: none; }

.msa-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* التركيز على الجزء السفلي من الفيديو (الملح) — 50% 100% = الأسفل تمامًا */
  object-position: 50% 100%;
}

/* فيديو طولي على الشاشات العريضة: يظهر كلوحة طولية يمين الهيرو بدل ما يتمدد */
@media (min-width: 769px) {
  .msa-hero__slide--video { background-color: var(--msa-surface); overflow: hidden; }
  /* خلفية ضبابية من الصورة الاحتياطية خلف اللوحة */
  .msa-hero__slide--video::before {
    content: "";
    position: absolute;
    inset: -40px;
    background: inherit;
    filter: blur(22px);
    opacity: .55;
  }
  .msa-hero__slide--video .msa-hero__media {
    left: auto;
    right: 0;
    width: auto;
    aspect-ratio: 1 / 1; /* لوحة مربعة: يُقص نصف الفيديو العلوي ويظهر الملح أكبر */
  }
}

@media (prefers-reduced-motion: no-preference) {
  .msa-hero__slide { transform: scale(1.06); transition: opacity 1.4s ease, transform 8s ease-out; }
  .msa-hero__slide.is-active { transform: scale(1); }
}

/* النص في الجهة اليسرى */
.msa-hero__content {
  position: relative;
  z-index: 2;
  max-width: 360px;
  margin-right: auto;
}

.msa-hero__title {
  margin: 0 0 14px;
  color: var(--msa-ink);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.35;
}

.msa-hero__text { margin: 0 0 26px; font-size: clamp(15px, 1.3vw, 17px); }

.msa-hero__tag {
  position: absolute;
  z-index: 2;
  left: 3%;
  bottom: 32px;
  margin: 0;
  font-size: 11px;
  line-height: 1.8;
  text-align: left;
}

.msa-hero__dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  translate: -50% 0;
  display: flex;
  gap: 8px;
  direction: ltr;
}

.msa-hero__dot {
  position: relative;
  width: 22px;
  height: 14px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.msa-hero__dot::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 6px;
  height: 2px;
  background: var(--msa-ink);
  opacity: .3;
  transition: opacity .3s;
}
.msa-hero__dot[aria-current="true"]::after,
.msa-hero__dot:hover::after { opacity: .9; }

/* ---------- 7) منتجاتنا ---------- */
.msa-collections {
  padding: clamp(28px, 4vw, 48px) var(--msa-gutter) clamp(24px, 3vw, 36px);
  scroll-margin-top: 16px;
}

.msa-head { text-align: center; margin-bottom: clamp(24px, 3vw, 32px); }
.msa-head h2 {
  margin: 0;
  color: var(--msa-ink);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.3;
}
.msa-head__rule {
  display: block;
  width: 34px;
  height: 1px;
  margin: 12px auto 14px;
  background: var(--msa-ink);
}
.msa-head p { margin: 0; font-size: 16px; }

.msa-cats {
  max-width: var(--msa-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.5vw, 16px);
}

.msa-cat {
  display: flex;
  flex-direction: column;
  background: var(--msa-surface);
}

.msa-cat__img {
  position: relative;
  aspect-ratio: 5 / 4;
  background-color: var(--msa-line);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.msa-cat__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 12px 20px;
  text-align: center;
}
.msa-cat__name { color: var(--msa-ink); font-size: clamp(18px, 1.8vw, 22px); font-weight: 500; }
.msa-cat__body .msa-latin { font-size: 11px; }
.msa-cat__body .msa-arrow {
  margin-top: 8px;
  color: var(--msa-ink);
  width: 26px;
  transition: translate .3s;
}
.msa-cat:hover .msa-arrow { translate: -6px 0; }
[dir="ltr"] .msa-cat:hover .msa-arrow { translate: 6px 0; }

/* ---------- 8) عن التغليف + قصتنا ---------- */
.msa-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.msa-panel {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(300px, 30vw, 440px);
  padding: 40px clamp(24px, 6vw, 64px);
  background-color: var(--msa-surface);
  overflow: hidden;
}

.msa-panel__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
}

/* تفتيح جهة النص */
.msa-panel__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgb(var(--msa-bg-rgb) / .75) 0%, rgb(var(--msa-bg-rgb) / .35) 45%, rgb(var(--msa-bg-rgb) / 0) 70%);
}

/* القسمان: الصورة في النصف الأيمن فقط، بعيدًا عن النص */
.msa-panel { background-color: var(--msa-bg); }
.msa-panel .msa-panel__bg {
  left: 50%;
  background-position: center;
}
.msa-panel .msa-panel__bg::before {
  background: linear-gradient(to right, var(--msa-bg) 0%, rgb(var(--msa-bg-rgb) / .5) 18%, rgb(var(--msa-bg-rgb) / 0) 40%);
}
.msa-panel .msa-panel__text { max-width: min(280px, 44%); }

.msa-panel__text {
  position: relative;
  z-index: 2;
  max-width: 280px;
  margin-right: auto;
}
.msa-panel h2 {
  margin: 0 0 16px;
  color: var(--msa-ink);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 500;
}
.msa-panel p { margin: 0 0 28px; font-size: 15px; }

/* ---------- 9) الفوتر ---------- */
.msa-footer {
  background: var(--msa-bg);
  padding: clamp(32px, 4vw, 48px) var(--msa-gutter) 20px;
}

.msa-footer__inner {
  max-width: var(--msa-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-inline: clamp(0px, 12vw, 180px) 0;
}

.msa-footer__contact h3 {
  margin: 12px 0 14px;
  color: var(--msa-ink);
  font-size: 16px;
  font-weight: 500;
}
.msa-footer__social { display: flex; gap: 12px; }

.msa-footer__brand { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.msa-footer__brand > .msa-latin { font-size: 10px; }

.msa-footer__bottom {
  max-width: var(--msa-max);
  margin: 28px auto 0;
  padding-top: 16px;
  border-top: 1px solid var(--msa-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--msa-accent);
}
.msa-footer__copy { margin-inline-start: auto; }

/* ---------- 10) بطاقات المنتجات (من الثيم) ---------- */
.s-product-card-entry {
  background: var(--msa-surface) !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* الصورة تملأ الإطار بدون أطراف رمادية */
.s-product-card-image {
  background: var(--msa-surface) !important;
}
.s-product-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.s-product-card-content-title,
.s-product-card-content-title a,
.s-product-card-price,
.s-product-card-content-sub,
.s-block__title,
.s-block__title h2 {
  color: var(--msa-ink) !important;
}

.s-product-card-wishlist-btn {
  background: var(--msa-bg) !important;
  box-shadow: none !important;
}

/* ---------- 11) وصف المنتج (موحد لكل المنتجات) ---------- */
.msa-desc,
.msa-desc * {
  text-align: center !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.msa-desc div,
.msa-desc section,
.msa-desc ul {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}
.msa-desc ul { list-style: none !important; }
.msa-desc p,
.msa-desc li {
  margin: 0 0 6px !important;
  padding: 0 !important;
  line-height: 1.9 !important;
  color: var(--msa-ink-soft) !important;
  unicode-bidi: plaintext; /* النقطة في مكانها الصحيح للأسطر الإنجليزية */
  font-size: 15px !important;
}

.msa-desc .msa-desc-title {
  display: block;
  margin: 28px 0 8px !important;
  color: var(--msa-ink) !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}
.msa-desc .msa-desc-icon {
  display: block;
  margin: 0 auto 6px;
  color: var(--msa-ink);
}
.msa-desc .msa-desc-icon svg { width: 22px; height: 22px; margin: 0 auto; display: block; }

/* فاصل رفيع بين الأقسام */
.msa-desc .msa-desc-title::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin: 0 auto 20px;
  background: var(--msa-line);
}

.msa-desc .msa-layer { display: block; margin-top: 6px; unicode-bidi: plaintext; }

/* النص العربي ثم ترجمته تحته مباشرة */
.msa-desc .msa-ar { margin: 0 !important; }
.msa-desc .msa-en {
  margin: 0 0 12px !important;
  font-size: 14px !important;
  opacity: .78;
}
.msa-desc .msa-desc-intro .msa-ar:first-child {
  color: var(--msa-ink) !important;
  font-size: 17px !important;
  font-weight: 500;
}
.msa-desc .msa-desc-section { margin-top: 8px !important; }
.msa-desc h3.msa-desc-title { margin: 28px 0 12px !important; }

/* ---------- 12) صفحات الخطأ ---------- */
.msa-error {
  padding: clamp(48px, 10vw, 120px) var(--msa-gutter);
  text-align: center;
}
.msa-error__code {
  display: block;
  font-size: clamp(56px, 10vw, 96px);
  line-height: 1;
  color: var(--msa-line);
  letter-spacing: .08em;
}
.msa-error__title {
  margin: 18px 0 10px;
  color: var(--msa-ink);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
}
.msa-error__text { margin: 0 auto 28px; max-width: 420px; font-size: 16px; }
.msa-error__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 24px;
}

/* ---------- 13) الجوال والتابلت ---------- */
@media (max-width: 900px) {
  .msa-cats { grid-template-columns: repeat(2, 1fr); }
  .msa-footer__inner { padding-inline: 0; }
}

@media (max-width: 768px) {
  .msa-header { padding-block: 14px; }

  /* الجوال: الاسم في سطر، والأيقونات والقائمة واللغة في سطر تحته */
  .msa-header__inner { grid-template-columns: auto 1fr auto; row-gap: 12px; column-gap: 8px; }
  .msa-header__start { display: contents; }
  .msa-logo { grid-row: 1; grid-column: 1 / -1; padding-bottom: 12px; border-bottom: 1px solid var(--msa-line); }
  .msa-root .msa-logo__ar { font-size: 30px; }
  .msa-root .msa-logo .msa-latin { letter-spacing: .26em; }
  .msa-icons { grid-row: 2; grid-column: 1; gap: 2px; }
  .msa-nav { grid-row: 2; grid-column: 2; justify-content: center; gap: 10px; font-size: 13px; }
  .msa-header__end { grid-row: 2; grid-column: 3; gap: 8px; font-size: 13px; }

  .msa-hero {
    align-items: flex-end;
    min-height: 78svh;
    padding: 32px var(--msa-gutter) 64px;
  }
  .msa-hero__slides::after {
    background:
      linear-gradient(to top, var(--msa-bg) 22%, rgb(var(--msa-bg-rgb) / .75) 42%, rgb(var(--msa-bg-rgb) / 0) 68%),
      rgb(var(--msa-bg-rgb) / var(--msa-fade));
  }
  .msa-hero__content { max-width: none; margin: 0; width: 100%; }
  .msa-hero__tag { display: none; }
  .msa-hero__dots { bottom: 20px; }
  /* الجوال: الفيديو في الجزء العلوي فوق النص، حتى لا يغطي النص الملح */
  .msa-hero__slide--video { background-color: var(--msa-bg); }
  .msa-hero__slide--video .msa-hero__media {
    top: 0;
    bottom: 34%;
    height: auto;
    /* تكبير خفيف من الأسفل ليقترب من الملح */
    transform: scale(1.5);
    transform-origin: 50% 100%;
  }

  .msa-panels { grid-template-columns: 1fr; }
  .msa-panel { min-height: 280px; }
  .msa-panel__bg { background-position: 85% center; }
  .msa-panel__bg::before {
    background: linear-gradient(to right, rgb(var(--msa-bg-rgb) / .92) 45%, rgb(var(--msa-bg-rgb) / 0) 80%);
  }
  .msa-panel__text { max-width: 60%; }
  .msa-panel .msa-panel__bg { left: 50%; background-position: center; }
  .msa-panel .msa-panel__bg::before {
    background: linear-gradient(to right, var(--msa-bg) 0%, rgb(var(--msa-bg-rgb) / 0) 40%);
  }
  .msa-panel .msa-panel__text { max-width: 48%; }

  .msa-footer__inner { flex-direction: column-reverse; align-items: center; text-align: center; }
  .msa-footer__social { justify-content: center; }
  .msa-footer__bottom { justify-content: center; text-align: center; }
  .msa-footer__copy { margin: 0; }
}

@media (max-width: 420px) {
  .msa-icon { width: 30px; }
  .msa-cats { gap: 8px; }
  .msa-cat__body { padding: 12px 8px 14px; }
  .msa-icon svg { width: 20px; height: 20px; }
}