/* Universal horizontal seller strip for the newest seller profiles. */
.pb-buyers-recent-sellers {
    position: relative;
}

.pb-buyers-seller-strip {
    display: grid;
    gap: 16px;
    grid-auto-columns: minmax(92px, 1fr);
    grid-auto-flow: column;
    overflow-x: auto;
    padding: 0 52px 14px 22px;
    scrollbar-width: thin;
}

.pb-buyers-seller-strip--empty {
    display: block;
    padding: 12px 22px 22px;
}

.pb-buyers-seller-strip--empty p {
    color: var(--pb-muted);
    font-size: 14px;
    margin: 0;
}

.pb-buyers-recent-seller {
    align-items: center;
    color: var(--pb-text);
    display: flex;
    flex-direction: column;
    min-width: 92px;
    text-align: center;
    text-decoration: none;
}

.pb-buyers-avatar-ring {
    background: #061d31;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--pb-blue), 0 8px 16px rgba(23, 105, 245, 0.12);
    font-size: 16px;
    height: 74px;
    margin-bottom: 8px;
    position: relative;
    width: 74px;
}


.pb-buyers-recent-sellers .pb-buyers-avatar-ring,
.pb-buyers-recent-sellers .pb-buyers-avatar-ring[data-avatar-index] {
    background: radial-gradient(circle at 35% 25%, rgba(199, 162, 90, 0.18), transparent 42%), #061d31;
}

.pb-buyers-recent-sellers .pb-buyers-avatar-ring img {
    background: transparent;
}

.pb-buyers-avatar-ring i {
    background: #20c75a;
    border: 3px solid #fff;
    border-radius: 50%;
    bottom: 4px;
    height: 16px;
    position: absolute;
    right: 2px;
    width: 16px;
}

.pb-buyers-recent-seller strong {
    font-size: 14px;
    line-height: 1.15;
}

.pb-buyers-recent-seller small {
    color: var(--pb-muted);
    font-size: 12px;
    margin-top: 2px;
}

.pb-buyers-scroll-next {
    align-items: center;
    background: #fff;
    border: 1px solid var(--pb-border);
    border-radius: 50%;
    color: var(--pb-blue);
    cursor: pointer;
    display: inline-flex;
    font-size: 30px;
    height: 38px;
    justify-content: center;
    position: absolute;
    right: 16px;
    top: 78px;
    width: 38px;
}


/* Shop uses the same shared seller strip in place of the old hero/stat block. */
.pb-shop-shell .pb-shop-recent-sellers {
    background: #fffaf0;
    border-color: rgba(164, 133, 74, 0.32);
    box-shadow: 0 12px 32px rgba(5, 24, 42, 0.08);
    margin-bottom: 18px;
}

.pb-shop-shell .pb-shop-recent-sellers .pb-buyers-section-head {
    border-bottom: 1px solid rgba(199, 162, 90, 0.34);
    padding: 18px 22px 12px;
}

.pb-shop-shell .pb-shop-recent-sellers .pb-buyers-section-head h2 {
    color: #1f1d18;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pb-shop-shell .pb-shop-recent-sellers .pb-buyers-section-head a {
    color: #061d31;
    font-size: 13px;
    font-weight: 900;
}

.pb-shop-shell .pb-shop-recent-sellers .pb-buyers-seller-strip {
    gap: 22px;
    grid-auto-columns: minmax(106px, 1fr);
    padding: 18px 64px 24px 24px;
}

.pb-shop-shell .pb-shop-recent-sellers .pb-buyers-avatar-ring {
    box-shadow: 0 0 0 3px #c7a25a, 0 10px 20px rgba(5, 24, 42, 0.12);
}

.pb-shop-shell .pb-shop-recent-sellers .pb-buyers-recent-seller strong {
    color: #061d31;
    font-weight: 900;
    text-transform: uppercase;
}

.pb-shop-shell .pb-shop-recent-sellers .pb-buyers-scroll-next {
    border-color: rgba(199, 162, 90, 0.42);
    color: #061d31;
    top: 86px;
}

/* Auctions use the same shared block with a cream/gold marketplace treatment. */
.pb-auctions-shell .pb-auctions-recent-sellers {
    background: #fffaf0;
    border-color: rgba(164, 133, 74, 0.32);
    box-shadow: 0 12px 32px rgba(5, 24, 42, 0.08);
    margin-bottom: 18px;
}

.pb-auctions-shell .pb-auctions-recent-sellers .pb-buyers-section-head {
    border-bottom: 1px solid rgba(199, 162, 90, 0.34);
    padding: 18px 22px 12px;
}

.pb-auctions-shell .pb-auctions-recent-sellers .pb-buyers-section-head h2 {
    color: #1f1d18;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pb-auctions-shell .pb-auctions-recent-sellers .pb-buyers-section-head a {
    color: #061d31;
    font-size: 13px;
    font-weight: 900;
}

.pb-auctions-shell .pb-auctions-recent-sellers .pb-buyers-seller-strip {
    gap: 22px;
    grid-auto-columns: minmax(106px, 1fr);
    padding: 18px 64px 24px 24px;
}

.pb-auctions-shell .pb-auctions-recent-sellers .pb-buyers-avatar-ring {
    box-shadow: 0 0 0 3px #c7a25a, 0 10px 20px rgba(5, 24, 42, 0.12);
}

.pb-auctions-shell .pb-auctions-recent-sellers .pb-buyers-recent-seller strong {
    color: #061d31;
    font-weight: 900;
    text-transform: uppercase;
}

.pb-auctions-shell .pb-auctions-recent-sellers .pb-buyers-scroll-next {
    border-color: rgba(199, 162, 90, 0.42);
    color: #061d31;
    top: 86px;
}

@media (max-width: 680px) {
    .pb-buyers-seller-strip {
        padding-left: 16px;
    }

    .pb-buyers-avatar-ring {
        height: 62px;
        width: 62px;
    }

    .pb-auctions-shell .pb-auctions-recent-sellers .pb-buyers-seller-strip,
    .pb-shop-shell .pb-shop-recent-sellers .pb-buyers-seller-strip {
        grid-auto-columns: minmax(96px, 1fr);
        padding-left: 16px;
    }
}

/* Status dot remains a placeholder until live seller presence is wired. */
.pb-buyers-avatar-ring.pb-buyers-avatar--available i,
.pb-buyers-avatar-ring.pb-buyers-avatar--online i {
    background: #20c75a;
}

.pb-buyers-avatar-ring.pb-buyers-avatar--pre_occupied i,
.pb-buyers-avatar-ring.pb-buyers-avatar--away i {
    background: #f6a623;
}

.pb-buyers-avatar-ring.pb-buyers-avatar--on_vacation i,
.pb-buyers-avatar-ring.pb-buyers-avatar--offline i {
    background: #9aa6b2;
}
