/* File: your-plugin/assets/css/aicm-styles.css */

.aicm-cta-product-box {
    margin: 2em 0; 
    padding: 20px; 
    border: 2px dashed #0073aa; 
    border-radius: 8px;
    background-color: #f7f9fc; 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    display: flex; 
    gap: 20px; 
    align-items: center;
}
.aicm-cta-product-box a { 
    text-decoration: none; 
}
.aicm-cta-product-box .cta-image { 
    flex-shrink: 0; 
    width: 120px; 
    height: 120px; 
}
.aicm-cta-product-box .cta-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 5px; 
    border: 1px solid #ddd; 
}
.aicm-cta-product-box .cta-content { 
    flex-grow: 1; 
    text-align: center;
}
/* DÙNG RULE MỚI NÀY */
.aicm-cta-product-box .cta-content .aicm-cta-title { 
    font-size: 1em; 
    margin: 0 0 10px; 
    color: #0073aa; /* <-- MÀU XANH */
    font-weight: bold; /* <-- IN ĐẬM */
}
.aicm-cta-product-box .cta-content .cta-button {
    display: inline-block; 
    padding: 10px 20px; 
    background-color: #0073aa; 
    color: #fff;
    border-radius: 5px; 
    font-weight: bold; 
    margin-top: 10px; 
    transition: background-color 0.2s;
}
.aicm-cta-product-box .cta-content .cta-button:hover { 
    background-color: #005177; 
}
.aicm-cta-product-box .cta-discount {
    position: absolute; 
    top: -10px; 
    right: -10px; 
    background-color: #d63638; 
    color: white;
    padding: 5px 8px; 
    border-radius: 20px; 
    font-size: 0.9em; 
    font-weight: bold;
}
.aicm-cta-product-box .cta-image-wrapper { 
    position: relative; 
}
@media (max-width: 600px) {
    .aicm-cta-product-box { 
        flex-direction: column; 
        text-align: center; 
    }
    .aicm-cta-product-box .cta-image { 
        width: 150px; 
        height: 150px; 
        margin-bottom: 10px; 
    }
}