/* ==========================================
   PRD QUICK LINKS - PROFESSIONAL SAFFRON BAR
   ========================================== */

.saffron-navbar {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #F28A18;
    border: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
}

    /* Full width navigation */
    .saffron-navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin: 0;
        padding: 0;
    }

    /* Equal width columns */
    .saffron-navbar .nav-item {
        flex: 1 1 0;
        min-width: 0;
    }

    /* Main link */
    .saffron-navbar .nav-link {
        height: 54px;
        padding: 7px 14px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #fff !important;
        background: transparent;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.2;
        text-align: center;
        white-space: normal;
        border-right: 1px solid rgba(255,255,255,0.22);
        transition: background-color .2s ease, color .2s ease;
    }

    /* Last item */
    .saffron-navbar .nav-item:last-child .nav-link {
        border-right: 0;
    }

    /* Icons */
    .saffron-navbar .nav-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-family: Arial, sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: #fff;
    }

    /* Hover */
    .saffron-navbar .nav-link:hover {
        background: #D96B00;
        color: #fff !important;
    }

        /* Hover icon */
        .saffron-navbar .nav-link:hover .nav-icon {
            color: #FFE8C7;
        }

    /* Focus */
    .saffron-navbar .nav-link:focus {
        background: #D96B00;
        color: #fff !important;
        outline: none;
    }

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1200px) {

    .saffron-navbar .nav-link {
        height: 52px;
        padding: 6px 9px !important;
        gap: 6px;
        font-size: 14px;
    }

    .saffron-navbar .nav-icon {
        font-size: 16px;
    }
}

@media (max-width: 991px) {

    .saffron-navbar .navbar-nav {
        display: block;
    }

    .saffron-navbar .nav-item {
        width: 100%;
    }

    .saffron-navbar .nav-link {
        height: auto;
        min-height: 46px;
        justify-content: flex-start;
        padding: 9px 16px !important;
        text-align: left;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.18);
    }

    .saffron-navbar .nav-item:last-child .nav-link {
        border-bottom: 0;
    }
}
