/*
 * UTM Content Trigger Promo Module Styles
 */

.utm-promo-wrapper {
    margin: 15px 0;
}

.utm-promo-content {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border: 2px dashed #ff9a52;
    /* Change color to match the theme */
    background-color: #fffaf5;
    border-radius: 5px;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.utm-promo-content .material-icons {
    font-size: 24px;
    margin-right: 10px;
    color: #ff9a52;
}

.utm-promo-content b {
    font-weight: bold;
}

/* Replaced free shipping price text */
.utm-promo-free {
    color: #2e7d32 !important;
    /* green */
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .utm-promo-content {
        flex-direction: column;
        text-align: center;
    }

    .utm-promo-content .material-icons {
        margin-right: 0;
        margin-bottom: 5px;
    }
}