@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&display=swap');

body {

    direction: rtl;
    font-family: "El Messiri", sans-serif;

}

:root {
    /* --- COLORS --- */
    /* Top Bar Colors */
    --ebmenu1-topbar-bg: #ffffff;
    --ebmenu1-topbar-text-color: #000000;
    --ebmenu1-lang-text-color: #000000;
    --ebmenu1-icon-primary-color: #000000;
    --ebmenu1-whatsapp-text-color: #000000;
    --ebmenu1-logo-text: #3B0282;


    /* --- FONT SIZES (All clamped for responsiveness) --- */
    --ebmenu1-fs-regular: clamp(0.875rem, 2.5vw, 1rem);
    --ebmenu1-fs-medium: clamp(1.25rem, 4vw, 1.5rem);
    --ebmenu1-fs-large: clamp(1.50rem, 5vw, 1.55rem);

    /* --- SPACING (Padding & Gaps) --- */
    --ebmenu1-gap-topbar: 16px;
    --ebmenu1-gap-actions: 12px;

    /* ------------- dash board button -------------- */
    --ebmenu1-db-button-bg: linear-gradient(135deg, #0C0121, #3B0282);

    --ebmenu1-db-button-hover-bg: linear-gradient(-135deg, #0C0121, #3B0282);

    --ebmenu1-db-input-radius: 12px;

    --ebmenu1-db-button-text-color: #ffffff;

}

/* =========================================
       RESET & BASE
       ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* All margins zeroed out; using flex gap exclusively */
}

a {
    text-decoration: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

/*=========================================
TOP BAR
========================================= */

.ebmenu1-db-return {
    border: none;

    background:
        var(--ebmenu1-db-button-bg);

    color:
        var(--ebmenu1-db-button-text-color);

    padding: 14px 5px;

    border-radius:
        var(--ebmenu1-db-input-radius);

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}

.ebmenu1-top-bar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--ebmenu1-topbar-bg);
    gap: var(--ebmenu1-gap-topbar);
    z-index: 1000;
    box-shadow: 0 0.45em 1.2em rgba(2, 6, 23, 0.35)
}

.ebmenu1-top-bar-wrapper {

    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    width: calc(100% - 2em);
    padding-block: 12px;
    margin: 0 auto;
    background-color: var(--ebmenu1-topbar-bg);
    gap: var(--ebmenu1-gap-topbar);
}

.ebmenu1-top-bar.form-top-bar {
    max-width: 1100px;
    margin: auto;
}

.ebmenu1-top-bar-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.ebmenu1-lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--ebmenu1-lang-text-color);
    font-size: var(--ebmenu1-fs-regular);
    font-weight: bold;
}

.ebmenu1-action-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ebmenu1-action-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    color: var(--ebmenu1-icon-primary-color);
    font-size: var(--ebmenu1-fs-medium);
    font-weight: bold;
}

.ebmenu1-whatsapp {
    font-size: var(--ebmenu1-fs-large);
    font-weight: bold;
}

.ebmenu1-icon {
    width: 24px;
    color: var(--ebmenu1-icon-primary-color);
}

.ebmenu1-header-logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    color: var(--ebmenu1-logo-text);
}

.ebmenu1-header-logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
}

.ebmenu1-header-logo-container {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: clamp(800, 5vw, 900);
    text-decoration: none;
    color: var(--ebmenu1-logo-text);
    direction: ltr;
}

.ebmenu1-header-logo {
    border-radius: 12px;
    width: 60px;
    height: 60px;
}