/* --- Product Badges --- */
.ec-merchandising-wrapper {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ec-badge {
    padding: 3px 8px;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    border-radius: 3px;
    text-transform: uppercase;
    line-height: 1.5;
}

.ec-badge.exclusive-badge {
    background-color: #8a2be2; /* BlueViolet */
}

.ec-badge.bestseller-badge {
    background-color: #ff9800; /* Orange */
}

.ec-badge.sale-badge {
    background-color: #e91e63; /* Pink */
}

/* --- Manual Star Rating --- */
.star-rating-wrapper {
    margin-top: 5px;
    margin-bottom: 5px;
}

/* --- Sitewide Promotional Banner --- */
.ec-sitewide-banner {
    width: 100%;
    padding: 12px 20px;
    background-color: #007bff;
    background-size: cover;
    background-position: center center;
    text-align: center;
    box-sizing: border-box;
}

.ec-sitewide-banner a.ec-banner-link {
    text-decoration: none;
    display: block;
}

.ec-banner-text {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}