/**
 * Project: Biegun.Studio
 * Path: /theme/assets/css/shop-archive-content.css
 * Description: Blok "O sklepie wtyczek" pod gridem archiwum sklepu (components/shop-about.php).
 *              Reszta klas (shop-section-header, shop-product-card, bstudio-cat-faq, reviews-section)
 *              pochodzi z woocommerce.css / main.css.
 */

.shop-about {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #ececec;
}

.shop-about__block {
    margin: 0 0 4rem;
}

/* ── Jak to działa — proces: kółko + nagłówek + tekst, strzałki, 4 w rzędzie ── */
.sa-gets {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.sa-get {
    flex: 1 1 0;
    min-width: 0;
}
.sa-get__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}
.sa-get__title {
    font-size: 1.05rem;
    margin: 0 0 .5rem;
    color: #111;
}
.sa-get__text {
    margin: 0;
    color: #555;
    font-size: .9rem;
    line-height: 1.6;
}
.sa-get__arrow {
    flex: 0 0 auto;
    height: 2.5rem;          /* równo z kółkiem u góry bloku */
    display: flex;
    align-items: center;
    color: #ccc;
    font-size: 1.7rem;
    line-height: 1;
}

@media (max-width: 860px) {
    .sa-gets {
        flex-direction: column;
        align-items: stretch;
    }
    .sa-get__arrow {
        align-self: center;
        height: auto;
        transform: rotate(90deg);
        margin: .25rem 0;
    }
}

/* ── Usługi dodatkowe: sama wtyczka / Wdrożenie / Opieka ───────────────── */
.sa-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.sa-service {
    padding: 1.75rem;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    background: #fff;
}
.sa-service__tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #888;
    background: #f3f3f3;
    padding: .3rem .7rem;
    border-radius: 20px;
    margin-bottom: .9rem;
}
.sa-service__tag--base {
    color: #fff;
    background: #E20B0B;
}
.sa-service__name {
    font-size: 1.2rem;
    margin: 0 0 .6rem;
}
.sa-service__text {
    margin: 0;
    color: #555;
    font-size: .94rem;
    line-height: 1.6;
}

/* ── Pasek zaufania (jasny, dopasowany do strony) ─────────────────────── */
.sa-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    margin: 0 0 4rem;
    background: #f7f7f5;
    border: 1px solid #ececec;
    border-radius: 14px;
    text-align: center;
}
.sa-trust__item {
    flex: 1 1 160px;
}
.sa-trust__num {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    color: #E20B0B;
    line-height: 1.1;
}
.sa-trust__label {
    display: block;
    margin-top: .35rem;
    font-size: .85rem;
    color: #555;
}

/* ── Pakiety — slider ──────────────────────────────────────────────────── */
.sa-bundles {
    position: relative;
}
.sa-bundles__track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: .5rem .25rem 1.25rem;
}
.sa-bundles__track > .shop-product-card {
    flex: 0 0 clamp(240px, 80vw, 280px);
    scroll-snap-align: start;
}
.sa-bundles__track::-webkit-scrollbar {
    height: 6px;
}
.sa-bundles__track::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}
.sa-bundles__nav {
    display: flex;
    gap: .5rem;
    justify-content: flex-end;
    margin-top: .25rem;
}
.sa-bundles__btn {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    color: #333;
    transition: border-color .15s, color .15s;
}
.sa-bundles__btn:hover {
    border-color: #E20B0B;
    color: #E20B0B;
}

/* ── Linki pod FAQ ─────────────────────────────────────────────────────── */
.sa-faq-links {
    margin-top: 1.5rem;
    font-size: .92rem;
    color: #555;
}
.sa-faq-links a {
    color: #E20B0B;
    font-weight: 600;
}

@media (max-width: 600px) {
    .shop-about { margin-top: 3rem; }
    .sa-trust__num { font-size: 1.5rem; }
}
