/* Css chỉnh vị trí % giảm giá sản phẩm */
/* === Style badge giảm giá WooCommerce (Astra) === */
.woocommerce ul.products li.product .onsale {
    position: absolute;
    top: 30px;              /* khoảng cách từ viền trên */
    right: 30px;            /* khoảng cách từ viền phải */
    background-color: #ffcc00; /* màu nền vàng */
    color: #000;            /* màu chữ đen */
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 50%;     /* làm tròn badge */
    z-index: 10;
    min-width: 45px;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Đảm bảo badge luôn nằm trên hình */
.woocommerce ul.products li.product a img {
    position: relative;
    z-index: 1;
}

/* Responsive cho mobile */
@media (max-width: 768px) {
    .woocommerce ul.products li.product .onsale {
        top: 6px;
        right: 6px;
        font-size: 12px;
        min-width: 40px;
        min-height: 40px;
    }
}