/* Explore Page Styles */
.explore-container {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Sidebar Filters */
.explore-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.filter-section {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.filter-section h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.filter-select {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover {
    border-color: var(--primary);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.filter-checkbox:hover {
    background: rgba(255, 255, 255, 0.05);
}

.filter-checkbox input[type="radio"] {
    margin-right: 0.5rem;
    cursor: pointer;
    accent-color: var(--primary);
}

.filter-checkbox span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.filter-checkbox input:checked+span {
    color: var(--text-primary);
    font-weight: 500;
}

/* Main Content */
.explore-main {
    flex: 1;
}

.explore-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.explore-header h1 {
    font-size: 2rem;
    margin: 0;
}

.results-info {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Mobile Sidebar - Hidden on desktop */
.mobile-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.sidebar-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.sidebar-close:hover {
    color: var(--primary);
}

.sidebar-content {
    padding: 1rem;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.sidebar-item.active {
    background: var(--primary);
    color: white;
}

.sidebar-item i {
    margin-right: 1rem;
    font-size: 1.1rem;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.hamburger-btn:hover {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 992px) {
    .explore-sidebar {
        display: none;
    }

    .explore-container {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {

    .mobile-sidebar,
    .sidebar-overlay {
        display: block;
    }

    .hamburger-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .explore-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .explore-header h1 {
        font-size: 1.5rem;
    }

    .explore-container {
        margin: 1rem auto;
    }

    /* Mobile specific adjustments */
    .mobile-header {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}