/**
 * Icon Product Sold Label - Badge Styles
 * Version: 1.0.0
 */

/* SOLD Badge - Product Archive/Listings */
.icon-psl-sold-badge {
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 100;
    background: #e74c3c;
    color: #ffffff;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
    line-height: 1;
}

/* Alternative positioning for Divi/BodyCommerce layouts */
.woocommerce ul.products li.product .icon-psl-sold-badge,
.et_shop_image .icon-psl-sold-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 100;
}

/* Ensure product image container is positioned for absolute children */
.woocommerce ul.products li.product {
    position: relative;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
    position: relative;
    display: block;
}

/* Single Product Page Badge - Below Title */
.icon-psl-sold-badge-title-wrap {
    margin: 10px 0 20px 0;
}

.icon-psl-sold-badge-title {
    position: relative;
    display: inline-block;
    top: auto;
    left: auto;
    font-size: 16px;
    padding: 10px 20px;
}

/* Divi single product compatibility */
.et_pb_wc_title + .icon-psl-sold-badge-title-wrap,
.product_title + .icon-psl-sold-badge-title-wrap {
    margin-top: 5px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .icon-psl-sold-badge {
        font-size: 12px;
        padding: 6px 12px;
        top: 8px;
        left: 8px;
    }

    .icon-psl-sold-badge-title {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media screen and (max-width: 480px) {
    .icon-psl-sold-badge {
        font-size: 10px;
        padding: 5px 10px;
        top: 5px;
        left: 5px;
    }
}

/* Divi Theme Compatibility */
.et_pb_shop .icon-psl-sold-badge {
    position: absolute;
    top: 10px;
    left: 10px;
}

/* Divi WooCommerce module compatibility */
.et_pb_wc_title ~ .icon-psl-sold-badge-title-wrap {
    margin-top: 5px;
}

/* BodyCommerce Plugin Compatibility */
.bodycommerce-product-item .icon-psl-sold-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 101;
}

/* Hover effect */
.icon-psl-sold-badge:hover {
    background: #c0392b;
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.5);
}

/* Stack with other badges - position below sale badges */
.woocommerce ul.products li.product .bodycommerce-sale-badge + .icon-psl-sold-badge,
.woocommerce ul.products li.product .onsale + .icon-psl-sold-badge {
    top: 55px;
}

/* Dark mode support (if applicable) */
@media (prefers-color-scheme: dark) {
    .icon-psl-sold-badge {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }
}
