.trust-badges-cream {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 15px;
    max-width: 550px;
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
}

.badge-item-cream {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.badge-item-cream svg {
    width: 90px;
    height: 90px;
    display: block;
    margin-bottom: 10px;
}

.badge-text-cream {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    color: #333;
    word-wrap: break-word;
}

.product-selector-wrapper {
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.color-label {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.color-label span {
    font-weight: 400;
}

.shades-container {
    display: flex;
    gap: 12px;
    align-items: center;
}

.shade-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    padding: 0;
    outline: 1px solid transparent;
    outline-offset: 3px;
}

.shade-circle:hover {
    transform: scale(1.1);
}

.modal-summary {
    background-color: #f2f9ff;
    border: 1px solid #73a0c5;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 16px;
    color: #333;
}

.modal-summary strong {
    color: #000;
    font-weight: 700;
}

@media (max-width: 480px) {
    .trust-badges-cream {
        gap: 20px 10px;
    }

    .badge-item-cream svg {
        width: 75px;
        height: 75px;
    }

    .badge-text-cream {
        font-size: 12px;
    }
}