/**
 * Advox Product Label Styles
 * Matches the design from screenshot with pink/purple badges
 */

/* Container for labels - positioned in top-left corner */
.product-label {
    position: absolute;
    top: -10px;
    left: -20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Individual label badge */
.product-label span {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
    color: #ffffff;
    line-height: 1.2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Image labels */
.product-label img {
    max-width: 60px;
    max-height: 60px;
    display: block;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Icon/class labels */
.product-label i {
    font-size: 24px;
    color: #e91e8c;
    display: block;
}

/* Ensure labels work on product list items */
.product-item-photo {
    position: relative;
}

/* Ensure labels work on PDP gallery */
.gallery-placeholder {
    position: relative;
}

/* Override negative positioning on PDP - labels should be inside the container */
.gallery-placeholder .product-label {
    top: 10px;
    left: 10px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .product-label {
        top: 5px;
        left: 5px;
    }

    .product-label span {
        padding: 3px 8px;
        font-size: 10px;
    }

    .product-label img {
        max-width: 50px;
        max-height: 50px;
    }
}