/* BOTTOM STICKY NOTIFICATION BAR (#aa-footer & #aa-notification-bar)
   ============================================================ */
#aa-footer {
    display: block !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    background: linear-gradient(90deg, #e7b00a 0%, #f59e0b 50%, #e7b00a 100%) !important;
    background-color: #e7b00a !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.4) !important;
    overflow: visible !important;
    pointer-events: auto !important;
    transition: transform 0.3s ease, min-height 0.3s ease !important;
}

#aa-notification-bar {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    background: transparent !important;
    background-color: transparent !important;
    color: #021352 !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 24px !important;
    min-height: 52px !important;
    box-sizing: border-box !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
    position: relative !important;
    overflow: visible !important;
    transition: min-height 0.3s ease, max-height 0.3s ease, padding 0.3s ease !important;
}

#aa-notification-bar .aanb-message,
#aa-notification-bar .aanb-message-window,
#aa-notification-bar .aanb-message-text,
#aa-notification-bar .aanb-message-fill {
    color: #021352 !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

#aa-notification-bar .aanb-buttons {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
}

#aa-notification-bar a.mc-nb-btn {
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 7px 16px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
    line-height: 1.2 !important;
}

#aa-notification-bar #aa-notification-bar-button-1 {
    background-color: #021352 !important;
    border: 1.5px solid #021352 !important;
    color: #ffffff !important;
}
#aa-notification-bar #aa-notification-bar-button-1 span {
    color: #ffffff !important;
}
#aa-notification-bar #aa-notification-bar-button-1:hover {
    background-color: #00227a !important;
    border-color: #00227a !important;
    transform: translateY(-1px);
}

#aa-notification-bar #aa-notification-bar-button-2 {
    background-color: #ffffff !important;
    border: 1.5px solid #ffffff !important;
    color: #021352 !important;
}
#aa-notification-bar #aa-notification-bar-button-2 span {
    color: #021352 !important;
}
#aa-notification-bar #aa-notification-bar-button-2:hover {
    background-color: #f1f5f9 !important;
    border-color: #f1f5f9 !important;
    transform: translateY(-1px);
}

/* Toggle / Minimize Floating Button */
#aa-notification-bar .aanb-close {
    /*
     * Nut la <button> nen phai go padding/appearance cua UA va chan flex
     * shrink — neu khong 36x36 bi bop ngang thanh hinh bau duc.
     */
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    flex: 0 0 auto !important;
    min-width: 36px !important;
    max-width: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: -18px !important;
    left: 24px !important;
    width: 36px !important;
    height: 36px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25) !important;
    border: 2px solid #e7b00a !important;
    z-index: 100000 !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    text-decoration: none !important;
    transition: transform 0.25s ease, background-color 0.2s ease, top 0.3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-sizing: border-box !important;
}

#aa-notification-bar .aanb-close:hover {
    background-color: #f8fafc !important;
    transform: scale(1.1);
}

#aa-notification-bar .aanb-close svg {
    width: 16px !important;
    height: 16px !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    display: block !important;
    margin: 0 auto !important;
    transition: transform 0.3s ease !important;
}

#aa-notification-bar .aanb-close svg path {
    fill: #021352 !important;
}

/* Collapsed State */
#aa-notification-bar.closed {
    min-height: 0px !important;
    max-height: 0px !important;
    height: 0px !important;
    padding: 0px !important;
    overflow: visible !important;
}

#aa-notification-bar.closed .aanb-message,
#aa-notification-bar.closed .aanb-buttons {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

#aa-notification-bar.closed .aanb-close {
    top: -38px !important;
    background: #e7b00a !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

#aa-notification-bar.closed .aanb-close svg {
    transform: rotate(180deg) !important;
}

#aa-notification-bar.closed .aanb-close svg path {
    fill: #021352 !important;
}

/*
 * Thanh thong bao la `position: fixed` nen phu len 52px duoi cung. Cho chua
 * dat o FOOTER CHA — de o `.footer-bottom-bar` thi dai copyright cao them
 * 62px va khong con bang nhau luc dong / luc mo.
 */
#site-custom-footer {
    padding-bottom: 62px !important;
}

@media (max-width: 768px) {
    #site-custom-footer {
        padding-bottom: 90px !important;
    }
}

@media (max-width: 768px) {
    #aa-notification-bar {
        padding: 10px 14px 12px !important;
        text-align: center !important;
        flex-direction: column !important;
        gap: 8px !important;
        min-height: 80px !important;
    }
    #aa-notification-bar .aanb-message-text {
        font-size: 13.5px !important;
    }
    #aa-notification-bar .aanb-buttons {
        width: 100% !important;
        justify-content: center !important;
    }
    #aa-notification-bar .aanb-close {
        left: 14px !important;
        top: -18px !important;
        width: 34px !important;
        height: 34px !important;
    }
}

/* ============================================================

/*
 * Khi khach dong thanh thong bao, chi con nut mo lai (nut tron nho, position
 * fixed) nen khong can chua cho nua — de nguyen se lo mot dai nen navy duoi
 * dai copyright.
 */
html.mc-nb-closed #site-custom-footer {
    padding-bottom: 0 !important;
}
