/* Custom Styles for SoEasy Blinds Discount Display Plugin */

/* Base styling for the label container */
.sebd-product-label {
    position: absolute;
    z-index: 15;
    font-weight: normal;
    text-transform: uppercase;
    text-align: center;
    border-radius: 50%; /* Makes it circular */
    border-style: solid; /* Explicitly set border style */
    border-width: 2px;   /* Explicitly set border width */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    box-sizing: border-box;
	

    /* Fixed dimensions for a 50px diameter circle */
    width: 50px;
    height: 50px;
    line-height: 46px; /* Vertically center single line text (height - 2*border) */
    /*font-size: 0.7em;*/
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Styling for the text inside the label */
.sebd-product-label .sebd-label-text {
    display: block;
    padding: 2px;
    line-height: 1;
    /*word-break: break-word;*/
	font-size:12px !important;
}


/* Positioning for Archive / Shop Pages */
.product .sebd-product-label.sebd-product-label-archive {
    top: 0px;
    left: 0px;
    /*font-size: 0.7em;*/
}

/* Positioning for Single Product Page */
.woocommerce-product-gallery .sebd-product-label.sebd-product-label-single {
    top: 10px;
    left: 10px;
    /*font-size: 0.8em;*/
    width: 50px;
    height: 50px;
    line-height: 46px;
}

/* --- Responsive Adjustments --- */
/*
@media (max-width: 768px) {
    .sebd-product-label {
        width: 45px;
        height: 45px;
        line-height: 41px;
        font-size: 0.65em;
    }

    .woocommerce-product-gallery .sebd-product-label.sebd-product-label-single {
        width: 55px;
        height: 55px;
        line-height: 51px;
        font-size: 0.75em;
    }
}

@media (max-width: 480px) {
    .sebd-product-label {
        width: 40px;
        height: 40px;
        line-height: 36px;
        font-size: 0.6em;
    }

    .woocommerce-product-gallery .sebd-product-label.sebd-product-label-single {
        width: 50px;
        height: 50px;
        line-height: 46px;
        font-size: 0.7em;
    }
}
*/