.pbcf-discovery,
.pbcf-discovery * {
    box-sizing: border-box;
}

.pbcf-discovery {
    width: 100%;
}

.pbcf-discovery__intro {
    width: 100%;
    max-width: 900px;

    margin: 0 auto 32px;

    text-align: center;
}

.pbcf-discovery__eyebrow {
    display: block;
    margin-bottom: 4px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pbcf-discovery__title {
    margin: 0 0 14px;

    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.15;
}

.pbcf-discovery__search {
    display: flex;
    gap: 8px;

    width: 100%;
    max-width: 760px;

    margin-inline: auto;
}

.pbcf-discovery__search-input {
    flex: 1 1 auto;

    min-width: 0;
    height: 42px;

    padding: 0 13px;

    border: 1px solid #d0d5dd;
    border-radius: 8px;

    background: #fff;

    font-size: 13px;
}

.pbcf-discovery__search-button {
    flex: 0 0 auto;

    min-height: 42px;

    padding: 0 18px;

    border: 0;
    border-radius: 8px;

    cursor: pointer;
}

.pbcf-discovery__location {
    margin-top: 8px;

    text-align: center;

    font-size: 11px;
}

.pbcf-discovery__section {
    margin-top: 28px;
}

.pbcf-discovery__section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    margin-bottom: 12px;
}

.pbcf-discovery__section-header h2 {
    margin: 0;

    font-size: 17px;
    line-height: 1.25;
}

.pbcf-discovery__section-header a {
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
}

.pbcf-discovery__placeholder {
    padding: 14px 0;

    border-top: 1px solid #eaecf0;

    font-size: 12px;
}

@media (max-width: 700px) {

    .pbcf-discovery__intro {
        margin-bottom: 26px;
    }

    .pbcf-discovery__title {
        font-size: 20px;
    }

    .pbcf-discovery__search {
        gap: 6px;
    }

    .pbcf-discovery__search-input {
        height: 40px;
        font-size: 12px;
    }

    .pbcf-discovery__search-button {
        min-height: 40px;
        padding: 0 13px;
    }

    .pbcf-discovery__section {
        margin-top: 22px;
    }

    .pbcf-discovery__section-header h2 {
        font-size: 15px;
    }
}

/* ==========================================================
 * DISCOVERY | NEARBY STORES
 * ========================================================== */

.pbcf-discovery__stores {
    display: grid;
    grid-template-columns:
        repeat(
            5,
            minmax(0, 1fr)
        );

    gap: 12px;
}

.pbcf-discovery-store-card {
    min-width: 0;
}

.pbcf-discovery-store-card__media {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    border: 1px solid #eaecf0;
    border-radius: 10px;

    background: #f9fafb;

    text-decoration: none;
}

.pbcf-discovery-store-card__logo {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.pbcf-discovery-store-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    font-size: 30px;
    font-weight: 700;
}

.pbcf-discovery-store-card__body {
    padding-top: 8px;
}

.pbcf-discovery-store-card__category {
    display: block;

    margin-bottom: 2px;

    overflow: hidden;

    color: #667085;

    font-size: 10px;
    line-height: 1.3;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.pbcf-discovery-store-card__title {
    margin: 0 0 4px;

    overflow: hidden;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.pbcf-discovery-store-card__title a {
    color: inherit;
    text-decoration: none;
}

.pbcf-discovery-store-card__distance {
    display: block;

    min-height: 14px;

    margin-bottom: 5px;

    overflow: hidden;

    color: #667085;

    font-size: 10px;
    line-height: 1.3;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.pbcf-discovery-store-card__action {
    display: inline-block;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;
}

.pbcf-discovery__empty {
    grid-column: 1 / -1;

    padding: 18px 0;

    border-top: 1px solid #eaecf0;

    color: #667085;

    font-size: 12px;
}


@media (max-width: 920px) {

    .pbcf-discovery__stores {
        grid-template-columns:
            repeat(
                4,
                minmax(0, 1fr)
            );
    }
}


@media (max-width: 700px) {

    .pbcf-discovery__stores {
        display: flex;

        gap: 10px;

        margin-right: -16px;
        padding-right: 16px;
        padding-bottom: 4px;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x proximity;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    .pbcf-discovery__stores::-webkit-scrollbar {
        display: none;
    }

    .pbcf-discovery-store-card {
        flex:
            0
            0
            min(
                42vw,
                170px
            );

        scroll-snap-align: start;
    }

    .pbcf-discovery-store-card__title {
        font-size: 12px;
    }
}

/* ==========================================================
 * DISCOVERY | NEARBY PRODUCTS
 * ========================================================== */

.pbcf-discovery__products {
    display: grid;
    grid-template-columns:
        repeat(
            5,
            minmax(0, 1fr)
        );

    gap: 12px;
}

.pbcf-discovery-product-card {
    min-width: 0;
}

.pbcf-discovery-product-card__media {
    display: block;

    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 10px;

    background: #f9fafb;
}

.pbcf-discovery-product-card__image {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.pbcf-discovery-product-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    color: #98a2b3;

    font-size: 11px;
}

.pbcf-discovery-product-card__body {
    padding-top: 8px;
}

.pbcf-discovery-product-card__title {
    margin: 0 0 4px;

    overflow: hidden;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.pbcf-discovery-product-card__title a {
    color: inherit;
    text-decoration: none;
}

.pbcf-discovery-product-card__price {
    display: block;

    margin-bottom: 3px;

    font-size: 13px;
    line-height: 1.3;
}

.pbcf-discovery-product-card__distance,
.pbcf-discovery-product-card__store {
    display: block;

    overflow: hidden;

    color: #667085;

    font-size: 10px;
    line-height: 1.35;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.pbcf-discovery-product-card__store {
    margin-top: 2px;
}

.pbcf-discovery-product-card__action {
    display: inline-block;

    margin-top: 5px;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;
}


@media (max-width: 920px) {

    .pbcf-discovery__products {
        grid-template-columns:
            repeat(
                4,
                minmax(0, 1fr)
            );
    }
}


@media (max-width: 700px) {

    .pbcf-discovery__products {
        display: flex;

        gap: 10px;

        margin-right: -16px;
        padding-right: 16px;
        padding-bottom: 4px;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x proximity;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    .pbcf-discovery__products::-webkit-scrollbar {
        display: none;
    }

    .pbcf-discovery-product-card {
        flex:
            0
            0
            min(
                42vw,
                170px
            );

        scroll-snap-align: start;
    }

    .pbcf-discovery-product-card__title {
        font-size: 12px;
    }
}


/* PBCF 18A | HOME FILTERS AND BUTTON STANDARD */

.pbcf-discovery {
    --pbcf-navy: #17134f;
    --pbcf-green: #2fbd78;
    --pbcf-button-bg: #f2f4f7;
    --pbcf-button-border: #e4e7ec;
    --pbcf-control-border: #d0d5dd;
    --pbcf-muted: #667085;

    width: 100%;

    color: #101828;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.pbcf-discovery__intro {
    width: min(100%, 1120px);
    max-width: none;

    margin: 0 auto 48px;

    text-align: center;
}

.pbcf-discovery__eyebrow {
    margin-bottom: 7px;

    color: var(--pbcf-navy);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
}

.pbcf-discovery__title {
    margin-bottom: 8px;

    color: #101828;

    font-size: clamp(26px, 3vw, 38px);
    font-weight: 750;
    letter-spacing: -.035em;
}

.pbcf-discovery__description {
    margin: 0 0 24px;

    color: var(--pbcf-muted);

    font-size: 13px;
    line-height: 1.5;
}

.pbcf-discovery-filters {
    display: grid;
    grid-template-columns:
        minmax(220px, 1.6fr)
        minmax(135px, .85fr)
        minmax(135px, .85fr)
        minmax(135px, .85fr)
        minmax(150px, .9fr)
        auto;
    gap: 8px;
    align-items: stretch;

    width: 100%;
}

.pbcf-discovery-filters__search,
.pbcf-discovery-filters__field {
    min-width: 0;
}

.pbcf-discovery-filters input,
.pbcf-discovery-filters select {
    width: 100%;
    height: 44px;

    margin: 0;
    padding: 0 13px;

    border: 1px solid var(--pbcf-control-border);
    border-radius: 8px;
    outline: 0;

    background-color: #fff;
    box-shadow: none;

    color: #101828;

    font-family: inherit;
    font-size: 12px;
    font-weight: 400;
}

.pbcf-discovery-filters select {
    padding-right: 34px;

    cursor: pointer;
}

.pbcf-discovery-filters input::placeholder {
    color: #98a2b3;
    opacity: 1;
}

.pbcf-discovery-filters input:focus,
.pbcf-discovery-filters select:focus {
    border-color: var(--pbcf-green);

    box-shadow:
        0 0 0 3px
        rgba(47, 189, 120, .12);
}


/*
 * Padrão oficial dos botões públicos PBCF.
 *
 * Normal:
 * fundo cinza-claro e texto azul-escuro.
 *
 * Hover:
 * fundo verde e texto branco.
 */

.pbcf-discovery .pbcf-button,
.pbcf-discovery button.pbcf-button,
.pbcf-discovery .pbcf-discovery__search-button,
.pbcf-discovery .pbcf-discovery-store-card__action,
.pbcf-discovery .pbcf-discovery-product-card__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;

    padding: 0 16px;

    border: 1px solid var(--pbcf-button-border);
    border-radius: 8px;

    background-color: var(--pbcf-button-bg);
    background-image: none;

    box-shadow: none;

    color: var(--pbcf-navy);

    cursor: pointer;

    font-family: inherit;
    font-size: 12px;
    font-weight: 650;
    line-height: 1;
    text-align: center;
    text-decoration: none;

    transition:
        background-color .18s ease,
        border-color .18s ease,
        color .18s ease;
}

.pbcf-discovery .pbcf-button:hover,
.pbcf-discovery .pbcf-button:focus-visible,
.pbcf-discovery button.pbcf-button:hover,
.pbcf-discovery button.pbcf-button:focus-visible,
.pbcf-discovery .pbcf-discovery__search-button:hover,
.pbcf-discovery .pbcf-discovery__search-button:focus-visible,
.pbcf-discovery .pbcf-discovery-store-card__action:hover,
.pbcf-discovery .pbcf-discovery-store-card__action:focus-visible,
.pbcf-discovery .pbcf-discovery-product-card__action:hover,
.pbcf-discovery .pbcf-discovery-product-card__action:focus-visible {
    border-color: var(--pbcf-green);

    background-color: var(--pbcf-green);
    background-image: none;

    color: #fff;

    box-shadow: none;
}

.pbcf-discovery-filters__submit {
    min-width: 92px;
    height: 44px;
}

.pbcf-discovery__location {
    margin-top: 11px;

    color: var(--pbcf-muted);

    font-size: 11px;
}

.pbcf-discovery__section {
    margin-top: 36px;
}

.pbcf-discovery__section-header h2 {
    color: #101828;

    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.025em;
}

.pbcf-discovery__section-header > a {
    color: var(--pbcf-navy);

    font-size: 11px;
    font-weight: 650;
}

.pbcf-discovery__section-header > a:hover {
    color: var(--pbcf-green);
}


@media (max-width: 1080px) {

    .pbcf-discovery-filters {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );
    }

    .pbcf-discovery-filters__search {
        grid-column: span 2;
    }
}


@media (max-width: 700px) {

    .pbcf-discovery__intro {
        margin-bottom: 34px;
    }

    .pbcf-discovery__title {
        font-size: 26px;
    }

    .pbcf-discovery__description {
        margin-bottom: 18px;

        font-size: 12px;
    }

    .pbcf-discovery-filters {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
        gap: 7px;
    }

    .pbcf-discovery-filters__search {
        grid-column: 1 / -1;
    }

    .pbcf-discovery-filters__field:last-of-type {
        grid-column: 1 / -1;
    }

    .pbcf-discovery-filters__submit {
        grid-column: 1 / -1;

        width: 100%;
    }

    .pbcf-discovery-filters input,
    .pbcf-discovery-filters select {
        height: 42px;

        font-size: 11px;
    }

    .pbcf-discovery .pbcf-button {
        min-height: 42px;

        font-size: 12px;
    }

    .pbcf-discovery__section-header h2 {
        font-size: 18px;
    }
}


@media (max-width: 420px) {

    .pbcf-discovery-filters {
        grid-template-columns: 1fr;
    }

    .pbcf-discovery-filters__search,
    .pbcf-discovery-filters__field:last-of-type,
    .pbcf-discovery-filters__submit {
        grid-column: auto;
    }
}


/* PBCF 18A | COMPACT COMMERCIAL PRODUCT CARDS */

.pbcf-discovery__section--products {
    margin-bottom: 58px;
}

.pbcf-discovery__section-eyebrow {
    display: block;

    margin-bottom: 3px;

    color: var(--pbcf-green, #2fbd78);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.pbcf-discovery__section--products
.pbcf-discovery__section-header {
    align-items: flex-end;
}

.pbcf-discovery__products {
    align-items: stretch;

    gap: 16px;
}

.pbcf-discovery-product-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    overflow: hidden;

    border: 1px solid #e4e7ec;
    border-radius: 14px;

    background: #fff;

    transition:
        border-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.pbcf-discovery-product-card:hover {
    border-color: #d0d5dd;

    box-shadow:
        0 10px 26px
        rgba(16, 24, 40, .08);

    transform: translateY(-2px);
}

.pbcf-discovery-product-card__media {
    position: relative;

    flex: 0 0 auto;

    width: 100%;
    aspect-ratio: 1 / 1;

    border-radius: 0;

    background: #f6f7f9;
}

.pbcf-discovery-product-card__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.pbcf-discovery-product-card__placeholder {
    color: #98a2b3;

    font-size: 11px;
}

.pbcf-discovery-product-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 22px;

    padding: 0 9px;

    border-radius: 999px;

    background: #dfff00;
    color: #101828;

    font-size: 9px;
    font-weight: 850;
    letter-spacing: .035em;
    line-height: 1;
    text-transform: uppercase;
}

.pbcf-discovery-product-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;

    min-height: 238px;

    padding: 13px 13px 12px;
}

.pbcf-discovery-product-card__category {
    display: block;

    min-height: 12px;
    margin: 0 0 3px;

    overflow: hidden;

    color: var(--pbcf-navy, #17134f);

    font-size: 8px;
    font-weight: 750;
    letter-spacing: .035em;
    line-height: 1.25;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.pbcf-discovery-product-card__title {
    min-height: 34px;

    margin: 0 0 4px;

    display: -webkit-box;
    overflow: hidden;

    color: #101828;

    font-size: 13px;
    font-weight: 650;
    line-height: 1.3;

    white-space: normal;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.pbcf-discovery-product-card__title a {
    color: inherit;
    text-decoration: none;
}

.pbcf-discovery-product-card__distance {
    min-height: 14px;

    margin: 0 0 7px;

    color: #667085;

    font-size: 9px;
    line-height: 1.3;
}

.pbcf-discovery-product-card__pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    min-height: 51px;

    margin: 0;
}

.pbcf-discovery-product-card__old-price {
    margin: 0 0 1px;

    color: #98a2b3;

    font-size: 9px;
    line-height: 1.2;
    text-decoration: line-through;
}

.pbcf-discovery-product-card__price {
    margin: 0;

    color: #101828;

    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.15;
}

.pbcf-discovery-product-card__pix {
    margin: 2px 0 0;

    color: #087443;

    font-size: 9px;
    font-weight: 700;
    line-height: 1.25;
}

.pbcf-discovery-product-card__store {
    display: grid;

    min-height: 41px;

    margin: 9px 0 10px;
    padding-top: 8px;

    border-top: 1px solid #eaecf0;
}

.pbcf-discovery-product-card__store span {
    margin: 0;

    color: #667085;

    font-size: 8px;
    line-height: 1.25;
}

.pbcf-discovery-product-card__store a,
.pbcf-discovery-product-card__store strong {
    overflow: hidden;

    color: #344054;

    font-size: 9px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pbcf-discovery-product-card__store a:hover {
    color: var(--pbcf-green, #2fbd78);
}

.pbcf-discovery
.pbcf-discovery-product-card__action {
    width: 100%;
    min-height: 38px;

    margin: auto 0 0;
    padding: 0 10px;

    font-size: 10px;
    text-transform: none;
}


@media (max-width: 920px) {

    .pbcf-discovery__products {
        grid-template-columns:
            repeat(
                4,
                minmax(0, 1fr)
            );
    }
}


@media (max-width: 700px) {

    .pbcf-discovery__products {
        display: grid;
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 10px;

        margin-right: 0;
        padding-right: 0;
        padding-bottom: 0;

        overflow: visible;
    }

    .pbcf-discovery-product-card {
        width: auto;
    }

    .pbcf-discovery-product-card__body {
        min-height: 218px;

        padding: 11px 10px 10px;
    }

    .pbcf-discovery-product-card__badge {
        top: 7px;
        left: 7px;

        min-height: 20px;

        padding-inline: 7px;

        font-size: 8px;
    }

    .pbcf-discovery-product-card__category {
        font-size: 7px;
    }

    .pbcf-discovery-product-card__title {
        min-height: 32px;

        font-size: 12px;
    }

    .pbcf-discovery-product-card__price {
        font-size: 15px;
    }

    .pbcf-discovery-product-card__store {
        margin-top: 7px;
        margin-bottom: 8px;
        padding-top: 7px;
    }

    .pbcf-discovery
    .pbcf-discovery-product-card__action {
        min-height: 36px;

        font-size: 9px;
    }
}


/* PBCF 18B | REAL DISCOVERY NAVIGATION */

.pbcf-discovery-categories {
    width: 100%;

    margin: 34px 0 46px;
}

.pbcf-discovery-categories__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;

    margin-bottom: 16px;
}

.pbcf-discovery-categories__header > div {
    min-width: 0;
}

.pbcf-discovery-categories__eyebrow {
    display: block;

    margin-bottom: 3px;

    color: var(--pbcf-green, #2fbd78);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.pbcf-discovery-categories__header h2 {
    margin: 0;

    color: #101828;

    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.2;
}

.pbcf-discovery-categories__header > a {
    flex: 0 0 auto;

    color: var(--pbcf-navy, #17134f);

    font-size: 11px;
    font-weight: 650;
    text-decoration: none;
}

.pbcf-discovery-categories__header > a:hover {
    color: var(--pbcf-green, #2fbd78);
}

.pbcf-discovery-categories__list {
    display: grid;
    grid-template-columns:
        repeat(
            5,
            minmax(0, 1fr)
        );

    gap: 10px;
}

.pbcf-discovery-category {
    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 0;
    min-height: 66px;

    padding: 10px 11px;

    border: 1px solid #e4e7ec;
    border-radius: 11px;

    background: #fff;
    color: #101828;

    text-decoration: none;

    transition:
        border-color .18s ease,
        background-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.pbcf-discovery-category:hover {
    border-color: rgba(47, 189, 120, .45);

    background: #f5fcf8;

    box-shadow:
        0 8px 22px
        rgba(16, 24, 40, .06);

    color: #101828;

    transform: translateY(-1px);
}

.pbcf-discovery-category__symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 38px;
    height: 38px;

    border-radius: 10px;

    background: #f2f4f7;
    color: var(--pbcf-navy, #17134f);

    font-size: 13px;
    font-weight: 800;

    transition:
        background-color .18s ease,
        color .18s ease;
}

.pbcf-discovery-category:hover
.pbcf-discovery-category__symbol {
    background: var(--pbcf-green, #2fbd78);
    color: #fff;
}

.pbcf-discovery-category--store
.pbcf-discovery-category__symbol {
    border-radius: 50%;
}

.pbcf-discovery-category__content {
    display: grid;

    min-width: 0;
}

.pbcf-discovery-category__content strong {
    overflow: hidden;

    color: #101828;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pbcf-discovery-category__content small {
    margin-top: 2px;

    color: #667085;

    font-size: 9px;
    line-height: 1.3;
}


@media (max-width: 920px) {

    .pbcf-discovery-categories__list {
        grid-template-columns:
            repeat(
                4,
                minmax(0, 1fr)
            );
    }
}


@media (max-width: 700px) {

    .pbcf-discovery-categories {
        margin: 28px 0 36px;
    }

    .pbcf-discovery-categories__header {
        margin-bottom: 12px;
    }

    .pbcf-discovery-categories__header h2 {
        font-size: 18px;
    }

    .pbcf-discovery-categories__list {
        display: flex;

        gap: 9px;

        margin-right: -16px;
        padding-right: 16px;
        padding-bottom: 5px;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x proximity;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .pbcf-discovery-categories__list::-webkit-scrollbar {
        display: none;
    }

    .pbcf-discovery-category {
        flex: 0 0 min(62vw, 215px);

        min-height: 62px;

        scroll-snap-align: start;
    }
}


/* PBCF 18B | PRIMARY STORE CARDS */

.pbcf-discovery__section--stores {
    margin-top: 42px;
    margin-bottom: 46px;
}

.pbcf-discovery__section--stores
.pbcf-discovery__section-header {
    align-items: flex-end;
}

.pbcf-discovery__stores {
    align-items: stretch;

    gap: 16px;
}

.pbcf-discovery-store-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    overflow: hidden;

    border: 1px solid #e4e7ec;
    border-radius: 14px;

    background: #fff;

    transition:
        border-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.pbcf-discovery-store-card:hover {
    border-color: #d0d5dd;

    box-shadow:
        0 10px 26px
        rgba(16, 24, 40, .08);

    transform: translateY(-2px);
}

.pbcf-discovery-store-card__media {
    flex: 0 0 auto;

    border: 0;
    border-radius: 0;

    background: #f6f7f9;
}

.pbcf-discovery-store-card__logo {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.pbcf-discovery-store-card__placeholder {
    color: var(--pbcf-navy, #17134f);

    font-size: 32px;
}

.pbcf-discovery-store-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;

    min-height: 151px;

    padding: 12px 13px;
}

.pbcf-discovery-store-card__category {
    min-height: 13px;

    margin: 0 0 3px;

    color: #667085;

    font-size: 8px;
    font-weight: 650;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.pbcf-discovery-store-card__title {
    min-height: 18px;

    margin: 0 0 4px;

    font-size: 13px;
    line-height: 1.3;
}

.pbcf-discovery-store-card__distance {
    min-height: 13px;

    margin: 0 0 2px;

    color: #667085;

    font-size: 9px;
    line-height: 1.3;
}

.pbcf-discovery-store-card__location {
    display: block;

    margin: 0 0 9px;

    overflow: hidden;

    color: #475467;

    font-size: 9px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pbcf-discovery
.pbcf-discovery-store-card__action {
    width: 100%;
    min-height: 38px;

    margin: auto 0 0;
    padding: 0 10px;

    font-size: 10px;
}


@media (max-width: 700px) {

    .pbcf-discovery__section--stores {
        margin-top: 34px;
        margin-bottom: 36px;
    }

    .pbcf-discovery__stores {
        display: grid;
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 10px;

        margin-right: 0;
        padding-right: 0;
        padding-bottom: 0;

        overflow: visible;
    }

    .pbcf-discovery-store-card {
        width: auto;
    }

    .pbcf-discovery-store-card__body {
        min-height: 143px;

        padding: 10px;
    }

    .pbcf-discovery-store-card__title {
        font-size: 12px;
    }

    .pbcf-discovery
    .pbcf-discovery-store-card__action {
        min-height: 36px;

        font-size: 9px;
    }
}
