/* WP A/B Tester - Frontend Styles */

/* Base CTA styles (can be overridden by variations) */
.wpab-cta {
    cursor: pointer;
    transition: all 0.3s ease;
}

.wpab-cta:hover {
    opacity: 0.9;
}

/* Relocated element marker */
.wpab-relocated {
    /* Marker for relocated elements */
}

/* Hide original elements that have been relocated */
.wpab-original-hidden {
    display: none !important;
}

/* Loading state */
.wpab-loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wpab-loaded {
    opacity: 1;
}

/* Variation content wrapper */
.wpab-variation-content {
    /* Container for variation content */
}
