         /* ===== MENU BURGER ===== */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #2e3333;
    border-radius: 3px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .burger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        display: none;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .nav-links a {
        padding: 1rem;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
        text-align: center;
    }

    .nav-links.show {
        display: flex;
    }
    
     .results-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sort-dropdown {
        width: 100%;
        margin-top: 4px;
    }

    .results-count {
        margin-bottom: 4px;
    }
}