/* =========================================================
   EAGLE FURNITURE NGARA
   NAVBAR
========================================================= */

.eagle-navbar {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    min-height: 76px;
    z-index: 1030;
}


/* =========================================================
   BRAND
========================================================= */

.eagle-brand {
    font-family: "Poppins", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #222222;
    text-decoration: none;
    white-space: nowrap;
}

.eagle-brand span {
    font-family: "Playfair Display", serif;
    font-weight: 700;
}

.eagle-brand:hover {
    color: #222222;
}


/* =========================================================
   NAVIGATION LINKS
========================================================= */

.eagle-nav-link,
.eagle-offers-link {
    font-family: "Poppins", sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.5;
    color: #333333 !important;
    padding: 0.65rem 0.8rem !important;
    transition: all 0.2s ease;
}

.eagle-nav-link:hover,
.eagle-nav-link:focus {
    color: #a67c52 !important;
}


/* =========================================================
   OFFERS
========================================================= */

.eagle-offers-link {
    color: #9a6b32 !important;
    font-weight: 600;
}

.eagle-offers-link:hover {
    color: #7d5325 !important;
}


/* =========================================================
   DROPDOWN
========================================================= */

.eagle-dropdown {
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.eagle-dropdown .dropdown-item {
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 0.65rem 0.8rem;
    border-radius: 7px;
}

.eagle-dropdown .dropdown-item:hover,
.eagle-dropdown .dropdown-item:focus {
    background: #f6f2ed;
}


/* =========================================================
   ICON BUTTONS
========================================================= */

.eagle-icon-btn,
.eagle-cart-btn {
    position: relative;

    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #333333;
    text-decoration: none;

    font-size: 1.05rem;

    transition: all 0.2s ease;
}

.eagle-icon-btn:hover,
.eagle-cart-btn:hover {
    background: #f5f2ee;
    color: #9a6b32;
}


/* =========================================================
   CART COUNT
========================================================= */

.eagle-cart-count {
    position: absolute;

    top: -2px;
    right: -2px;

    min-width: 18px;
    height: 18px;

    padding: 0 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #9a6b32;
    color: #ffffff;

    border-radius: 50%;

    font-family: "Poppins", sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991.98px) {

    .eagle-navbar {
        min-height: 68px;
    }

    .eagle-brand {
        font-size: 1.05rem;
    }

    .eagle-nav-link,
    .eagle-offers-link {
        font-size: 0.9rem;
        padding: 0.65rem 0 !important;
    }

    .eagle-navbar .navbar-nav {
        padding-top: 0.75rem;
    }

    .eagle-navbar .d-flex {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 575.98px) {

    .eagle-brand {
        font-size: 0.98rem;
    }

    .eagle-icon-btn,
    .eagle-cart-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

}

/* =========================================================
   CATEGORY DROPDOWN
========================================================= */

.eagle-dropdown {
    min-width: 250px;
    max-height: 75vh;
    overflow-y: auto;
}

.eagle-dropdown .dropdown-header {
    font-family: "Poppins", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9a6b32;
    padding: 0.55rem 0.8rem 0.35rem;
}

.eagle-dropdown .dropdown-divider {
    margin: 0.4rem 0;
}


/* =========================================================
   MOBILE DROPDOWN
========================================================= */

@media (max-width: 991.98px) {

    .eagle-dropdown {
        border: 0;
        box-shadow: none;
        padding-left: 0.75rem;
        max-height: none;
    }

    .eagle-dropdown .dropdown-item {
        padding: 0.55rem 0.8rem;
    }

}