.entry-title {
display:none;
}

        /* Container */
        .ai-tool-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        /* Search Banner */
        .ai-tool-banner {
            margin-bottom: 30px;
            text-align: center;
        }

        .ai-tool-search-form {
            display: inline-flex;
            width: 100%;
            max-width: 600px;
            border: 2px solid #e1e1e1;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .ai-tool-search-form:focus-within {
            border-color: #007cba;
            box-shadow: 0 4px 12px rgba(0,123,186,0.15);
        }

        .ai-tool-search-input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            font-size: 16px;
            outline: none;
        }

        .ai-tool-search-btn {
            padding: 14px 24px;
            background: #007cba;
            color: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .ai-tool-search-btn:hover {
            background: #005a87;
        }

        /* Filters */
        .ai-tool-filters {
            margin-bottom: 20px;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .ai-tool-filter-select {
            padding: 10px 16px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 15px;
            background: white;
            min-width: 180px;
        }

        /* Loader */
        .ai-tool-loader {
            text-align: center;
            padding: 40px;
            display: none;
        }

        .ai-tool-loader.spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #007cba;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            display: inline-block;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Card Grid */
        .ai-tool-listing {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
            margin-bottom: 40px;
        }

        .ai-tool-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .ai-tool-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.12);
        }

        .ai-tool-header {
            padding: 20px 20px 0;
        }

        .ai-tool-title {
            margin: 0 0 8px;
            font-size: 1.35rem;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.3;
        }

        .ai-tool-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 12px;
        }

        .category-badge {
            background: #e3f2fd;
            color: #1976d2;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 1.2rem;
            font-weight: 500;
        }

        .ai-tool-description {
            padding: 0 20px;
            color: #555;
            font-size: 1.5rem;
            line-height: 1.5;
            flex-grow: 1;
        }

        .ai-tool-tags {
            padding: 12px 20px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            font-size: 1.2rem;
        }

        .tag-badge {
            background: #f5f5f5;
            color: #666;
            padding: 3px 8px;
            border-radius: 6px;
            font-weight: 500;
        }

        .ai-tool-website {
            padding: 16px 20px 20px;
            margin-top: auto;
        }

        .ai-tool-website a {
            display: inline-block;
            background: #007cba;
            color: white;
            padding: 10px 16px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            transition: background 0.3s ease;
        }

        .ai-tool-website a:hover {
            background: #005a87;
        }

        /* Pagination */
        .ai-tool-pagination {
            text-align: center;
            margin-top: 20px;
        }

        .ai-tool-page-numbers {
            display: inline-block;
            padding: 8px 14px;
            margin: 0 4px;
            background: #f8f9fa;
            color: #333;
            text-decoration: none;
            border-radius: 6px;
            font-size: 0.95rem;
            transition: all 0.2s ease;
        }

        .ai-tool-page-numbers:hover {
            background: #e9ecef;
        }

        .ai-tool-page-numbers.current {
            background: #007cba;
            color: white;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .ai-tool-search-form {
                flex-direction: column;
                border-radius: 12px;
                border: none;
                box-shadow: none;
            }

            .ai-tool-search-input,
            .ai-tool-search-btn {
                border-radius: 12px;
                width: 100%;
            }

            .ai-tool-search-btn {
                margin-top: 10px;
                padding: 16px;
            }

            .ai-tool-filters {
                justify-content: stretch;
            }

            .ai-tool-filter-select {
                flex: 1;
                min-width: auto;
            }

            .ai-tool-listing {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }
        
       /* ——— NO RESULTS CARD ——— */
.ai-tool-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    margin: 20px 0;
    animation: fadeIn 0.6s ease-out;
}

.no-results-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #6366f1;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ai-tool-no-results h3 {
    margin: 0 0 12px;
    font-size: 1.6rem;
    color: #1e293b;
    font-weight: 600;
}

.ai-tool-no-results p {
    color: #64748b;
    font-size: 1.05rem;
    margin: 0 0 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.no-results-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: #475569;
}

.no-results-suggestions span {
    margin-right: 8px;
    font-weight: 500;
}

.suggestion-chip {
    background: white;
    color: #4f46e5;
    padding: 6px 14px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    border: 1.5px solid #e0e7ff;
    transition: all 0.2s ease;
    cursor: pointer;
}

.suggestion-chip:hover {
    background: #eef2ff;
    border-color: #c7d2fe;
    transform: translateY(-1px);
}

/* ——— FEATURED TOOL CARD ——— */
.ai-tool-item.ai-tool-featured {
    position: relative;
    border: 2px solid #fbbf24;           /* Golden border */
    background: linear-gradient(135deg, #fffbeb 0%, #fefce8 100%);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.15);
    transform: scale(1.02);
    z-index: 10;
    overflow: hidden;
}

.ai-tool-item.ai-tool-featured::before {
    content: "Featured";
    position: absolute;
    top: 12px;
    right: -38px;
    background: #f59e0b;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 11;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ai-tool-item.ai-tool-featured .ai-tool-title {
    color: #d97706;
    font-weight: 700;
}

.ai-tool-item.ai-tool-featured .category-badge {
    background: #fef3c7;
    color: #d97706;
    border: 1px solid #fbbf24;
}

.ai-tool-item.ai-tool-featured .ai-tool-website a {
    background: #f59e0b;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.ai-tool-item.ai-tool-featured .ai-tool-website a:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* Hover lift + glow */
.ai-tool-item.ai-tool-featured:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 32px rgba(251, 191, 36, 0.25);
    transition: all 0.3s ease;
}

/* Optional: Pulse animation on badge */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(251, 191, 36, 0); }
}

.ai-tool-item.ai-tool-featured {
    animation: pulseGlow 3s infinite;
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 640px) {
    .ai-tool-no-results {
        padding: 40px 16px;
    }
    .no-results-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    .ai-tool-no-results h3 {
        font-size: 1.4rem;
    }
}

        @media (max-width: 480px) {
            .ai-tool-title {
                font-size: 1.2rem;
            }

            .ai-tool-item {
                border-radius: 10px;
            }
        }
        
        
