.aga-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e6e6e6;
    position: relative;
    z-index: 9999;
    direction: rtl;
}

.aga-header-container {
    width: 92%;
    max-width: 1400px;
    min-height: 85px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 25px;
}


/* Logo */

.aga-header-logo {
    flex-shrink: 0;
}

.aga-header-logo img {
    display: block;
    width: auto;
    max-width: 150px;
    max-height: 65px;
}

.aga-header-logo-text {
    color: #222222;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
}


/* Navigation */

.aga-header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.aga-header-nav a {
    color: #222222;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.aga-header-nav a:hover {
    color: #8b5e2e;
}


/* Search */

.aga-header-search {
    flex: 1;
    min-width: 200px;
}

.aga-header-search form {
    height: 48px;
    width: 100%;

    display: flex;
    align-items: center;

    background: #f5f2ec;
    border: 1px solid #e6e1d8;
    border-radius: 10px;

    overflow: hidden;
}

.aga-search-icon {
    padding: 0 15px;
    font-size: 22px;
    color: #8b5e2e;
}

.aga-header-search input {
    flex: 1;
    height: 100%;

    border: none;
    outline: none;
    background: transparent;

    padding: 0 8px;

    font-family: inherit;
    font-size: 14px;
}

.aga-header-search button {
    height: 100%;
    border: none;

    padding: 0 20px;

    background: #c99a4a;
    color: #ffffff;

    font-family: inherit;
    font-size: 14px;

    cursor: pointer;
}

.aga-header-search button:hover {
    background: #8b5e2e;
}


/* Account and Cart */

.aga-header-actions {
    display: flex;
    align-items: center;
    gap: 18px;

    flex-shrink: 0;
}

.aga-header-account,
.aga-header-cart {
    display: flex;
    align-items: center;
    gap: 6px;

    color: #222222;
    text-decoration: none;

    font-size: 13px;
    white-space: nowrap;
}

.aga-header-account:hover,
.aga-header-cart:hover {
    color: #8b5e2e;
}

.aga-action-icon {
    font-size: 20px;
}


/* Mobile button */

.aga-mobile-menu-button {
    display: none;

    border: none;
    background: transparent;

    font-size: 24px;
    cursor: pointer;
}


/* Mobile menu */

.aga-mobile-menu {
    display: none;
}


/* Tablet */

@media screen and (max-width: 1100px) {

    .aga-header-nav {
        gap: 12px;
    }

    .aga-header-nav a {
        font-size: 12px;
    }

    .aga-action-text {
        display: none;
    }

}


/* Mobile */

@media screen and (max-width: 768px) {

    .aga-header-container {
        width: 94%;
        min-height: 70px;
        gap: 10px;
    }

    .aga-header-logo img {
        max-width: 110px;
        max-height: 50px;
    }

    .aga-header-nav {
        display: none;
    }

    .aga-header-search {
        min-width: 0;
    }

    .aga-header-search form {
        height: 42px;
    }

    .aga-header-search button {
        display: none;
    }

    .aga-search-icon {
        padding: 0 10px;
        font-size: 20px;
    }

    .aga-header-search input {
        font-size: 12px;
    }

    .aga-header-actions {
        gap: 8px;
    }

    .aga-mobile-menu-button {
        display: block;
    }

    .aga-mobile-menu.is-open {
        display: flex;
        flex-direction: column;
        gap: 5px;

        padding: 15px 20px;

        border-top: 1px solid #eeeeee;
        background: #ffffff;
    }

    .aga-mobile-menu a {
        display: block;

        padding: 10px 0;

        color: #222222;
        text-decoration: none;

        font-size: 14px;
    }

}