<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * WC Buy X Get Y Free - Frontend CSS
 */

/* Highlight discounted items */
.wc-buy-x-get-y-free-discounted {
    background-color: rgba(0, 200, 0, 0.05);
}

/* Style promotional notice */
.woocommerce-info.wc-buy-x-get-y-free-notice {
    background-color: #f8f9fa;
    border-left-color: #2271b1;
}

.wc-buy-x-get-y-free-notice-icon {
    margin-right: 8px;
    color: #2271b1;
}

/* Free badge on cart items */
.wc-buy-x-get-y-free-free-badge {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    font-size: 0.8em;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 5px;
    font-weight: bold;
}

/* Progress indicator */
.wc-buy-x-get-y-free-progress {
    margin-top: 10px;
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 3px;
}

.wc-buy-x-get-y-free-progress-bar {
    background-color: #2271b1;
    height: 8px;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.wc-buy-x-get-y-free-progress-text {
    font-size: 0.85em;
    margin-top: 5px;
    color: #666;
}

/* Shortcode styles */
.wc-buy-x-get-y-free-shortcode {
    margin: 15px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-left: 4px solid #2271b1;
    display: flex;
    align-items: center;
}

.wc-buy-x-get-y-free-shortcode-icon {
    margin-right: 10px;
    color: #2271b1;
    font-size: 24px;
}

.wc-buy-x-get-y-free-shortcode-content {
    flex-grow: 1;
}

/* Style variants */
.wc-buy-x-get-y-free-style-highlight {
    background-color: #e9f0f5;
    border-radius: 5px;
    border-left: none;
    border: 1px solid #2271b1;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.wc-buy-x-get-y-free-style-minimal {
    background-color: transparent;
    border-left: none;
    padding: 5px 0;
}

.wc-buy-x-get-y-free-shop-now {
    display: inline-block;
    padding: 8px 16px;
    background-color: #2271b1;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    margin-left: 15px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.wc-buy-x-get-y-free-shop-now:hover {
    background-color: #135e96;
    color: white;
}
</pre></body></html>