/* Product Badges */
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    border-radius: 3px;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.new {
    background-color: #ff4444;
}

.product-badge.hit {
    background-color: #ff9800;
    right: auto;
    left: 10px;
}

/* Multiple badges */
.product-card .product-badge.new+.product-badge.hit {
    top: 40px;
}