/* Desktop Right Sidebar Layout for G.AZ Fashions */

/* Desktop Layout Structure */
@media (min-width: 992px) {
    /* Force show desktop elements */
    .d-none.d-lg-block {
        display: block !important;
    }
    .desktop-layout {
        position: relative;
        min-height: 100vh;
    }
    
    /* Desktop Navigation Bar Adjustments */
    .navbar {
        position: relative;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .navbar-brand {
        display: flex;
        align-items: center;
        font-size: 1.8rem;
        font-weight: 700;
        text-decoration: none;
        color: #333;
    }
    
    .logo-image {
        height: 50px;
        width: auto;
        border-radius: 8px;
    }
    
    .text-orange {
        color: #ff6b35 !important;
    }
    
    /* Desktop sidebar disabled - using top navigation instead */
    
    .sidebar-nav {
        padding: 2rem 0;
    }
    
    .sidebar-header {
        padding: 0 1.5rem 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        margin-bottom: 1rem;
    }
    
    .sidebar-title {
        color: white;
        font-weight: 600;
        font-size: 1.1rem;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .sidebar-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .sidebar-item {
        margin-bottom: 0.5rem;
    }
    
    .sidebar-link {
        display: flex;
        align-items: center;
        padding: 1rem 1.5rem;
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.05rem;
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
    }
    
    .sidebar-link:hover {
        background: rgba(255,255,255,0.1);
        color: white;
        border-left-color: white;
        transform: translateX(5px);
    }
    
    .sidebar-link.active {
        background: rgba(255,255,255,0.2);
        border-left-color: white;
    }
    
    .sidebar-link i {
        font-size: 1.2rem;
        width: 24px;
    }
    
    /* Sidebar Badge for Cart Count */
    .sidebar-badge {
        background: white;
        color: #ff6b35;
        border-radius: 50%;
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
        font-weight: bold;
        margin-left: auto;
        min-width: 24px;
        text-align: center;
    }
    
    /* Sidebar Dropdown */
    .sidebar-dropdown {
        background: rgba(0,0,0,0.2);
        border: none;
        border-radius: 0;
        margin-top: 0;
        box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .sidebar-dropdown .dropdown-item {
        color: rgba(255,255,255,0.9);
        padding: 0.75rem 2rem;
        border: none;
        background: none;
        transition: all 0.3s ease;
    }
    
    .sidebar-dropdown .dropdown-item:hover {
        background: rgba(255,255,255,0.1);
        color: white;
        transform: translateX(10px);
    }
    
    .sidebar-dropdown .dropdown-divider {
        border-top: 1px solid rgba(255,255,255,0.2);
        margin: 0.5rem 0;
    }
    
    /* Desktop Content Layout - No sidebar */
    .main-content {
        margin-top: 0; /* No additional top margin needed */
        margin-right: 0; /* No sidebar margin */
        min-height: calc(100vh - 150px);
        padding: 2rem;
        background: #f8f9fa;
    }
    
    /* Mobile Override - Reset desktop styles on mobile */
    @media (max-width: 991.98px) {
        .main-content {
            margin-top: 0;
            margin-right: 0;
            padding: 1rem;
            background: white;
        }
    }
    
    /* Desktop Search Section Adjustments - No sidebar */
    .desktop-search-section {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 2px solid #ff6b35;
        padding: 1.25rem 2rem;
        z-index: 999;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
        display: block !important;
    }
    
    .desktop-search-section .search-container {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .desktop-search-section .search-input-wrapper {
        position: relative;
        background: #f8f9fa;
        border-radius: 30px;
        padding: 1rem 2rem;
        border: 2px solid #e9ecef;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .desktop-search-section .search-input-wrapper:focus-within {
        border-color: #ff6b35;
        background: white;
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.15);
        transform: translateY(-2px);
    }
    
    .desktop-search-section .search-input {
        border: none;
        background: none;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 500;
        padding-left: 2.5rem;
        font-size: 1rem;
        color: #333;
    }
    
    .desktop-search-section .search-input:focus {
        outline: none;
    }
    
    .desktop-search-section .search-icon {
        position: absolute;
        left: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: #ff6b35;
        font-size: 1.1rem;
    }
    
    /* Container Adjustments for Desktop Sidebar Layout */
    .desktop-content-wrapper .container,
    .desktop-content-wrapper .container-fluid {
        max-width: none;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Hero Section Adjustments */
    .desktop-content-wrapper .hero-section {
        margin: -2rem -2rem 2rem;
        padding: 4rem 2rem;
    }
    
    /* Footer Adjustments - No sidebar margin */
    .desktop-layout footer {
        margin-right: 0;
        margin-top: 0;
    }
    
    /* Responsive Sidebar Animation */
    .desktop-sidebar {
        transition: transform 0.3s ease;
    }
    
    /* Sidebar collapse functionality removed */
}

/* Large Desktop Enhancements - No sidebar adjustments needed */
@media (min-width: 1400px) {
    .desktop-layout footer {
        margin-right: 0;
    }
}

/* Sidebar toggle not needed for desktop */