/**
 * BDPrint_CustomerAnalytics — Price Protection Styles
 */

/* Placeholder wrapper */
.bdprint-price-placeholder {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
}

/* Loading spinner state */
.bdprint-price-placeholder--loading .bdprint-price-placeholder__label::after {
    content: ' …';
    animation: bdprint-ellipsis 1.2s infinite;
}

@keyframes bdprint-ellipsis {
    0%   { content: ' .'; }
    33%  { content: ' ..'; }
    66%  { content: ' ...'; }
    100% { content: ' .'; }
}

/* Revealed real price */
.bdprint-price-resolved .price {
    font-weight: 600;
    color: inherit;
}
