/* ==================== SEARCH HEADER ==================== */
.search-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #7c3aed 100%);
    border-radius: 14px;
    padding: 20px;
    margin: 18px 0 16px;
    color: white;
    position: relative;
    overflow: hidden;
}
.search-header::before {
    content: '🔍';
    position: absolute;
    font-size: 120px;
    opacity: 0.1;
    inset-inline-end: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.search-header-content {
    position: relative;
    z-index: 2;
}

.search-query-display {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 6px;
}

.search-query-display .query {
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 600;
    margin: 0 4px;
}

.search-stats {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.search-stats strong {
    color: #fde047;
}

.search-time {
    font-size: 12px;
    opacity: 0.75;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==================== ENHANCED SEARCH BAR ==================== */
.enhanced-search {
    background: white;
    border-radius: 12px;
    padding: 6px;
    margin-top: 16px;
    display: flex;
    gap: 5px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.enhanced-search input {
    flex: 1;
    border: none;
    padding: 11px 14px;
    font-size: 14px;
    outline: none;
    color: #1a1a2e;
    min-width: 0;
}

.enhanced-search button {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    color: white;
    border: none;
    padding: 11px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ==================== POPULAR SEARCHES ==================== */
.popular-searches {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 6px 0;
    margin-top: 10px;
    scrollbar-width: none;
    position: relative;
    z-index: 2;
}
.popular-searches::-webkit-scrollbar { display: none; }

.popular-searches-label {
    font-size: 12px;
    opacity: 0.75;
    white-space: nowrap;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-inline-end: 5px;
}

.popular-tag {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s;
    flex-shrink: 0;
}
.popular-tag:hover {
    background: white;
    color: #2563eb;
}

/* ==================== DID YOU MEAN ==================== */
.suggestion-bar {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #78350f;
}
.suggestion-bar i { color: #f59e0b; }
.suggestion-bar a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: underline;
}

/* ==================== SEARCH LAYOUT ==================== */
.search-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

/* ==================== SIDEBAR FILTERS ==================== */
.search-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.filter-block {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

.filter-block-head {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #f5f6fa;
}
.filter-block-head h4 {
    font-size: 13px;
    font-weight: 600;
}
.filter-block-head i {
    font-size: 11px;
    color: #aaa;
    transition: 0.3s;
}
.filter-block.collapsed .filter-block-head i {
    transform: rotate(-90deg);
}
.filter-block.collapsed .filter-block-body { display: none; }

.filter-block-body {
    padding: 14px 16px;
}

/* Category filter */
.cat-filter-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cat-filter-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    transition: 0.2s;
}
.cat-filter-item:hover { background: #f8f9fc; }
.cat-filter-item input[type="checkbox"] {
    accent-color: #2563eb;
    cursor: pointer;
}
.cat-filter-item .count {
    margin-inline-start: auto;
    color: #999;
    font-size: 11px;
    background: #f5f6fa;
    padding: 2px 8px;
    border-radius: 10px;
}
.cat-filter-item input[type="radio"] {
    accent-color: #2563eb;
    cursor: pointer;
}
.cat-row-s .cat-filter-item { flex: 1; }
.cat-children-s { padding-inline-start: 16px; }
.cat-children-s .cat-filter-item { font-size: 12px; }

/* Price range */
.price-range-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.price-inputs-row {
    display: flex;
    gap: 8px;
    align-items: center;
}
.price-inputs-row input {
    width: 100%;
    min-width: 0;
    border: 1.5px solid #e5e7eb;
    border-radius: 7px;
    padding: 8px 10px;
    font-size: 12px;
    text-align: center;
    outline: none;
}
.price-inputs-row input:focus { border-color: #2563eb; }
.price-inputs-row span { color: #ccc; font-size: 12px; flex-shrink: 0; }

.price-slider {
    width: 100%;
    accent-color: #2563eb;
}

/* Rating filter */
.rating-filter-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.rating-filter-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: 0.2s;
}
.rating-filter-item:hover { background: #f8f9fc; }
.rating-filter-item input[type="radio"] {
    accent-color: #2563eb;
}
.rating-filter-item .stars { color: #f59e0b; font-size: 13px; }
.rating-filter-item .inactive { color: #ddd; }

/* Color chips */
.color-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.color-chip {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #eee;
    transition: 0.2s;
    position: relative;
}
.color-chip:hover { transform: scale(1.1); }
.color-chip.active {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}

/* Brand search */
.brand-search-input {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    outline: none;
    margin-bottom: 10px;
}

/* Apply Buttons */
.filter-apply-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 5px;
}
.btn-filter-clear,
.btn-filter-apply {
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    font-weight: 500;
}
.btn-filter-clear {
    background: white;
    border: 1.5px solid #e5e7eb;
    color: #555;
}
.btn-filter-clear:hover { border-color: #ef4444; color: #ef4444; }
.btn-filter-apply {
    background: #2563eb;
    color: white;
    border: none;
}

/* ==================== RESULTS MAIN ==================== */
.search-results-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Sort & View Bar */
.results-toolbar {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.toolbar-info {
    font-size: 13px;
    color: #555;
}
.toolbar-info strong { color: #1a1a2e; }

.toolbar-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.sort-select-search {
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    background: white;
    cursor: pointer;
    outline: none;
}

.view-switcher {
    display: flex;
    gap: 3px;
    background: #f5f6fa;
    padding: 3px;
    border-radius: 8px;
}
.view-switcher button {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    color: #888;
    transition: 0.2s;
    font-size: 12px;
}
.view-switcher button.active {
    background: white;
    color: #2563eb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Mobile Filter Button */
.mobile-filter-btn {
    display: none;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    color: white;
    border: none;
    padding: 11px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}
.mobile-filter-btn .filter-badge {
    background: white;
    color: #2563eb;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

/* ==================== ACTIVE FILTERS ==================== */
.active-filters-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 0 2px;
}
.active-filter-chip {
    background: #eff4ff;
    border: 1px solid #dbeafe;
    color: #1e40af;
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
}
.active-filter-chip i {
    cursor: pointer;
    font-size: 10px;
    opacity: 0.7;
    transition: 0.2s;
}
.active-filter-chip i:hover { opacity: 1; color: #ef4444; }

.clear-filters-link {
    color: #ef4444;
    font-size: 12px;
    cursor: pointer;
    font-weight: 500;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ==================== PRODUCTS GRID ==================== */
.search-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.search-product-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
}
.search-product-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #2563eb;
    transform: translateY(-3px);
}

.sp-image {
    position: relative;
    background: linear-gradient(135deg, #fafbfc, #ffffff);
    height: 180px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.sp-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: 0.3s;
}
.search-product-card:hover .sp-image img {
    transform: scale(1.08);
}

.sp-badges {
    position: absolute;
    top: 8px;
    inset-inline-start: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}
.sp-badge {
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 10px;
    color: white;
    font-weight: 600;
}
.sp-badge.discount { background: #ef4444; }
.sp-badge.new { background: #2563eb; }
.sp-badge.bestseller { background: linear-gradient(135deg, #f59e0b, #ea580c); }
.sp-badge.free-shipping { background: #10b981; }

.sp-wishlist {
    position: absolute;
    top: 8px;
    inset-inline-end: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    border: 1px solid #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 13px;
    transition: 0.2s;
    z-index: 2;
}
.sp-wishlist:hover {
    color: #ec4899;
    border-color: #ec4899;
}
.sp-wishlist.active {
    color: #ec4899;
    border-color: #ec4899;
}

.sp-info {
    padding: 13px;
}
.sp-brand {
    font-size: 10px;
    color: #2563eb;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
.sp-info h4 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 7px;
    line-height: 1.35;
    min-height: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Highlight search term */
.sp-info h4 mark {
    background: #fef3c7;
    color: #92400e;
    padding: 0 2px;
    border-radius: 2px;
}

.sp-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.sp-price {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a2e;
}
.sp-old-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}
.sp-discount {
    font-size: 11px;
    color: #059669;
    font-weight: 700;
}

.sp-extras {
    font-size: 11px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}
.sp-extras i { color: #10b981; }

.sp-cart-btn {
    width: 100%;
    background: white;
    border: 1.5px solid #2563eb;
    color: #2563eb;
    padding: 9px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: 0.2s;
}
.sp-cart-btn:hover {
    background: #2563eb;
    color: white;
}

/* ==================== LIST VIEW ==================== */
.search-products-grid.list-view {
    grid-template-columns: 1fr;
}
.search-products-grid.list-view .search-product-card {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    gap: 0;
}
.search-products-grid.list-view .sp-image {
    height: 160px;
    border-radius: 12px 0 0 12px;
}
.search-products-grid.list-view .sp-info {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.search-products-grid.list-view .sp-info h4 {
    font-size: 15px;
    min-height: auto;
    margin-bottom: 6px;
}
.sp-description {
    display: none;
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 8px;
}
.search-products-grid.list-view .sp-description { display: block; }

.search-products-grid.list-view .sp-actions-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 20px;
    gap: 10px;
    border-inline-start: 1px solid #f5f6fa;
    min-width: 160px;
}
.search-products-grid.list-view .sp-cart-btn { width: 100%; }

/* ==================== CATEGORY SUGGESTIONS ==================== */
.category-suggestions {
    background: white;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 16px;
    border: 1px solid #eee;
}
.category-suggestions h3 {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1a2e;
}
.category-suggestions h3 i { color: #2563eb; }

.suggestion-cats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.suggestion-cat {
    background: #f8f9fc;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
}
.suggestion-cat:hover {
    background: #eff4ff;
    border-color: #2563eb;
    transform: translateY(-2px);
}
.suggestion-cat i {
    font-size: 20px;
    color: #2563eb;
    margin-bottom: 6px;
}
.suggestion-cat-name {
    font-size: 11px;
    color: #1a1a2e;
    font-weight: 500;
    line-height: 1.3;
}

/* ==================== NO RESULTS ==================== */
.no-results {
    background: white;
    border-radius: 16px;
    padding: 50px 20px;
    text-align: center;
    border: 1px solid #eee;
}
.no-results-icon {
    width: 90px;
    height: 90px;
    background: #f5f6fa;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #cbd5e1;
}
.no-results h2 {
    font-size: 20px;
    margin-bottom: 8px;
}
.no-results p {
    color: #888;
    margin-bottom: 20px;
    font-size: 13px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ==================== PAGINATION ==================== */
.search-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 25px 0;
    flex-wrap: wrap;
}
.search-pagination .page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
    transition: 0.2s;
}
.search-pagination .page-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}
.search-pagination .page-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

/* ==================== MOBILE SIDEBAR OVERLAY ==================== */
.mobile-filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    backdrop-filter: blur(3px);
}

/* ============================================================ */
/* ==================== RESPONSIVE - TABLET ================== */
/* ============================================================ */
@media (max-width: 1200px) {
    .search-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .suggestion-cats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 968px) {
    .search-layout {
        grid-template-columns: 1fr;
    }
    
    .mobile-filter-btn { display: flex; }
    
    /* Sidebar becomes drawer */
    .search-sidebar {
        display: none;
        position: fixed;
        top: 0;
        inset-inline-start: 0;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
        z-index: 999;
        background: #f5f6fa;
        padding: 0;
        box-shadow: 5px 0 25px rgba(0,0,0,0.15);
        gap: 0;
    }
    .search-sidebar.show {
        display: flex;
        animation: slideInLeft 0.3s ease;
    }
    @keyframes slideInLeft {
        from { transform: translateX(-100%); }
        to { transform: translateX(0); }
    }
    html[dir="rtl"] .search-sidebar.show {
        animation-name: slideInRight;
    }
    @keyframes slideInRight {
        from { transform: translateX(100%); }
        to { transform: translateX(0); }
    }
    
    /* Mobile sidebar header */
    .search-sidebar::before {
        content: 'Filters';
        display: block;
        padding: 18px 20px;
        font-size: 17px;
        font-weight: 700;
        background: white;
        border-bottom: 1px solid #eee;
        position: sticky;
        top: 0;
        z-index: 10;
    }
    
    .search-sidebar .filter-block {
        border-radius: 0;
        border-inline-start: none;
        border-inline-end: none;
        border-top: none;
        margin: 0;
    }
}

/* ============================================================ */
/* ==================== RESPONSIVE - MOBILE ================== */
/* ============================================================ */
@media (max-width: 768px) {
    .search-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .search-header {
        padding: 18px;
        border-radius: 12px;
    }
    .search-stats {
        font-size: 18px;
    }
    .search-query-display { font-size: 12px; }
    
    .enhanced-search {
        flex-wrap: wrap;
    }
    .enhanced-search input {
        font-size: 13px;
        padding: 10px 12px;
    }
    .enhanced-search button {
        padding: 10px 14px;
        font-size: 12px;
    }
    .enhanced-search button span { display: none; }
    
    .popular-searches-label { font-size: 11px; }
    .popular-tag { font-size: 11px; padding: 4px 10px; }
    
    .results-toolbar {
        padding: 10px 12px;
    }
    .toolbar-info { font-size: 12px; }
    .toolbar-controls { gap: 8px; }
    .sort-select-search { font-size: 11px; padding: 7px 10px; }
    
    .suggestion-cats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .category-suggestions { padding: 14px; }
    
    .search-products-grid.list-view .search-product-card {
        grid-template-columns: 1fr;
    }
    .search-products-grid.list-view .sp-image {
        height: 180px;
        border-radius: 12px 12px 0 0;
    }
    .search-products-grid.list-view .sp-actions-list {
        border-inline-start: none;
        border-top: 1px solid #f5f6fa;
        padding: 14px;
    }
}

@media (max-width: 576px) {
    .search-header {
        padding: 14px;
        margin: 14px 0 12px;
    }
    .search-header::before { font-size: 80px; }
    .search-stats { font-size: 16px; line-height: 1.3; }
    
    .enhanced-search { padding: 5px; }
    .enhanced-search input { padding: 9px 11px; font-size: 12px; }
    .enhanced-search button { 
        padding: 9px 12px; 
        font-size: 11px;
        border-radius: 7px;
    }
    
    .popular-searches { gap: 5px; }
    
    .suggestion-bar { 
        font-size: 12px; 
        padding: 10px 13px;
    }
    
    .results-toolbar {
        padding: 10px;
        flex-direction: column;
        align-items: stretch;
    }
    .toolbar-controls {
        justify-content: space-between;
    }
    .sort-select-search { flex: 1; }
    
    .active-filters-bar { gap: 6px; }
    .active-filter-chip { 
        padding: 4px 10px; 
        font-size: 11px; 
    }
    
    /* Product cards */
    .sp-image {
        height: 140px;
        padding: 12px;
    }
    .sp-info { padding: 10px; }
    .sp-brand { font-size: 9px; }
    .sp-info h4 { 
        font-size: 12px; 
        min-height: 32px; 
        margin-bottom: 5px;
    }
    .sp-price { font-size: 14px; }
    .sp-old-price { font-size: 11px; }
    .sp-discount { font-size: 10px; }
    .sp-extras { font-size: 10px; }
    .sp-cart-btn { 
        padding: 8px; 
        font-size: 11px;
    }
    
    .sp-badges { top: 6px; inset-inline-start: 6px; }
    .sp-badge { font-size: 9px; padding: 2px 6px; }
    .sp-wishlist {
        width: 26px;
        height: 26px;
        font-size: 11px;
        top: 6px;
        inset-inline-end: 6px;
    }
    
    /* Suggestion cats */
    .suggestion-cats { grid-template-columns: repeat(3, 1fr); }
    .suggestion-cat { padding: 12px 6px; }
    .suggestion-cat i { font-size: 18px; }
    .suggestion-cat-name { font-size: 10px; }
    
    /* Pagination */
    .search-pagination .page-btn {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .no-results { padding: 35px 18px; }
    .no-results-icon { width: 70px; height: 70px; font-size: 32px; }
    .no-results h2 { font-size: 17px; }
    .no-results p { font-size: 12px; }
}

@media (max-width: 380px) {
    .search-products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .sp-image { height: 200px; }
    .sp-info h4 { font-size: 14px; }
    .sp-price { font-size: 16px; }
    
    .suggestion-cats { grid-template-columns: 1fr 1fr; }
    
    .search-stats { font-size: 15px; }
    .toolbar-controls .view-switcher { display: none; }
}