    .search-page {
        padding: 60px 0 80px;
    }

    .search-header h1 {
        font-size: 26px;
        margin-bottom: 36px;
        color: var(--ipso-dark);
    }

    .search-header span {
        color: var(--ipso-green);
    }

    .search-results {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 28px;
    }

    /* Kart */
    .search-card {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 14px;
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        transition: transform .25s ease, box-shadow .25s ease;
    }

    .search-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
    }

    .search-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .card-body {
        padding: 18px;
    }

    .card-body h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .card-body p {
        font-size: 14px;
        color: #666;
        line-height: 1.5;
    }

    .card-body .type {
        display: inline-block;
        margin-top: 10px;
        font-size: 12px;
        color: var(--ipso-green);
        font-weight: 600;
    }

    /* BOŞ DURUM */
    .search-empty {
        text-align: center;
        padding: 80px 20px;
    }

    .search-empty i {
        font-size: 54px;
        color: var(--ipso-green);
        opacity: .8;
    }

    .search-empty h2 {
        margin: 20px 0 10px;
    }

    .search-empty p {
        color: #666;
    }

    .search-empty ul {
        list-style: none;
        padding: 0;
        margin: 20px 0 30px;
    }

    .search-empty li {
        margin: 6px 0;
        color: #777;
    }

    .btn-back {
        display: inline-block;
        padding: 12px 22px;
        border-radius: 8px;
        background: var(--ipso-green);
        color: #fff;
        text-decoration: none;
        font-weight: 600;
    }

    mark {
        background: rgba(106, 143, 47, .2);
        color: inherit;
        padding: 0 3px;
        border-radius: 4px;
    }

    .search-header h1 strong {
        color: var(--ipso-green);
    }

    /* Suggestion */
    .suggestion {
        margin-top: 14px;
        font-size: 15px;
    }

    .suggestion a {
        color: var(--ipso-green);
        font-weight: 600;
        text-decoration: none;
    }

    /* Empty actions */
    .empty-actions {
        display: flex;
        gap: 14px;
        justify-content: center;
        margin-top: 26px;
    }

    .btn-outline {
        padding: 12px 22px;
        border-radius: 8px;
        border: 1px solid var(--border);
        text-decoration: none;
        color: var(--ipso-dark);
    }

    /* MOBILE */
    @media (max-width: 768px) {
        .search-header h1 {
            font-size: 20px;
            line-height: 1.4;
        }

        .search-empty {
            padding: 60px 10px;
        }

        .search-empty i {
            font-size: 42px;
        }

        .empty-actions {
            flex-direction: column;
        }
    }