/* Frontend styles for WC Attribute Display - Amazon-like label style */

.wcad-attribute-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
    padding: 0;
}

.wcad-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px 3px 3px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fafafa;
    font-size: 12px;
    line-height: 1.3;
    color: #333;
    transition: border-color 0.2s;
}

.wcad-label:hover {
    border-color: #aaa;
}

.wcad-label-img {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
    border-radius: 2px;
    flex-shrink: 0;
}

.wcad-label-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
}
