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

body {
  color: var(--eg-main-color);
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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;
  align-items: center;
  justify-content: flex-start; /* يمين في RTL */
}

.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;
  font-family: inherit;
}

.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);
  white-space: nowrap; /* عشان ما ينزلش سطرين */
}

/* ===============================
   الروابط في النص (للديسكتوب فقط)
   =============================== */

.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);
}

.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_header_custom_row > :first-child > a[href="/wishlist"],
.fasty_header_custom_row > :first-child > .flex {
  display: none !important;
}

/* زرار الواتساب */
.fasty_whatsapp_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

/* آيكون الواتساب (بنحط الخلفية من اللينك اللي اديتهولي) */
.fasty_whatsapp_icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("https://img.freepik.com/premium-vector/whatsapp-vector-logo-icon-logotype-vector-social-media_901408-406.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* تيكست الواتساب */
.fasty_whatsapp_label {
  display: inline-block;
}

.fasty_whatsapp_btn:hover {
  opacity: 0.85;
}

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

@media (min-width: 1024px) {

  /* نخفي البلوك الأول (القائمة + القلب + السيرش) في الديسكتوب */
  .fasty_header_custom_row > :first-child {
    display: none !important;
  }

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

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

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

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

@media (max-width: 1023px) {

  .fasty_header_custom_row {
    height: 72px;
    gap: 8px;
    flex-wrap: nowrap;
  }

  /* 1- الهامبرجر (نخليه ظاهر) */
  .fasty_header_custom_row > :first-child {
    display: flex !important;
    order: 1;
  }

  /* نشيل القلب والسيرش (زيادة تأكيد) */
  .fasty_header_custom_row > :first-child > a[href="/wishlist"],
  .fasty_header_custom_row > :first-child > .flex {
    display: none !important;
  }

  /* 2- اللوجو + الاسم في النص */
  .fasty_header_logo {
    order: 2;
    flex: 1;
    justify-content: center;
  }

  .fasty_header_top_text .company-name {
    font-size: 16px;
  }

  .fasty_header_top_text .company-subtitle {
    font-size: 12px;
  }

  /* 3- واتساب + عربية ناحية الشمال */
  .fasty_header_whatsapp_container {
    order: 3;
    justify-content: flex-start;
  }

  /* على الموبايل: زرار واتساب يبقى آيكون بس من غير كلمة */
  .fasty_whatsapp_btn {
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
  }

  .fasty_whatsapp_label {
    display: none;
  }

  .fasty_whatsapp_icon {
    width: 22px;
    height: 22px;
  }

  /* نخفي الروابط بالكامل على الموبايل */
  .fasty_header_middle_nav {
    display: none !important;
  }
}
