.hbp-store-list {
    display: grid;
}

.hbp-store-row {
    min-height: 76px;
    display: grid;
    grid-template-columns: 62px minmax(170px, 1fr) minmax(220px, 1.08fr) auto;
    gap: 14px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.hbp-store-row[hidden] {
    display: none;
}

.hbp-store-row__avatar {
    width: 62px;
    height: 62px;
    overflow: hidden;
    border-radius: 999px;
    background: #15151c;
}

.hbp-store-row__avatar img,
.hbp-store-row__avatar-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hbp-store-row__avatar-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--hbp-color-primary-2), var(--hbp-color-primary));
    color: #13091f;
    font-weight: 950;
}

.hbp-store-row__title {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: 950;
}

.hbp-store-row__verified {
    width: 16px;
    height: 16px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--hbp-color-primary-2);
    color: #13091f;
    font-size: 10px;
    font-weight: 950;
}

.hbp-store-row__main span {
    color: var(--hbp-color-muted);
    font-size: 12px;
}

.hbp-store-row__meta {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    color: var(--hbp-color-soft);
    font-size: 12px;
    font-weight: 800;
}

.hbp-plain-link {
    color: var(--hbp-color-primary-2);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .hbp-store-row {
        grid-template-columns: 58px minmax(0, 1fr) auto;
    }

    .hbp-store-row__avatar {
        width: 58px;
        height: 58px;
    }

    .hbp-store-row__meta {
        grid-column: 2 / -1;
    }
}

@media (max-width: 760px) {
    .hbp-store-row {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 10px;
    }

    .hbp-store-row__avatar {
        width: 54px;
        height: 54px;
    }

    .hbp-store-row__meta,
    .hbp-store-row .hbp-plain-link {
        grid-column: 2 / -1;
    }
}
