/* Frontend Styles for DiscountFlow Studio for WooCommerce - Promotional Banner Design */

/* Main Promotional Banner Box */
.wcsd-promo-banner {
    border: 2px solid #ff0000;
    padding: 15px 20px;
    margin: 20px 0;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    max-width: 350px;
}

/* Icon Section */
.wcsd-promo-icon {
    float: left;
    margin-right: 12px;
    margin-top: 5px;
}

.wcsd-promo-icon svg {
    width: 24px;
    height: 24px;
    fill: #ff0000;
}

/* Discount Text */
.wcsd-promo-text {
    overflow: hidden;
}

.wcsd-promo-discount-line {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    margin: 0;
}

.wcsd-promo-discount-line strong {
    color: #ff0000;
    font-weight: bold;
}

/* Promo Code Info */
.wcsd-promo-code-info {
    font-size: 13px;
    color: #333;
    margin-top: 8px;
    line-height: 1.4;
}

.wcsd-promo-code {
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
}

/* Clearfix */
.wcsd-promo-banner::after {
    content: "";
    display: table;
    clear: both;
}

/* Single Product Page Layout */
.wcsd-single-product-promo {
    margin: 20px 0;
}

/* Shop Loop Badge (Minimal) */
.wcsd-discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff0000;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
}

/* Cart Item Discount Display */
.wcsd-cart-discount {
    display: block;
    color: #ff0000;
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
}

/* Checkout Discount Row */
.wcsd-checkout-discount {
    background: #fff5f5;
}

.wcsd-checkout-discount th,
.wcsd-checkout-discount td {
    color: #ff0000;
    font-weight: 600;
}

/* Savings text in price */
.wcsd-savings {
    display: inline-block;
    margin-left: 8px;
    color: #ff0000;
    font-size: 13px;
    font-weight: bold;
}

/* Product Loop Positioning */
.woocommerce-loop-product__link {
    position: relative;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .wcsd-promo-banner {
        padding: 12px 15px;
        max-width: 100%;
    }
    
    .wcsd-promo-discount-line {
        font-size: 14px;
    }
    
    .wcsd-promo-code-info {
        font-size: 12px;
    }
    
    .wcsd-discount-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
}
