/**
 * Marketplace Badge - Single Source of Truth
 * @package MyChooz_Partners
 *
 * Used by: AliExpress, Amazon, Temu, Cross-Widget
 */

.mcp-marketplace-badge {
    position: absolute;
    top: 5px;
    right: 81px;
    transform: translateX(50%);
    width: fit-content;
    background: linear-gradient(135deg, #E53E3E 0%, #C53030 100%);
    color: #ffffff;
    padding: 3px 9px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.3px;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
    z-index: 100;
    white-space: nowrap;
    pointer-events: none;
}

/* Amazon Badge - orange */
.mcp-amazon-badge,
.mcp-amazon-widget .mcp-marketplace-badge {
    background: linear-gradient(135deg, #FF9900 0%, #FF7700 100%);
    box-shadow: 0 3px 8px rgba(255, 153, 0, .3);
}

/* Temu Badge - orange */
.mcp-temu-widget .mcp-marketplace-badge {
    background: linear-gradient(135deg, #FF6600 0%, #FF4400 100%);
    box-shadow: 0 2px 6px rgba(255, 102, 0, .25);
}

/* Cross-widget badge - above card, horizontal like main widgets */
.mcp-cross-widget .mcp-marketplace-badge {
    top: -10px;
}

/* Mobile: badge left */
@media (max-width: 640px) {
    .mcp-marketplace-badge {
        font-size: 10px;
        padding: 3px 8px;
        left: 10px;
        right: auto;
        transform: none;
    }
}

/* Container query for main widgets (mcp-widget has container-type: inline-size) */
@container mcp-widget (max-width: 500px) {
    .mcp-widget .mcp-marketplace-badge {
        top: 5px;
        left: 24px;
        font-size: 12px;
        padding: 4px 10px;
        right: auto;
        transform: none;
    }
}
