/* Product listing — views badge (reference-style green pill) */
.pl-card-img-wrap {
    position: relative;
}

.pl-card-views {
    position: absolute;
    bottom: 8px;
    right: 8px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 100px;
    background: rgba(22, 163, 74, 0.12);
    border: 1px solid rgba(22, 163, 74, 0.22);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    color: #16a34a;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
}

.pl-card-views svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .pl-card-views {
        font-size: 0.58rem;
        padding: 2px 7px;
        bottom: 6px;
        right: 6px;
    }

    .pl-card-views svg {
        width: 11px;
        height: 11px;
    }
}
