.search-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            z-index: 9999;
            display: none;
            justify-content: center;
            align-items: flex-start;
            padding-top: 80px;
            backdrop-filter: blur(2px);
        }
        .search-modal-overlay.open {
            display: flex;
        }
        .search-modal {
            background: white;
            width: 600px;
            max-width: 90%;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            max-height: 80vh;
        }
        .search-modal-header {
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        .search-modal-icon {
            color: #888;
            margin-right: 15px;
            font-size: 18px;
        }
        .search-modal-input {
            width: 100%;
            border: none;
            font-size: 16px;
            outline: none;
            padding: 5px;
            color: #333;
        }
        .search-modal-body {
            padding: 0;
            overflow-y: auto;
            flex: 1;
        }
        .search-section {
            padding: 15px 0;
        }
        .search-section-title {
            font-size: 11px;
            font-weight: 700;
            color: #999;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0 20px;
        }
        .search-item {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            border-bottom: 1px solid #f9f9f9;
            transition: background 0.2s;
        }
        .search-item:hover {
            background: #f4f4f4;
            text-decoration: none;
        }
        .search-item-img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 4px;
            margin-right: 15px;
            flex-shrink: 0;
            background-color: #eee;
        }
        .search-item-content {
            flex: 1;
            min-width: 0;
        }
        .search-item-title {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
            line-height: 1.2;
        }
        .search-item:hover .search-item-title {
            color: var(--color-primary);
        }
        .search-item-snippet {
            font-size: 13px;
            color: #777;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .search-highlight {
            font-weight: 800;
            color: #000;
            background-color: color-mix(in srgb, var(--color-primary), transparent 90%);
        }
        /* Hide the original dropdown styles if they exist */
        .search-results { display: none !important; }