/* ==========================================================================
   ARCHIVE SEO — USPs, FAQs, Help block, Laatst bekeken, Product count
   ========================================================================== */

/* --- Product count --- */
.sar-product-count {
    font-size: 13px;
    color: #6b7280;
    white-space: nowrap;
}

/* --- SEO USPs (onder beschrijving) --- */
.sar-seo-usps {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
    margin: 8px 0 12px;
}

.sar-seo-usp {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    padding: 0;
    border-radius: 0;
    background: none;
}

.sar-seo-usp::before {
    content: '✓';
    color: #d21b52;
    font-weight: 700;
    margin-right: 6px;
}

/* --- SEO Intro tekst --- */
.sar-seo-intro {
    font-size: 15px;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 16px;
}

.sar-seo-intro p {
    margin-bottom: 8px;
}

/* --- SEO Extra HTML --- */
.sar-seo-extra {
    margin-bottom: 20px;
}

/* --- FAQs --- */
.sar-seo-faqs {
    border-top: 1px solid #e5e7eb;
    padding-top: 32px;
}

.sar-faq-list {
    max-width: 100%;
}

.sar-faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.sar-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    list-style: none;
}

.sar-faq-question::-webkit-details-marker {
    display: none;
}

.sar-faq-question::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: #9ca3af;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.sar-faq-item[open] > .sar-faq-question::after {
    content: '−';
    color: #d21b52;
}

.sar-faq-answer {
    padding: 0 0 16px;
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
}

.sar-faq-answer p {
    margin-bottom: 8px;
}

/* --- Help / Advies blok --- */
.sar-help-block {
    border-top: 1px solid #e5e7eb;
    padding-top: 32px;
}

.sar-help-inner {
    background: #fdf2f8;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.sar-help-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
}

.sar-help-sub {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 24px;
}

.sar-help-options {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.sar-help-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 28px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: #111827;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    min-width: 140px;
}

.sar-help-option:hover {
    border-color: #d21b52;
    box-shadow: 0 4px 16px rgba(210, 27, 82, 0.1);
}

.sar-help-option svg {
    color: #d21b52;
}

.sar-help-label {
    font-size: 14px;
    font-weight: 600;
}

.sar-help-detail {
    font-size: 12px;
    color: #6b7280;
}

/* --- Laatst bekeken (scrollable row, homepage style) --- */
.sar-rv-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.sar-rv-track::-webkit-scrollbar {
    display: none;
}

.sar-rv-track > li {
    scroll-snap-align: start;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .sar-seo-usps {
        flex-direction: column;
        gap: 2px 0;
        margin: 4px 0 0;
    }

    .sar-seo-usp {
        font-size: 12px;
    }

    /* Verberg 4e+ USP op mobiel */
    .sar-usp-extra {
        display: none !important;
    }

    .sar-help-options {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .sar-help-option {
        width: 100%;
        max-width: 280px;
        flex-direction: row;
        padding: 14px 20px;
        gap: 12px;
    }

    .sar-help-option svg {
        flex-shrink: 0;
    }

    .sar-help-inner {
        padding: 24px 16px;
    }

    .sar-faq-question {
        font-size: 14px;
        padding: 14px 0;
    }

    /* Verwijder dubbele px-4 op mobiel (parent .sarlemijn-shop-wrap heeft al px-4) */
    .sar-seo-bottom,
    .sar-seo-faqs,
    .sar-recently-viewed,
    .sar-help-block {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
