/* ================================================================
   SS FINDER CATEGORY SECTION — Category Page Banner
   Variant 2 from protector-finder-section-v2.html
   ================================================================ */

.ss-finder-category {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.ss-finder-category::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.ss-finder-category .ss-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.ss-finder-category .ss-cat-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ss-finder-category .ss-cat-copy {
    flex: 1;
    min-width: 0;
}

.ss-finder-category .ss-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 215, 0, 0.12);
    color: #FFD700;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ss-finder-category .ss-cat-badge svg {
    width: 14px;
    height: 14px;
}

.ss-finder-category h2 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 8px;
}

.ss-finder-category h2 em {
    font-style: normal;
    color: #FFD700;
}

.ss-finder-category .ss-cat-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 560px;
}

.ss-finder-category .ss-cat-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.ss-finder-category .ss-cat-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #FFD700;
    color: #000000;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.ss-finder-category .ss-cat-cta:hover {
    background: #f5cb00;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.25);
}

.ss-finder-category .ss-cat-cta svg {
    width: 16px;
    height: 16px;
}

.ss-finder-category .ss-cat-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.ss-finder-category .ss-cat-secondary:hover {
    border-color: rgba(255, 215, 0, 0.4);
    color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
}

.ss-finder-category .ss-cat-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.ss-finder-category .ss-cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ss-finder-category .ss-cat-chip:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 968px) {
    .ss-finder-category .ss-cat-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .ss-finder-category .ss-cat-desc {
        max-width: 100%;
    }

    .ss-finder-category .ss-cat-chips {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .ss-finder-category h2 {
        font-size: 20px;
    }
}