<!-- Custom Navigation block — matches Figma node 1:2032 -->
  .afiyah-nav {
    background: #FCFBF8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    direction: rtl;
    font-family: 'IBM Plex Sans Arabic', 'thmanyah_serif_text', sans-serif;
  }
  .afiyah-nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .afiyah-nav__links li {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .afiyah-nav__links a {
    color: #1E3D2F;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    white-space: nowrap;
  }
  .afiyah-nav__links svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  .afiyah-nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .afiyah-nav__logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .afiyah-nav__logo-ar {
    font-size: 20px;
    color: #1E3D2F;
    font-family: 'thmanyah_serif_text', serif;
    line-height: 1.2;
  }
  .afiyah-nav__logo-en {
    font-size: 20px;
    font-weight: 300;
    color: #1E3D2F;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
  }
  .afiyah-nav__mark {
    width: 44px;
    height: 44px;
  }
  @media (max-width: 768px) {
    .afiyah-nav__links { display: none; } /* swap for a burger menu on mobile if needed */
  }