/* Arta Cart Coupon Notice - Simple Notice Style */
.arta-cart-coupon-notice {
    background: #f8fafc;
    border: 1px solid #ccd0d4;
    border-left: 4px solid #2271b1;
    color: #222;
    padding: 12px 16px;
    margin: 16px 0 20px 0;
    border-radius: 4px;
    font-size: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    
}

.arta-coupon-notice-text {
    font-weight: 500;
    color: #2271b1;
    font-size: 14px;
    margin-left: 8px;
}

.arta-coupon-notice-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.arta-coupon-code-label {
    font-weight: 500;
    color: #2271b1;
    margin-left: 4px;
}

.arta-coupon-code-value {
    font-family: monospace;
    background: #eaf6fb;
    color: #2271b1;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 15px;
    margin-left: 8px;
}

.arta-apply-coupon-btn {
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 5px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-right: auto;
}

.arta-apply-coupon-btn:hover {
    background: #135e96;
}

@media (max-width: 600px) {
    .arta-cart-coupon-notice {
        max-width: 100%;
        font-size: 14px;
        padding: 10px 8px;
    }
    .arta-coupon-notice-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .arta-apply-coupon-btn {
        width: 100%;
        margin-right: 0;
    }
} 