/* Frontend product position badge */
.ndps-frontend-position-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #0073aa;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 15px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product {
    position: relative;
}

.woocommerce ul.products li.product:hover .ndps-frontend-position-badge {
    transform: scale(1.1);
}

/* Ensure badge is visible on product images */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    position: relative;
    display: block;
}

/* Animation on page load */
@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ndps-frontend-position-badge {
    animation: badgeFadeIn 0.4s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ndps-frontend-position-badge {
        width: 30px;
        height: 30px;
        font-size: 13px;
        top: 5px;
        left: 5px;
    }
}

/* Print styles - hide badges when printing */
@media print {
    .ndps-frontend-position-badge {
        display: none;
    }
}
