/* ========================================
   Category Banner Styling (B2B Optimized)
   ======================================== */

/* Main banner container - light professional background */
.category-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Main headline (H2) - pain-point focused */
.category-banner h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Subheadlines (H3) */
.category-banner h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #495057;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* First H3 - reduce top margin */
.category-banner h3:first-of-type {
    margin-top: 1.5rem;
}

/* Paragraphs */
.category-banner p {
    font-size: 1rem;
    line-height: 1.65;
    color: #495057;
    margin-bottom: 1.25rem;
}

/* Trust signals section */
.category-banner .trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border-left: 4px solid #6366f1;
}

.category-banner .trust-signals span {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

.category-banner .trust-signals span::before {
    content: "✓";
    color: #10b981;
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Bulk pricing callout */
.category-banner .bulk-pricing {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.category-banner .bulk-pricing h3 {
    margin-top: 0;
    color: #4f46e5;
}

/* Styled bullet lists (.svkp) - enhanced for banner context */
.category-banner .svkp {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
}

.category-banner .svkp li {
    margin: 0.5rem 0;
    position: relative;
    padding-left: 1.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
}

.category-banner .svkp li:before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Responsive design */
@media (max-width: 991px) {
    .category-banner {
        padding: 2rem;
    }
    
    .category-banner h2 {
        font-size: 1.625rem;
    }
}

@media (max-width: 767px) {
    .category-banner {
        padding: 1.5rem;
        border-radius: 8px;
    }
    
    .category-banner h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .category-banner h3 {
        font-size: 1.125rem;
    }
    
    .category-banner .trust-signals {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .category-banner .bulk-pricing {
        padding: 1rem;
    }
}

@media (max-width: 575px) {
    .category-banner {
        padding: 1.25rem;
    }
    
    .category-banner h2 {
        font-size: 1.375rem;
    }
}

/* Print optimization */
@media print {
    .category-banner {
        background: white;
        border: 1px solid #000;
        box-shadow: none;
    }
}
