/* ==================== MENÚ PRINCIPAL ==================== */
#bv-main-nav {
    background: var(--bvl-white);
    border-bottom: 1px solid var(--bvl-gray-200);
    box-shadow: var(--bvl-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

@media (max-width: 1024px) {
    #bv-main-nav {
        position: sticky;
        top: 0;
    }
}

.bv-nav-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Botón Hamburguesa */
.bv-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.bv-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--bvl-gray-700);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.bv-hamburger:hover span {
    background: var(--bvl-yellow);
}

/* Cuando el menú está abierto, ocultamos la hamburguesa */
.bv-hamburger.bv-open {
    display: none;
}

/* Menú principal - Desktop */
.bv-nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0;
    padding: 12px 0;
    list-style: none;
}

.bv-nav-item {
    position: relative;
}

.bv-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--bvl-gray-700);
    text-decoration: none;
    border-radius: var(--bvl-radius-sm);
    transition: all 0.2s ease;
    background: transparent;
    white-space: nowrap;
}

.bv-nav-link i {
    font-size: 14px;
    color: var(--bvl-gray-500);
    transition: color 0.2s ease;
}

.bv-nav-link:hover {
    background: var(--bvl-gray-100);
    color: var(--bvl-yellow-d);
}

.bv-nav-link:hover i {
    color: var(--bvl-yellow);
}

.bv-nav-link.active {
    background: linear-gradient(135deg, var(--bvl-yellow-l) 0%, var(--bvl-white) 100%);
    color: var(--bvl-yellow-d);
    font-weight: 600;
    border-bottom: 2px solid var(--bvl-yellow);
}

.bv-nav-link.active i {
    color: var(--bvl-yellow);
}

/* Dropdown Desktop */
.bv-dropdown {
    position: relative;
}

.bv-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--bvl-gray-700);
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: var(--bvl-radius-sm);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.bv-dropdown-toggle i {
    font-size: 14px;
    color: var(--bvl-gray-500);
}

.bv-dropdown-arrow {
    font-size: 10px;
    transition: transform 0.2s ease;
    margin-left: 4px;
}

/* Desktop - hover */
.bv-dropdown:hover .bv-dropdown-arrow {
    transform: rotate(180deg);
}

.bv-dropdown-toggle:hover {
    background: var(--bvl-gray-100);
    color: var(--bvl-yellow-d);
}

.bv-dropdown-toggle:hover i {
    color: var(--bvl-yellow);
}

/* ==================== DROPDOWN MENU OPTIMIZADO ==================== */
.bv-dropdown-menu {
    min-width: 240px;
    padding: 8px 0;
    background: var(--bvl-white);
    border-radius: var(--bvl-radius);
    box-shadow: var(--bvl-shadow-md);
    border: 1px solid var(--bvl-gray-200);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1001;
}

/* --- DESKTOP: Grid de 2 columnas --- */
@media (min-width: 769px) {
    .bv-dropdown:hover .bv-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .bv-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 480px;
        max-height: 460px;
        overflow-y: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px;
        padding: 10px 10px;
        border-radius: 12px;
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
    }

    .bv-dropdown-menu .bv-dropdown-item {
        white-space: nowrap;
        padding: 8px 14px;
        border-radius: 6px;
        width: 100%;
        min-height: 36px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        overflow: hidden;
        text-overflow: ellipsis;
        background: transparent !important;
        border: none;
        color: var(--bvl-gray-700);
        transition: all 0.2s ease;
        text-decoration: none;
    }

    .bv-dropdown-menu .bv-dropdown-item i {
        width: 18px;
        text-align: center;
        flex-shrink: 0;
        font-size: 13px;
        color: var(--bvl-gray-500);
    }

    .bv-dropdown-menu .bv-dropdown-item:hover {
        background: var(--bvl-gray-100) !important;
        color: var(--bvl-yellow-d);
        padding-left: 18px;
    }

    .bv-dropdown-menu .bv-dropdown-item:hover i {
        color: var(--bvl-yellow);
    }

    /* Títulos de sección */
    .bv-dropdown-menu > div[style*="padding: 4px 16px 0"] {
        grid-column: 1 / -1;
        padding: 6px 14px 4px !important;
        margin-top: 4px;
        border-bottom: 1px solid var(--bvl-gray-100);
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 10px !important;
        letter-spacing: 0.8px;
        color: var(--bvl-gray-500);
    }

    /* Divisores */
    .bv-dropdown-divider {
        grid-column: 1 / -1;
        margin: 4px 12px;
        border-top: 1px solid var(--bvl-gray-100);
        height: 1px;
    }

    /* Selector de herramientas */
    .bv-dropdown-item .image-tools-selector {
        width: 100%;
        min-width: 120px;
        padding: 6px 10px;
        font-size: 12px;
        border-radius: 6px;
        border: 1px solid var(--bvl-gray-200);
        background: var(--bvl-gray-50);
        color: var(--bvl-gray-700);
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .bv-dropdown-item .image-tools-selector:hover {
        border-color: var(--bvl-yellow);
        background: var(--bvl-yellow-l);
    }

    /* Badge NUEVO */
    .badge-new {
        background: var(--bvl-red);
        color: white;
        font-size: 9px;
        padding: 1px 8px;
        border-radius: 10px;
        margin-left: auto;
        flex-shrink: 0;
    }

    /* Scroll personalizado */
    .bv-dropdown-menu::-webkit-scrollbar {
        width: 4px;
    }
    .bv-dropdown-menu::-webkit-scrollbar-track {
        background: transparent;
    }
    .bv-dropdown-menu::-webkit-scrollbar-thumb {
        background: var(--bvl-gray-300);
        border-radius: 4px;
    }
    .bv-dropdown-menu::-webkit-scrollbar-thumb:hover {
        background: var(--bvl-gray-400);
    }

    /* Firefox scroll */
    .bv-dropdown-menu {
        scrollbar-width: thin;
        scrollbar-color: var(--bvl-gray-300) transparent;
    }
}

/* --- MÓVIL: 1 columna con scroll --- */
@media (max-width: 768px) {
    /* En móvil el dropdown es acordeón, no hover */
    .bv-dropdown-menu {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100%;
        background: var(--bvl-gray-50) !important;
        border-radius: var(--bvl-radius-sm);
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transform: none;
        transition: all 0.3s ease;
        display: block !important;
    }

    .bv-dropdown-menu.bv-open {
        max-height: 400px;
        overflow-y: auto;
        opacity: 1;
        visibility: visible;
        margin: 4px 0 8px;
        padding: 8px 0;
        background: #f3f4f6 !important;
        border-radius: 10px;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
    }

    .bv-dropdown-menu .bv-dropdown-item {
        padding: 10px 16px 10px 48px;
        font-size: 14px;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
        background: transparent !important;
        color: var(--bvl-gray-700);
        transition: all 0.2s ease;
        border: none;
        text-decoration: none;
        box-sizing: border-box;
    }

    .bv-dropdown-menu .bv-dropdown-item i {
        font-size: 14px;
        width: 22px;
        flex-shrink: 0;
        color: var(--bvl-gray-500);
    }

    .bv-dropdown-menu .bv-dropdown-item:hover {
        background: var(--bvl-yellow-l) !important;
        padding-left: 52px;
        color: var(--bvl-yellow-d);
    }

    .bv-dropdown-menu .bv-dropdown-item:hover i {
        color: var(--bvl-yellow);
    }

    /* Títulos de sección en móvil */
    .bv-dropdown-menu > div[style*="padding: 4px 16px 0"] {
        padding: 8px 16px 4px !important;
        font-size: 10px !important;
        border-bottom: 1px solid var(--bvl-gray-200);
        margin-top: 4px;
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--bvl-gray-500);
    }

    .bv-dropdown-divider {
        margin: 4px 16px;
        border-top: 1px solid var(--bvl-gray-200);
        height: 1px;
    }

    /* Selector de herramientas en móvil */
    .bv-dropdown-item .image-tools-selector {
        width: 100%;
        padding: 8px 12px;
        border: 2px solid var(--bvl-gray-200);
        border-radius: 8px;
        font-size: 13px;
        font-family: 'DM Sans', sans-serif;
        cursor: pointer;
        background: white;
        color: var(--bvl-gray-700);
        outline: none;
        transition: all 0.2s ease;
        max-width: 100%;
        box-sizing: border-box;
    }

    .bv-dropdown-item .image-tools-selector:hover {
        border-color: var(--bvl-yellow);
        background: var(--bvl-yellow-l);
    }

    /* Badge NUEVO en móvil */
    .badge-new {
        background: var(--bvl-red);
        color: white;
        font-size: 9px;
        padding: 1px 8px;
        border-radius: 10px;
        margin-left: auto;
        flex-shrink: 0;
    }

    /* Scroll móvil */
    .bv-dropdown-menu.bv-open::-webkit-scrollbar {
        width: 3px;
    }
    .bv-dropdown-menu.bv-open::-webkit-scrollbar-track {
        background: transparent;
    }
    .bv-dropdown-menu.bv-open::-webkit-scrollbar-thumb {
        background: var(--bvl-gray-300);
        border-radius: 3px;
    }
}

/* --- MÓVIL PEQUEÑO --- */
@media (max-width: 480px) {
    .bv-dropdown-menu.bv-open {
        max-height: 300px;
    }
    .bv-dropdown-menu .bv-dropdown-item {
        padding: 8px 12px 8px 40px;
        font-size: 13px;
    }
    .bv-dropdown-item .image-tools-selector {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* ==================== SELECTOR DE HERRAMIENTAS DE IMAGEN ==================== */
.image-tools-selector {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid var(--bvl-gray-200, #e5e7eb);
    border-radius: 8px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    background: white;
    color: var(--bvl-gray-700, #374151);
    outline: none;
    transition: all 0.2s ease;
}

.image-tools-selector:hover {
    border-color: var(--bvl-yellow, #eab308);
    background: var(--bvl-yellow-l, #fef9c3);
}

.image-tools-selector:focus {
    border-color: var(--bvl-yellow, #eab308);
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.1);
}

/* ==================== BOTÓN CARRITO ==================== */
.bv-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--bvl-yellow) 0%, var(--bvl-yellow-d) 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-left: 12px;
    white-space: nowrap;
    position: relative;
}

.bv-cart-btn i {
    font-size: 14px;
    color: white;
}

.bv-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--bvl-shadow-md);
    background: linear-gradient(135deg, var(--bvl-yellow-d) 0%, var(--bvl-yellow) 100%);
    color: white;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--bvl-red);
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

/* ==================== BOTÓN NOTIFICACIONES ==================== */
.bv-notification-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--bvl-yellow) 0%, var(--bvl-yellow-d) 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-left: 8px;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
    border: none;
}

.bv-notification-btn i {
    font-size: 14px;
    color: white;
}

.bv-notification-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--bvl-shadow-md);
    background: linear-gradient(135deg, var(--bvl-yellow-d) 0%, var(--bvl-yellow) 100%);
    color: white;
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--bvl-red);
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ==================== GRUPO DERECHO (Desktop) ==================== */
.bv-right-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}

/* Notification Panel Dropdown */
.notification-panel-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 360px;
    max-height: 480px;
    background: var(--bvl-white);
    border-radius: var(--bvl-radius);
    box-shadow: var(--bvl-shadow-md);
    border: 1px solid var(--bvl-gray-200);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.notification-panel-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 576px) {
    .notification-panel-dropdown {
        position: fixed;
        top: 60px;
        left: 16px;
        right: 16px;
        width: auto;
        max-height: calc(100vh - 100px);
        z-index: 9999;
    }
}

.notification-panel-header {
    padding: 14px 16px;
    border-bottom: 1px solid var(--bvl-gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
}

.mark-all-read-btn {
    background: none;
    border: none;
    color: var(--bvl-blue);
    font-size: 12px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
}

.mark-all-read-btn:hover {
    background: var(--bvl-gray-100);
}

.notification-panel-list {
    flex: 1;
    overflow-y: auto;
    max-height: 360px;
}

.notification-empty {
    padding: 32px 16px;
    text-align: center;
    color: var(--bvl-gray-500);
    font-size: 14px;
}

.notification-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--bvl-gray-50);
    text-decoration: none;
    color: var(--bvl-gray-700);
    transition: background 0.15s;
    position: relative;
}

.notification-item:hover {
    background: var(--bvl-gray-50);
}

.notification-item.unread {
    background: #eff6ff;
}

.notification-item.unread::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--bvl-blue);
}

.notification-item-icon {
    font-size: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bvl-gray-100);
    border-radius: 50%;
    flex-shrink: 0;
}

.notification-item-content {
    flex: 1;
    min-width: 0;
}

.notification-item-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--bvl-gray-900);
    margin-bottom: 2px;
}

.notification-item-message {
    font-size: 12px;
    color: var(--bvl-gray-600);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-item-time {
    font-size: 11px;
    color: var(--bvl-gray-400);
    margin-top: 4px;
}

.notification-panel-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--bvl-gray-100);
    text-align: center;
}

.notification-panel-footer a {
    color: var(--bvl-blue);
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

.notification-panel-footer a:hover {
    text-decoration: underline;
}

/* Overlay para móvil */
.bv-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bv-nav-overlay.active {
    display: block !important;
    opacity: 1 !important;
}

/* ==================== BOTONES DE CABECERA DEL MENÚ MÓVIL ==================== */
.bv-close-btn {
    background: var(--bvl-gray-100);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--bvl-gray-700);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.bv-close-btn:hover {
    background: var(--bvl-yellow-l);
    color: var(--bvl-yellow-d);
    transform: rotate(90deg);
}

/* Botón de carrito dentro del menú móvil - OCULTO */
#bv-menu-cart-btn {
    display: none !important;
}

/* Botón de notificaciones dentro del menú móvil - OCULTO */
#bv-menu-notification-btn {
    display: none !important;
}

/* Botón flotante inferior */
.bv-cart-floating {
    position: fixed;
    bottom: 20px;
    right: 16px;
    padding: 14px;
    border-radius: 50%;
    z-index: 1000;
    box-shadow: var(--bvl-shadow-md);
    margin-left: 0;
    display: none;
}

.bv-cart-floating span {
    display: none;
}

.bv-cart-floating i {
    font-size: 20px;
    margin: 0;
}

.bv-cart-floating .cart-count {
    top: -5px;
    right: -5px;
}

/* ==================== RESPONSIVE MÓVIL ==================== */
@media (max-width: 1024px) {
    .bv-nav-container {
        justify-content: space-between;
        padding: 10px 16px;
        width: 100%;
        overflow: hidden;
    }
    
    .bv-hamburger {
        display: flex;
        position: relative;
        left: 0;
        transform: none;
        z-index: 1002;
    }
    
    .bv-nav-container > .bv-cart-btn,
    .bv-nav-container > .bv-notification-btn {
        display: none;
    }
    
    .bv-cart-floating {
        display: flex !important;
    }
    
    /* Ocultar grupo derecho en móvil */
    .bv-right-group {
        display: none !important;
    }
    
    .bv-nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        background: #ffffff !important;
        background-color: #ffffff !important;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0;
        margin: 0;
        box-shadow: 0 0 30px rgba(0,0,0,0.2);
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
        overflow-x: hidden !important;
        gap: 0;
        border-radius: 0;
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        list-style: none;
    }
    
    .bv-nav-menu.bv-open {
        left: 0;
    }
    
    .bv-menu-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 16px 16px 12px;
        background: #ffffff !important;
        background-color: #ffffff !important;
        z-index: 1002;
        gap: 12px;
        border-bottom: 2px solid var(--bvl-gray-100);
        flex-shrink: 0;
        position: sticky;
        top: 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        width: 100%;
        box-sizing: border-box;
    }
    
    .bv-menu-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 700;
        font-size: 20px;
        color: var(--bvl-blue);
    }
    
    .bv-menu-brand .brand-dot {
        background: var(--bvl-blue);
        color: white;
        padding: 4px 10px;
        border-radius: 8px;
        font-size: 18px;
    }
    
    .bv-nav-item {
        width: 100%;
        margin: 0;
        overflow: visible;
        flex-shrink: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .bv-nav-link,
    .bv-dropdown-toggle {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 16px;
        font-size: 15px;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        text-align: left;
        background: transparent !important;
        border-radius: var(--bvl-radius-sm);
        box-sizing: border-box;
        color: var(--bvl-gray-700);
        transition: all 0.2s ease;
        max-width: 100%;
    }
    
    .bv-nav-link i,
    .bv-dropdown-toggle i {
        font-size: 18px;
        width: 28px;
        flex-shrink: 0;
    }
    
    .bv-nav-link:hover,
    .bv-dropdown-toggle:hover {
        background: var(--bvl-gray-100) !important;
        color: var(--bvl-yellow-d);
    }
    
    .bv-nav-link.active {
        background: linear-gradient(135deg, var(--bvl-yellow-l) 0%, var(--bvl-white) 100%) !important;
        color: var(--bvl-yellow-d);
        font-weight: 600;
        border-left: 3px solid var(--bvl-yellow);
    }
    
    .bv-dropdown {
        width: 100%;
        display: block;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .bv-dropdown-toggle {
        justify-content: space-between;
        cursor: pointer;
        width: 100%;
        display: flex;
        align-items: center;
    }
    
    .bv-dropdown-arrow {
        margin-left: auto;
        font-size: 12px;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }
    
    .bv-dropdown-toggle.bv-open .bv-dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .bv-dropdown-menu {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100%;
        background: var(--bvl-gray-50) !important;
        border-radius: var(--bvl-radius-sm);
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        display: block !important;
        box-sizing: border-box;
        max-width: 100%;
    }
    
    .bv-dropdown-menu.bv-open {
        max-height: none;
        opacity: 1;
        visibility: visible;
        margin: 4px 0 8px;
        padding: 8px 0;
        overflow-y: visible;
        overflow-x: hidden;
        background: #f3f4f6 !important;
        border-radius: 10px;
    }
    
    .bv-dropdown-item {
        padding: 10px 16px 10px 48px;
        font-size: 14px;
        width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        box-sizing: border-box;
        background: transparent !important;
        color: var(--bvl-gray-700);
        transition: all 0.2s ease;
        max-width: 100%;
    }
    
    .bv-dropdown-item i {
        font-size: 14px;
        width: 22px;
        flex-shrink: 0;
    }
    
    .bv-dropdown-item:hover {
        background: var(--bvl-yellow-l) !important;
        padding-left: 52px;
        color: var(--bvl-yellow-d);
    }
    
    .bv-dropdown-divider {
        margin: 4px 16px;
        height: 1px;
        background: var(--bvl-gray-200);
    }
    
    .badge-new {
        background: var(--bvl-red);
        color: white;
        font-size: 9px;
        padding: 1px 8px;
        border-radius: 10px;
        margin-left: auto;
    }
    
    .image-tools-selector {
        width: 100%;
        padding: 8px 12px;
        border: 2px solid var(--bvl-gray-200);
        border-radius: 8px;
        font-size: 13px;
        font-family: 'DM Sans', sans-serif;
        cursor: pointer;
        background: white;
        color: var(--bvl-gray-700);
        outline: none;
        transition: all 0.2s ease;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .image-tools-selector:hover {
        border-color: var(--bvl-yellow);
        background: var(--bvl-yellow-l);
    }
    
    .bv-nav-menu::-webkit-scrollbar {
        width: 6px;
    }
    
    .bv-nav-menu::-webkit-scrollbar-track {
        background: var(--bvl-gray-100);
    }
    
    .bv-nav-menu::-webkit-scrollbar-thumb {
        background: var(--bvl-yellow);
        border-radius: 3px;
    }
    
    .bv-nav-menu::-webkit-scrollbar-thumb:hover {
        background: var(--bvl-yellow-d);
    }
    
    .bv-nav-menu {
        scrollbar-width: thin;
        scrollbar-color: var(--bvl-yellow) var(--bvl-gray-100);
    }
    
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .bv-nav-menu.bv-open .bv-nav-item {
        animation: slideIn 0.25s ease forwards;
        opacity: 0;
    }
    
    .bv-nav-menu.bv-open .bv-nav-item:nth-child(2) { animation-delay: 0.03s; }
    .bv-nav-menu.bv-open .bv-nav-item:nth-child(3) { animation-delay: 0.06s; }
    .bv-nav-menu.bv-open .bv-nav-item:nth-child(4) { animation-delay: 0.09s; }
    .bv-nav-menu.bv-open .bv-nav-item:nth-child(5) { animation-delay: 0.12s; }
    .bv-nav-menu.bv-open .bv-nav-item:nth-child(6) { animation-delay: 0.15s; }
    .bv-nav-menu.bv-open .bv-nav-item:nth-child(7) { animation-delay: 0.18s; }
    .bv-nav-menu.bv-open .bv-nav-item:nth-child(8) { animation-delay: 0.21s; }
    .bv-nav-menu.bv-open .bv-nav-item:nth-child(9) { animation-delay: 0.24s; }
    .bv-nav-menu.bv-open .bv-nav-item:nth-child(10) { animation-delay: 0.27s; }
    .bv-nav-menu.bv-open .bv-nav-item:nth-child(11) { animation-delay: 0.30s; }
    .bv-nav-menu.bv-open .bv-nav-item:nth-child(12) { animation-delay: 0.33s; }
}

@media (max-width: 768px) {
    .bv-nav-menu {
        padding: 0;
    }
    
    .bv-menu-header {
        padding: 12px 12px 10px;
    }
    
    .bv-nav-link,
    .bv-dropdown-toggle {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .bv-nav-link i,
    .bv-dropdown-toggle i {
        font-size: 16px;
        width: 26px;
    }
    
    .bv-dropdown-item {
        padding: 8px 12px 8px 44px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .bv-nav-container {
        padding: 8px 12px;
    }
    
    .bv-hamburger {
        width: 24px;
        height: 18px;
    }
    
    .bv-menu-header {
        padding: 10px 12px 8px;
    }
    
    .bv-nav-link,
    .bv-dropdown-toggle {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .bv-nav-link i,
    .bv-dropdown-toggle i {
        font-size: 16px;
        width: 24px;
    }
    
    .bv-dropdown-item {
        padding: 8px 12px 8px 40px;
        font-size: 13px;
    }
    
    .bv-cart-floating {
        right: 12px;
        bottom: 12px;
        padding: 12px;
    }
    
    .bv-cart-floating i {
        font-size: 18px;
    }
}

/* ==================== DESKTOP ==================== */
@media (min-width: 1025px) {
    .bv-nav-container > .bv-cart-btn,
    .bv-nav-container > .bv-notification-btn {
        display: inline-flex;
    }
    
    .bv-cart-floating {
        display: none !important;
    }
}