.psc-badge-wrapper {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    line-height: 1.2;
    top: -20px !important;
    right: -20px !important;
}
.psc-badge-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50% !important;
    aspect-ratio: 1;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}
.psc-badge-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50% !important;
    aspect-ratio: 1;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}
.psc-badge-price-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.psc-badge-discount {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50% !important;
    aspect-ratio: 1;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}
.psc-badge-discount .psc-badge-hr {
    width: 40%;
    height: 2px;
    background: currentColor;
    opacity: 0.4;
    margin: 2px 0;
    border: 0;
}
.psc-badge-top-text,
.psc-badge-main-heading,
.psc-badge-large-text,
.psc-badge-bottom-text,
.psc-badge-footer {
    display: block;
}
.psc-badge-qty {
    font-weight: 700;
}
.psc-badge-sep {
    font-weight: 300;
}
.psc-badge-price-amount {
    font-weight: 700;
}
.psc-badge-original {
    text-decoration: line-through;
    opacity: 0.7;
}
.psc-badge-discount-amount {
    font-weight: 700;
}
.psc-badge-final {
    font-weight: 700;
}
/* Responsive scaling */
@media (max-width: 767px) {
    .psc-badge-wrapper {
        transform: scale(0.85);
        transform-origin: top right;
    }
}
@media (max-width: 480px) {
    .psc-badge-wrapper {
        transform: scale(0.7);
        transform-origin: top right;
    }
}
