/* RAFTELSHOP - Products Page Desktop CSS */

/* Desktop uniquement */
@media (min-width: 1025px) {
    .hamburger-btn {
        display: none !important;
    }
    
    .sidebar-overlay {
        display: none !important;
    }
    
    .products-content { 
        margin-left: 0; 
    }
    
    .sidebar {
        position: sticky;
        top: 80px;
        height: auto;
        max-height: calc(100vh - 100px);
        z-index: 1;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    body.scrolling .sidebar {
        opacity: 0.9;
        transform: translateX(-5px);
    }
    
    .sidebar-header { 
        position: relative; 
    }
    
    .toggle-sidebar-btn {
        position: absolute;
        top: 6px;
        right: 6px;
        z-index: 2000;
        background: rgba(255,255,255,0.2);
        border: 2px solid rgba(255,255,255,0.3);
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        transition: all 0.3s;
        padding: 0;
    }
    
    .sidebar.closed .toggle-sidebar-btn {
        display: none;
    }
    
    .sidebar-closed-btn {
        position: fixed;
        top: 90px;
        left: 0;
        z-index: 999;
        background: white;
        border: 2px solid #e2e8f0;
        border-left: none;
        border-radius: 0 8px 8px 0;
        width: 40px;
        height: 50px;
        display: none;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 2px 0 8px rgba(0,0,0,0.1);
    }
    
    .sidebar.closed ~ .sidebar-closed-btn {
        display: flex;
    }
    
    .sidebar-closed-btn:hover {
        background: #1e3a8a;
        color: white;
        border-color: #1e3a8a;
    }
    
    .sidebar-closed-btn i {
        font-size: 1.1rem;
        color: #1e3a8a;
    }
    
    .sidebar-closed-btn:hover i {
        color: white;
    }
    
    .toggle-sidebar-btn:hover {
        background: #1e3a8a;
        color: white;
        border-color: #1e3a8a;
        transform: scale(1.1);
    }
    
    .toggle-sidebar-btn i {
        font-size: 0.9rem;
        color: #ffffff;
        transition: all 0.3s;
    }
    
    .toggle-sidebar-btn:hover i {
        color: #ffffff;
    }
}
