/**
 * Product Label Custom Styles
 * White text on black background in square format
 */

.cdz-product-labels {
    position: relative;
    z-index: 10;
}

.cdz-product-labels .label-item {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    padding: 10px 15px;
    margin: 5px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    border-radius: 0;
    min-width: 80px;
    min-height: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cdz-product-labels .label-item:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Specific positioning for product page */
.product-gallery-vertical .gallery-image-item {
    position: relative;
}

.product-gallery-vertical .gallery-image-item .cdz-product-labels {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 20;
}

.product-gallery-vertical .gallery-image-item .cdz-product-labels .label-item {
    display: block;
    margin: 5px 0;
}

/* For category/listing pages - right top corner, slightly below image edge */
.product-item-info .cdz-product-labels,
.product-item .cdz-product-labels {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    transform: translateY(-25%);
}

.product-item .product-image-wrap,
.product-item-info .product-image-wrap {
    position: relative;
}

.product-item-info .cdz-product-labels .label-item {
    display: block;
    margin: 0 0 5px 0;
    font-size: 12px;
    padding: 8px 12px;
    min-width: 60px;
    min-height: 30px;
}

.product-item-info .cdz-product-labels .label-item:last-child {
    margin-bottom: 0;
}

.product-item .cdz-product-labels .label-item {
    display: block;
    margin: 0 0 5px 0;
    font-size: 12px;
    padding: 8px 12px;
    min-width: 60px;
    min-height: 30px;
}

.product-item .cdz-product-labels .label-item:last-child {
    margin-bottom: 0;
}

/* Label with image */
.cdz-product-labels .label-item img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Multiple labels stacking */
.cdz-product-labels .label-item + .label-item {
    margin-top: 5px;
}

/* Custom class support */
.cdz-product-labels .label-item.custom-label {
    /* Additional custom styling can be added via admin panel */
}
