/* ==========================================================================
   NEW CAIRO ELEVATORS — GLOBAL DESIGN SYSTEM
   Version: 1.0
   --------------------------------------------------------------------------
   ده الملف الوحيد المطلوب تعديله للتحكم في:
   1) الخط وأوزانه
   2) أحجام الخطوط على Desktop / Mobile
   3) ألوان البراند
   4) المسافات العامة
   5) Border Radius / Shadows / Buttons

   IMPORTANT:
   كل صفحات الموقع تحمل هذا الملف كآخر Stylesheet، لذلك القيم هنا لها الأولوية.
   ========================================================================== */


/* ==========================================================================
   01. FONT LOAD — ALEXANDRIA
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@400;500;600;700;800&display=swap");


/* ==========================================================================
   02. GLOBAL CONTROL PANEL
   غيّر القيم هنا فقط في أغلب الحالات.
   ========================================================================== */

:root {

  /* ---------- FONT FAMILY ---------- */
  --font-primary: "Alexandria", "Segoe UI", Tahoma, Arial, sans-serif;


  /* ---------- ARABIC FONT WEIGHTS ----------
     Alexandria في العربي:
     400 = نصوص القراءة
     500 = Navigation / Labels
     600 = Buttons / H3
     700 = H1 / H2
     800 = أرقام أو emphasis محدود فقط
  */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;


  /* ---------- TYPE SCALE / DESKTOP ----------
     تم تقليل الـHero والـHeadings عمدًا حتى لا تبتلع الشاشة.
  */
  --type-display: clamp(40px, 4.25vw, 56px);
  --type-h1:      clamp(36px, 3.60vw, 48px);
  --type-h2:      clamp(30px, 3.00vw, 42px);
  --type-h3:      clamp(20px, 1.65vw, 24px);

  --type-body-lg: 17px;
  --type-body:    16px;
  --type-body-sm: 14px;
  --type-label:   13px;
  --type-caption: 12px;
  --type-micro:   11px;


  /* ---------- ARABIC LINE HEIGHT ---------- */
  --leading-display: 1.38;
  --leading-h1:      1.42;
  --leading-h2:      1.48;
  --leading-h3:      1.58;
  --leading-body:    1.90;
  --leading-ui:      1.65;


  /* ---------- BRAND COLORS ---------- */
  --navy-950: #07121D;
  --navy-900: #0A1724;
  --navy-850: #0D1D2C;
  --navy-800: #11273A;
  --navy-700: #17344C;

  --champagne:      #B99256;
  --champagne-2:    #D7BC8A;
  --champagne-soft: #F2E9DA;

  --ink:      #122131;
  --muted:    #667482;
  --muted-2:  #8C98A3;

  --paper:        #FBFAF8;
  --surface:      #FFFFFF;
  --surface-2:    #F4F3F0;
  --surface-blue: #F2F6F9;

  --line:      #E2E5E7;
  --line-dark: rgba(255,255,255,.12);
  --success:   #167A63;


  /* ---------- LAYOUT ---------- */
  --container: 1240px;

  --space-section:    96px;
  --space-section-sm: 68px;


  /* ---------- SHAPE ---------- */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;


  /* ---------- ELEVATION ---------- */
  --shadow-1: 0 8px 26px rgba(7,18,29,.06);
  --shadow-2: 0 24px 64px rgba(7,18,29,.12);

  --ease: cubic-bezier(.2,.7,.2,1);


  /* ---------- COMPATIBILITY ----------
     المتغيرات دي موجودة عشان الصفحات القديمة كلها تسمع نفس الـGlobal Scale.
  */
  --font: var(--font-primary);

  --display: var(--type-display);
  --h2: var(--type-h2);
  --h3: var(--type-h3);

  --fs-h1: var(--type-display);
  --fs-h2: var(--type-h2);
  --fs-h3: var(--type-h3);
  --fs-body-lg: var(--type-body-lg);
  --fs-body: var(--type-body);

  --section: var(--space-section);
}


/* ==========================================================================
   03. HARD FONT LOCK
   يمنع أي Component قديم من استخدام Font أو tracking مختلف.
   ========================================================================== */

html,
body,
body *,
button,
input,
select,
textarea {
  font-family: var(--font-primary) !important;
}

body {
  font-size: var(--type-body) !important;
  font-weight: var(--weight-regular) !important;
  line-height: var(--leading-body) !important;
  color: var(--ink);
  background: var(--paper);
}

button,
input,
select,
textarea {
  font-weight: var(--weight-regular);
}


/* العربي لا يحتاج negative tracking المستخدم عادةً في العناوين اللاتينية */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
button,
label,
input,
select,
textarea,
.kicker,
.nav,
.brand-name,
.product-meta,
.service-content .number {
  letter-spacing: 0 !important;
}


/* ==========================================================================
   04. GLOBAL ARABIC TYPOGRAPHY
   ========================================================================== */

/* الصفحة Hero / العنوان الرئيسي */
h1,
.hero-copy h1,
.page-hero h1,
.product-hero h1 {
  font-size: var(--type-display) !important;
  line-height: var(--leading-display) !important;
  font-weight: var(--weight-bold) !important;
  margin-bottom: 20px !important;
}


/* Section headings */
h2,
.section-head h2,
.contact-panel h2,
.contact-copy h2,
.maintenance-copy h2,
.process-intro h2,
.policy h2 {
  font-size: var(--type-h2) !important;
  line-height: var(--leading-h2) !important;
  font-weight: var(--weight-bold) !important;
}


/* Card / subsection headings */
h3,
.card h3,
.feature h3,
.how-item h3,
.why-item h3,
.process-step h3,
.process-item h3,
.use-card h3,
.related-copy h3,
.service-copy h3,
.product-copy h3 {
  font-size: var(--type-h3) !important;
  line-height: var(--leading-h3) !important;
  font-weight: var(--weight-semibold) !important;
}


/* Main reading text */
p,
.article p,
.policy p,
.policy li {
  font-size: var(--type-body) !important;
  line-height: var(--leading-body) !important;
  font-weight: var(--weight-regular) !important;
}


/* Hero/supporting lead: أكبر درجة واحدة فقط من الـbody */
.hero-copy > p,
.info-lead {
  font-size: var(--type-body-lg) !important;
  line-height: 1.95 !important;
  font-weight: var(--weight-regular) !important;
}


/* Secondary / cards */
.card p,
.feature p,
.how-item p,
.why-item p,
.process-step p,
.process-item p,
.use-card p,
.related-copy p,
.service-copy p,
.product-copy p,
.contact-copy p,
.maintenance-copy > p,
.form > p,
.form-top p,
.answer {
  font-size: var(--type-body-sm) !important;
  line-height: 1.85 !important;
  font-weight: var(--weight-regular) !important;
}


/* UI labels */
.nav,
.btn,
.kicker,
.field label,
.footer-title,
.credential b,
.contact-item b,
.hero-label strong,
.gallery-label b {
  line-height: var(--leading-ui) !important;
}

.nav {
  font-size: var(--type-label) !important;
  font-weight: var(--weight-medium) !important;
}

.btn {
  font-size: 14px !important;
  font-weight: var(--weight-semibold) !important;
}

.kicker {
  font-size: var(--type-caption) !important;
  font-weight: var(--weight-medium) !important;
}

.field label {
  font-size: var(--type-caption) !important;
  font-weight: var(--weight-medium) !important;
}

.field input,
.field select,
.field textarea {
  font-size: var(--type-body-sm) !important;
}


/* Branding */
.brand-name {
  font-size: 14px !important;
  line-height: 1.55 !important;
  font-weight: var(--weight-bold) !important;
}

.brand-name small {
  font-size: 9px !important;
  line-height: 1.5 !important;
  font-weight: var(--weight-medium) !important;
  letter-spacing: .3px !important;
}


/* Small information */
.breadcrumb,
.product-meta,
.service-content .number,
.use-tag,
.hero-label small,
.related-copy small,
.footer-copy,
.footer-links,
.footer-bottom,
.form-note,
#formMsg,
#msg,
#qmsg {
  font-size: var(--type-caption) !important;
  line-height: 1.75 !important;
}


/* Prevent tiny text in trust / credential / contact areas */
.credential span,
.contact-item span,
.hero-trust span,
.trust-item span,
.gallery-label span {
  font-size: var(--type-caption) !important;
  line-height: 1.75 !important;
}

.credential b,
.contact-item b,
.trust-item b,
.gallery-label b {
  font-size: var(--type-label) !important;
  font-weight: var(--weight-semibold) !important;
}


/* ==========================================================================
   05. COMPONENT SIZE NORMALIZATION
   ========================================================================== */

.container {
  width: min(var(--container), calc(100% - 40px));
}

.section {
  padding-block: var(--space-section) !important;
}

.section-sm,
.section-tight {
  padding-block: var(--space-section-sm) !important;
}


/* Hero height is controlled so typography + image stay balanced */
.hero-frame,
.hero-box {
  min-height: 560px !important;
}

.hero-media {
  min-height: 560px !important;
}

.hero-copy {
  padding: 58px 52px !important;
}


/* Headings shouldn't span the entire viewport */
.hero-copy h1 {
  max-width: 760px;
}

.section-head h2 {
  max-width: 720px;
}


/* Better reading widths */
.hero-copy > p {
  max-width: 680px !important;
}

.article-section > p,
.policy p {
  max-width: 820px;
}


/* Cards */
.card,
.feature,
.how-item,
.use-card {
  border-radius: var(--r-md) !important;
}


/* Buttons */
.btn {
  min-height: 48px !important;
  padding-inline: 20px !important;
  border-radius: var(--r-sm) !important;
}


/* Forms */
.field input,
.field select {
  min-height: 50px !important;
}

.field textarea {
  min-height: 100px !important;
}


/* ==========================================================================
   06. HOME PAGE SPECIFIC NORMALIZATION
   ========================================================================== */

/* Home had an older 80px Display scale — this guarantees it obeys Global */
.hero-copy h1,
.hero h1 {
  font-size: var(--type-display) !important;
}

.service-feature h3 {
  font-size: clamp(24px, 2.2vw, 30px) !important;
  line-height: 1.5 !important;
}

.service-card h3,
.usecase-card h3,
.why-item h3,
.process-step h3 {
  font-size: 19px !important;
  line-height: 1.55 !important;
}

.contact-info h2 {
  font-size: var(--type-h2) !important;
}


/* ==========================================================================
   07. PRODUCT PAGE SPECIFIC NORMALIZATION
   ========================================================================== */

.product-copy h3 {
  font-size: 22px !important;
}

.form-top h3 {
  font-size: 20px !important;
  line-height: 1.55 !important;
}

.inline-cta h3,
.bottom-cta h2 {
  max-width: 720px;
}


/* ==========================================================================
   08. MOBILE TYPE SCALE
   ========================================================================== */

@media (max-width: 820px) {
  :root {
    --type-display: clamp(36px, 7.5vw, 46px);
    --type-h1:      clamp(32px, 6.7vw, 40px);
    --type-h2:      clamp(28px, 5.8vw, 36px);
    --type-h3:      clamp(19px, 4.4vw, 22px);

    --type-body-lg: 16px;
    --type-body:    15px;
    --type-body-sm: 14px;
    --type-label:   13px;
    --type-caption: 12px;

    --space-section:    76px;
    --space-section-sm: 56px;
  }

  .hero-frame,
  .hero-box {
    min-height: 0 !important;
  }

  .hero-media {
    min-height: 400px !important;
  }

  .hero-copy {
    padding: 46px 28px 36px !important;
  }
}


@media (max-width: 560px) {
  :root {
    --type-display: clamp(34px, 9.2vw, 40px);
    --type-h1:      clamp(30px, 8vw, 36px);
    --type-h2:      clamp(27px, 7vw, 32px);
    --type-h3:      20px;

    --type-body-lg: 16px;
    --type-body:    15px;
    --type-body-sm: 14px;

    --space-section:    64px;
    --space-section-sm: 48px;
  }

  h1,
  .hero-copy h1,
  .page-hero h1,
  .product-hero h1 {
    line-height: 1.45 !important;
  }

  h2 {
    line-height: 1.5 !important;
  }

  .hero-media {
    min-height: 310px !important;
  }

  .hero-copy {
    padding: 40px 22px 30px !important;
  }

  .btn {
    min-height: 46px !important;
    font-size: 14px !important;
  }
}


/* ==========================================================================
   09. ACCESSIBILITY / USER PREFERENCES
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Shared component shell: header/footer are owned here so every page renders them identically. */
.topline{background:var(--navy-950);color:#C4CFD8;font-size:11px}
.topline .container{min-height:36px;display:flex;align-items:center;justify-content:space-between;gap:18px}
.topline-links{display:flex;gap:20px;align-items:center}
.header{position:sticky;top:0;z-index:180;background:rgba(251,250,248,.96);backdrop-filter:blur(16px);border-bottom:1px solid rgba(226,229,231,.9)}
.header-inner{min-height:76px;display:flex;align-items:center;justify-content:space-between;gap:22px}
.brand{display:flex;align-items:center;gap:12px;min-width:250px;text-decoration:none}
.brand-mark{width:46px;height:46px;flex:none;border-radius:11px;background:var(--navy-900);display:grid;place-items:center;color:var(--champagne-2)}
.brand-mark svg{width:26px;height:26px;stroke:currentColor;fill:none;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round}
.brand-name{font-size:14px!important;line-height:1.55!important;font-weight:700!important;color:var(--navy-900)}
.brand-name small{display:block;font-size:9px!important;line-height:1.5!important;color:#85909A;font-weight:500!important;letter-spacing:.3px!important}
.header-actions{display:flex;gap:8px;align-items:center}
.mobile-menu{display:none}
.footer{background:var(--navy-950);color:#A8B7C3;padding:52px 0 30px}
.footer .brand-name{color:#fff}
.footer-grid{display:grid;grid-template-columns:1.3fr .7fr .9fr .7fr;gap:38px}
.footer-copy{font-size:12px!important;color:#718697;max-width:430px;margin-top:14px;line-height:1.9!important}
.footer-title{color:#fff;font-size:12px!important;font-weight:600!important;margin-bottom:11px}
.footer-links{display:grid;gap:7px;color:#718697;font-size:12px!important}
.footer-links a{transition:color .18s ease}.footer-links a:hover{color:#fff}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);margin-top:32px;padding-top:17px;display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;color:#587082;font-size:10px!important}
@media(max-width:980px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:820px){.topline{display:none}.footer-grid{grid-template-columns:1fr;gap:25px}.footer{padding-bottom:104px}}



/* ========================================================================== 
   10. SITE HEADER + OPTION C MEGA MENU
   Single source of truth for desktop/mobile navigation.
   ========================================================================== */

.site-header {
  overflow: visible;
}

.site-header .header-inner {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
  overflow: visible;
}

.site-header .brand {
  flex: 0 0 auto;
  min-width: 236px;
}

.site-header .desktop-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
  white-space: nowrap;
}

.site-header .header-actions {
  flex: 0 0 auto;
}

.site-header .site-nav-link,
.site-header .mega-trigger {
  position: relative;
  min-height: 76px;
  padding: 0 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: #4C5B69;
  font-size: var(--type-label) !important;
  line-height: var(--leading-ui) !important;
  font-weight: var(--weight-medium) !important;
  cursor: pointer;
}

.site-header .site-nav-link::after,
.site-header .mega-trigger::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s var(--ease);
}

.site-header .site-nav-link:hover,
.site-header .site-nav-link:focus-visible,
.site-header .site-nav-link.is-active,
.site-header .mega-trigger:hover,
.site-header .mega-trigger:focus-visible,
.site-header .nav-mega.is-active > .mega-trigger,
.site-header .nav-mega.is-open > .mega-trigger {
  color: var(--navy-900);
}

.site-header .site-nav-link:hover::after,
.site-header .site-nav-link:focus-visible::after,
.site-header .site-nav-link.is-active::after,
.site-header .nav-mega.is-active > .mega-trigger::after,
.site-header .nav-mega.is-open > .mega-trigger::after {
  transform: scaleX(1);
}

.site-header .nav-mega {
  display: flex;
  align-items: stretch;
}

.site-header .mega-trigger svg {
  width: 15px;
  height: 15px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s var(--ease);
}

.site-header .nav-mega.is-open > .mega-trigger svg {
  transform: rotate(180deg);
}

/* Desktop mega menu: anchored to the shared header container, not to a nav item. */
.site-header .mega-menu {
  position: absolute;
  z-index: 240;
  top: 100%;
  inset-inline: 0;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(20,36,49,.10);
  border-top-color: rgba(20,36,49,.06);
  border-radius: 0 0 22px 22px;
  background: rgba(255,255,255,.99);
  box-shadow: 0 28px 70px rgba(7,18,29,.16);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}

.site-header .nav-mega.is-open > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header .mega-layout-c {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 16px;
  align-items: stretch;
}

.site-header .mega-products-c {
  min-width: 0;
  padding: 7px 8px 6px;
}

.site-header .mega-menu-head {
  min-height: 58px;
  padding: 2px 2px 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.site-header .mega-menu-head > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.site-header .mega-menu-head span {
  color: #8A6D36;
  font-size: var(--type-micro) !important;
  line-height: var(--leading-ui) !important;
  font-weight: var(--weight-semibold) !important;
}

.site-header .mega-menu-head strong {
  color: var(--navy-900);
  font-size: 19px !important;
  line-height: 1.55 !important;
  font-weight: var(--weight-bold) !important;
}

.site-header .mega-all {
  flex: none;
  min-height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 9px;
  background: var(--surface-2);
  color: var(--navy-900);
  font-size: var(--type-micro) !important;
  line-height: var(--leading-ui) !important;
  font-weight: var(--weight-semibold) !important;
  transition: background .18s var(--ease);
}

.site-header .mega-all:hover,
.site-header .mega-all:focus-visible {
  background: var(--champagne-soft);
}

.site-header .mega-menu a::after {
  display: none;
}

.site-header .mega-all svg,
.site-header .mega-arrow svg,
.site-header .mega-preview-primary svg {
  width: 15px;
  height: 15px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header .mega-product-list {
  padding-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 8px;
}

.site-header .mega-product {
  min-width: 0;
  min-height: 76px;
  padding: 10px;
  display: grid;
  grid-template-columns: 42px minmax(0,1fr) 18px;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: transparent;
  color: inherit;
  transition: background .16s var(--ease), border-color .16s var(--ease), box-shadow .16s var(--ease);
}

.site-header .mega-product:hover,
.site-header .mega-product:focus-visible,
.site-header .mega-product.is-preview-active {
  background: #F7F7F4;
  border-color: rgba(183,145,77,.18);
}

.site-header .mega-product.is-active {
  border-color: rgba(183,145,77,.32);
  box-shadow: inset -3px 0 0 var(--champagne);
}

.site-header .mega-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--navy-900);
  color: var(--champagne-2);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.07);
  transition: background .16s var(--ease), color .16s var(--ease), transform .16s var(--ease);
}

.site-header .mega-product:hover .mega-icon,
.site-header .mega-product:focus-visible .mega-icon {
  transform: translateY(-1px);
}

.site-header .mega-product.is-preview-active .mega-icon {
  background: var(--champagne);
  color: #18130C;
}

.site-header .mega-icon svg,
.site-header .mobile-product-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header .mega-icon svg {
  width: 21px;
  height: 21px;
}

.site-header .mega-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.site-header .mega-copy b {
  color: var(--navy-900);
  font-size: 13px !important;
  line-height: 1.6 !important;
  font-weight: var(--weight-bold) !important;
}

.site-header .mega-copy small {
  color: #75838E;
  font-size: 10px !important;
  line-height: 1.65 !important;
  font-weight: var(--weight-regular) !important;
  white-space: normal;
}

.site-header .mega-arrow {
  display: grid;
  place-items: center;
  color: #A5AFB6;
  transition: color .16s var(--ease);
}

.site-header .mega-product:hover .mega-arrow,
.site-header .mega-product:focus-visible .mega-arrow,
.site-header .mega-product.is-preview-active .mega-arrow {
  color: var(--champagne);
}

.site-header .mega-preview {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 202px minmax(0,1fr);
  border-radius: 17px;
  background: var(--navy-900);
  color: #fff;
}

.site-header .mega-preview-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #0D2030;
}

.site-header .mega-preview-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: opacity .2s var(--ease), transform .4s var(--ease);
}

.site-header .mega-preview-media.is-changing img {
  opacity: .34;
  transform: scale(1.035);
}

.site-header .mega-preview-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(7,18,29,.88), rgba(7,18,29,.05) 66%);
}

.site-header .mega-preview-label {
  position: absolute;
  z-index: 2;
  inset-inline-start: 15px;
  bottom: 13px;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 6px;
  background: rgba(7,18,29,.74);
  color: var(--champagne-2);
  font-size: 9px !important;
  line-height: 1.4 !important;
  font-weight: var(--weight-semibold) !important;
  backdrop-filter: blur(8px);
}

.site-header .mega-preview-content {
  min-height: 232px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: radial-gradient(circle at top left, rgba(185,146,86,.14), transparent 48%), var(--navy-900);
}

.site-header .mega-preview-eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--champagne-2);
  font-size: var(--type-micro) !important;
  line-height: var(--leading-ui) !important;
  font-weight: var(--weight-medium) !important;
}

.site-header .mega-preview-content h3 {
  margin: 0 0 8px !important;
  color: #fff;
  font-size: 19px !important;
  line-height: 1.6 !important;
  font-weight: var(--weight-bold) !important;
}

.site-header .mega-preview-content p {
  margin: 0 !important;
  color: #B7C2CB;
  font-size: 11px !important;
  line-height: 1.9 !important;
  font-weight: var(--weight-regular) !important;
}

.site-header .mega-preview-actions {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 7px;
}

.site-header .mega-preview-primary,
.site-header .mega-preview-secondary {
  min-height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 9px;
  font-size: 10.5px !important;
  line-height: var(--leading-ui) !important;
  font-weight: var(--weight-semibold) !important;
}

.site-header .mega-preview-primary {
  background: var(--champagne);
  color: #18130C;
}

.site-header .mega-preview-secondary {
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.07);
  color: #fff;
}

.site-header .header-wa {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy-900);
  transition: border-color .16s var(--ease), background .16s var(--ease);
}

.site-header .header-wa:hover,
.site-header .header-wa:focus-visible {
  border-color: rgba(183,145,77,.45);
  background: #FBFAF7;
}

.site-header .header-wa svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Mobile navigation is a separate interaction model; the desktop mega preview is never squeezed into it. */
.site-header .mobile-menu {
  display: none;
  margin-inline-start: auto;
}

.site-header .mobile-menu > summary {
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.site-header .mobile-menu > summary::-webkit-details-marker,
.site-header .mobile-products > summary::-webkit-details-marker {
  display: none;
}

.site-header .menu-bars {
  width: 20px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.site-header .menu-bars i {
  width: 100%;
  height: 1.7px;
  display: block;
  border-radius: 4px;
  background: var(--navy-900);
  transition: transform .18s var(--ease), opacity .18s var(--ease);
}

.site-header .mobile-menu[open] .menu-bars i:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header .mobile-menu[open] .menu-bars i:nth-child(2) {
  opacity: 0;
}

.site-header .mobile-menu[open] .menu-bars i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header .mobile-nav {
  position: fixed;
  z-index: 260;
  top: 70px;
  inset-inline: 10px;
  width: auto;
  max-height: calc(100dvh - 80px);
  overflow: auto;
  padding: 10px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(20,36,49,.11);
  border-radius: 0 0 16px 16px;
  background: rgba(255,255,255,.995);
  box-shadow: 0 24px 60px rgba(7,18,29,.20);
  overscroll-behavior: contain;
}

.site-header .mobile-nav > a {
  min-height: 46px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  color: #465765;
  font-size: var(--type-label) !important;
  line-height: var(--leading-ui) !important;
  font-weight: var(--weight-semibold) !important;
}

.site-header .mobile-nav > a:hover,
.site-header .mobile-nav > a:focus-visible,
.site-header .mobile-nav > a.is-active {
  background: var(--surface-2);
  color: var(--navy-900);
}

.site-header .mobile-products {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #FCFCFB;
}

.site-header .mobile-products > summary {
  min-height: 48px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  color: var(--navy-900);
  font-size: var(--type-label) !important;
  line-height: var(--leading-ui) !important;
  font-weight: var(--weight-bold) !important;
  cursor: pointer;
}

.site-header .mobile-products > summary span {
  font-size: 18px !important;
  line-height: 1 !important;
  font-weight: var(--weight-regular) !important;
  transition: transform .18s var(--ease);
}

.site-header .mobile-products[open] > summary span {
  transform: rotate(45deg);
}

.site-header .mobile-products-grid {
  padding: 0 8px 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 5px;
}

.site-header .mobile-products-grid > a {
  min-width: 0;
  min-height: 54px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 9px;
  color: #536472;
  font-size: 11px !important;
  line-height: 1.55 !important;
  font-weight: var(--weight-medium) !important;
}

.site-header .mobile-products-grid > a:hover,
.site-header .mobile-products-grid > a:focus-visible,
.site-header .mobile-products-grid > a.is-active {
  background: #fff;
  color: var(--navy-900);
  box-shadow: 0 5px 15px rgba(7,18,29,.06);
}

.site-header .mobile-product-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--navy-900);
  color: var(--champagne-2);
}

.site-header .mobile-product-icon svg {
  width: 17px;
  height: 17px;
}

.site-header .mobile-nav-cta {
  margin-top: 5px;
  padding-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 7px;
  border-top: 1px solid var(--line);
}

.site-header .mobile-nav-cta a {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--navy-900);
  color: #fff;
  font-size: 11px !important;
  line-height: var(--leading-ui) !important;
  font-weight: var(--weight-semibold) !important;
}

.site-header .mobile-nav-cta a:last-child {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy-900);
}

@media (min-width: 1181px) and (max-width: 1260px) {
  .site-header .brand {
    min-width: 205px;
  }

  .site-header .brand-name small {
    display: none;
  }

  .site-header .desktop-nav {
    gap: 12px;
  }

  .site-header .header-actions .btn {
    padding-inline: 16px;
  }
}

@media (max-width: 1180px) {
  .topline {
    display: none;
  }

  .site-header .header-inner {
    min-height: 70px;
    justify-content: space-between;
  }

  .site-header .brand {
    min-width: 0;
  }

  .site-header .brand-mark {
    width: 42px;
    height: 42px;
  }

  .site-header .brand-name {
    font-size: 13px !important;
  }

  .site-header .desktop-nav,
  .site-header .header-actions {
    display: none;
  }

  .site-header .mobile-menu {
    display: block;
  }
}

@media (max-width: 560px) {
  .site-header .brand-name {
    font-size: 12px !important;
  }

  .site-header .brand-name small {
    display: none;
  }

  .site-header .mobile-products-grid,
  .site-header .mobile-nav-cta {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header .mega-menu,
  .site-header .mega-trigger svg,
  .site-header .mega-icon,
  .site-header .mega-preview-media img,
  .site-header .menu-bars i,
  .site-header .mobile-products > summary span {
    transition: none;
  }
}
