/*
Theme Name: Shoptimizer Child Theme
Theme URI: 
Description: Child theme of Shoptimizer
Author: CommerceGurus
Author URI: 
Template: shoptimizer
Version: 1.2.2
License:         	GNU General Public License v2 or later
License URI:     	http://www.gnu.org/licenses/gpl-2.0.html
*/
.trustpilot-score {
    text-align: left;
    margin-top: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.trustpilot-score p {
    display: inline-block;
    margin: 0;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    white-space: nowrap;
}

/* Increase Image Size */
.trustpilot-score img {
    max-width: 500px; /* Desktop size */
    height: auto;
    margin-left: 10px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .trustpilot-score {
        flex-direction: column;
        align-items: flex-start; /* Align to the left */
        text-align: left; /* Ensure left alignment */
    }

    .trustpilot-score p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .trustpilot-score img {
        max-width: 300px; /* Adjust image size for mobile */
        margin: 5px 0; /* Add spacing */
    }
}
