/* Navbar Mobile Layout Fix */

/* Desktop - Giữ nguyên layout mặc định */
@media (min-width: 992px) {
    /* Hamburger ẩn trên desktop */
    .navbar-toggler {
        display: none !important;
    }

    /* Search button styling cho desktop */
    .search-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: transparent;
        border: 2px solid rgba(155, 44, 136, 0.5);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
        margin-left: 15px;
    }

    .search-btn i {
        font-size: 1rem;
    }

    .search-btn:hover {
        background: rgba(155, 44, 136, 0.1);
        border-color: #9B2C88;
    }
}

/* Mobile - Layout custom */
@media (max-width: 991px) {
    /* Container flex để kiểm soát layout */
    .navbar .container-fluid {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
    }

    /* Logo - bên trái */
    .navbar-brand {
        order: 1 !important;
        flex: 0 0 auto !important;
    }

    /* Search Button - bên phải (order 2) */
    .search-btn {
        order: 2 !important;
        margin-left: auto !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        background: transparent !important;
        border: 2px solid #9B2C88 !important;
        color: #9B2C88 !important;
        font-size: 1.2rem;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 0 0 auto !important;
        transition: all 0.3s ease;
    }

    /* Hamburger Menu - bên phải cùng (order 3) */
    .navbar-toggler {
        order: 3 !important;
        margin-left: 10px !important; /* 10px gap từ search button */
        padding: 0 !important;
        width: 50px !important;
        height: 50px !important;
        border: 2px solid rgba(155, 44, 136, 0.5) !important;
        background: transparent !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(155, 44, 136, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .search-btn i {
        margin: 0 !important;
        font-size: 1.1rem;
    }

    /* Navbar Collapse - full width, xuống dòng (order 4) */
    .navbar-collapse {
        order: 4 !important;
        flex-basis: 100% !important;
        width: 100% !important;
    }
}
