/**
 * WP Publisher Sync — Plugin styles.
 * Supplements theme styles for plugin-specific elements.
 */

/* Price block update animation */
.publisher-price-block.updating {
    opacity: 0.6;
    pointer-events: none;
}

.publisher-price-block.updated {
    animation: priceFlash 0.6s ease-out;
}

@keyframes priceFlash {
    0% { background-color: #d4edda; }
    100% { background-color: #f8f9fa; }
}

/* Schema hidden data (visually hidden, accessible to crawlers) */
.publisher-schema-data {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* UTM indicator in admin bar (debug) */
.publisher-utm-active::after {
    content: ' [UTM]';
    font-size: 10px;
    color: #999;
}
