  /* Search specific styles */
  .search-section {
    margin-top: 20px;
  }
  
  .search-container {
    position: relative;
    margin-bottom: 20px;
  }
  
  .search-input {
    width: 100%;
    padding: 14px 50px 14px 16px;
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    background: var(--card);
    font-size: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  }
  
  .search-input:focus {
    outline: none;
    border-color: var(--brand-2);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }
  
  .search-info {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 16px;
    text-align: center;
  }
  
  .no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--muted);
  }
  
  .no-results h3 {
    margin-bottom: 8px;
    color: var(--text);
  }

  /* Filters row */
  .filters-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .filter-select {
    padding: 10px 16px;
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    background: var(--card);
    font-size: 14px;
    cursor: pointer;
    min-width: 180px;
  }
  
  .reset-filter {
    padding: 10px 16px;
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    background: var(--card);
    font-size: 14px;
    cursor: pointer;
    color: var(--muted);
    transition: all 0.3s ease;
  }
  
  .reset-filter:hover {
    border-color: var(--brand-2);
    color: var(--brand-2);
  }

  /* Grid styles - same as in index */
  .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  /* Десктоп: 4 в ряд */
  @media (min-width: 1025px) {
    .grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
  }
  
  /* Планшет: 3 в ряд */
  @media (min-width: 769px) and (max-width: 1024px) {
    .grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
  }
  
  .app2 {
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .app2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
.app4 {
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: auto;
   /* height: 160px; /* Добавьте фиксированную высоту */
}

.app4 img {
      width: 100%;
     max-width: 200px;
    height: 100%;
    object-fit: cover;
    object-position: center;
        border-radius: 18px;
}
  
  .no-image {
    padding: 20px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
    word-break: break-word;
  }

.card {
    height: 350px;
    position: relative;
    background: var(--card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 14px;
    border: 1px solid var(--stroke);
    transition: transform .15s ease, box-shadow .2s;
    /* УБИРАЕМ центрирование отсюда */
}
  
  .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(16, 24, 40, .10);
  }
  
  .label {
    position: absolute;
    bottom: 12px;
    left: 16px;
   /* background: rgba(0, 0, 0, .65);*/
    background: rgb(1 35 129);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
  }
  
  .title {
    margin: 10px 2px 2px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
  }
  
  .subtitle {
    margin: 2px 2px 0;
    color: var(--muted);
    font-size: 12px;
  }
  
  .price {
    margin: 4px 2px 0;
    font-weight: 700;
    font-size: 20px;
    color: rgb(241 16 126);
  }
  
  .load-more-container {
    text-align: center;
    margin-top: 30px;
  }
  
  .load-more-btn {
    padding: 12px 24px;
    background: var(--brand-2);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .load-more-btn:hover {
    background: var(--brand-2-dark);
    transform: translateY(-1px);
  }
  
  .load-more-btn:disabled {
    background: var(--muted);
    cursor: not-allowed;
    transform: none;
  }
  
  .suggestions {
    margin-top: 20px;
  }
  
  .suggestions h3 {
    margin-bottom: 12px;
    font-size: 18px;
    color: var(--text);
  }
  
  .suggestion-item {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 8px 8px 0;
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .suggestion-item:hover {
    border-color: var(--brand-2);
    color: var(--brand-2);
  }