/* ===============================
   ألوان أساسية للموقع كله
   =============================== */
:root {
  --eg-main-color: rgba(7, 55, 104, 1); /* اللون الأساسي للنص */
  --eg-hover-color: rgba(195, 3, 18, 1); /* لون الهوفر */
}

/* نصوص الموقع بالكامل */
body {
  color: var(--eg-main-color);
}

a,
a:visited {
  color: var(--eg-main-color);
}

a:hover {
  color: var(--eg-hover-color);
}

/* ===============================
   تنسيق الهيدر الأساسي
   =============================== */

.fasty_header {
  background: #ffffff;
}

.fasty_header_container {
  max-width: 1200px;
  margin: 0 auto;
}

.fasty_header_custom_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

/* ===============================
   اللوجو + الاسم (يمين على الديسكتوب)
   =============================== */

.fasty_header_logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.fasty_header_logo_block {
  display: flex;
  flex-direction: row; /* ← اللوجو الأول ثم الاسم */
  gap: 10px;
  align-items: center;
}

.fasty_header_logo_block img {
  height: 48px;
  width: auto;
}

.fasty_header_top_text {
  text-align: right;
  line-height: 1.2;
}

.fasty_header_top_text .company-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--eg-main-color);
}

.fasty_header_top_text .company-subtitle {
  font-size: 13px;
  color: var(--eg-main-color);
}

/* ===============================
   الروابط في النص
   =============================== */

.fasty_header_middle_nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 32px;
}

.fasty_header_middle_nav .header-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--eg-main-color);
  text-decoration: none;
}

.fasty_header_middle_nav .header-link:hover {
  color: var(--eg-hover-color);
}

/* ===============================
   الواتساب + العربية (الشمال)
   =============================== */

.fasty_header_whatsapp_container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.fasty_whatsapp_btn {
  padding: 10px 24px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.fasty_whatsapp_btn:hover {
  opacity: 0.85;
}

/* ===================================================================
   ======================  الديسكتوب  ================================
   =================================================================== */

@media (min-width: 1024px) {
  /* نخفي المينيو + البحث + المفضلة */
  .fasty_header_custom_row > :first-child {
    display: none;
  }

  /* يمين = لوجو + اسم */
  .fasty_header_logo {
    order: 1;
  }

  /* نص = روابط */
  .fasty_header_middle_nav {
    order: 2;
  }

  /* شمال = واتساب + عربية */
  .fasty_header_whatsapp_container {
    order: 3;
  }
}

/* ===================================================================
   ======================  الموبايل  ================================
   =================================================================== */

@media (max-width: 1023px) {
  .fasty_header_custom_row {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 0;
    row-gap: 10px;
  }

  /* 1- القائمة (أول ديف) */
  .fasty_header_custom_row > :first-child {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  /* 2- اللوجو + الاسم */
  .fasty_header_logo {
    order: 2;
    width: 100%;
    justify-content: center;
  }

  /* 3- واتساب + عربية */
  .fasty_header_whatsapp_container {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 16px;
  }

  /* 4- الروابط */
  .fasty_header_middle_nav {
    order: 4;
    width: 100%;
    justify-content: space-around;
    padding-top: 8px;
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .fasty_header_middle_nav .header-link {
    font-size: 14px;
  }
}
