/* Fix header layout issues */

/* Hide mobile menu button on desktop */
.mobile-menu-btn {
    display: none !important;
}

/* Ensure search section is centered */
.search-section {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    margin-bottom: 40px;
}

.search-container {
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Show mobile menu button only on mobile */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--text-main);
        position: absolute;
        left: 20px;
        top: 20px;
    }
}