/**
 * Junior Legends Retail Add-ons Frontend CSS
 */
 .retail-addons-selection {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 3px;
}

.retail-addons-selection h4 {
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.retail-addon-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    display: flex;
    border-bottom: 1px solid #eee;
    justify-content: space-between;
    align-items: center;
}

.retail-addon-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.retail-addon-checkbox {
    display: block;
    margin-bottom: 5px;
}
.retail-addon-checkbox input[type=checkbox]{
    margin-right: 8px;
}

.retail-addon-qty-wrapper {
    display: flex;
    align-items: center;
}

.retail-addon-qty-wrapper label {
    margin-right: 10px;
}

.retail-addon-qty {
    width: 60px !important;
    min-height: 30px;
    padding: 4px !important;
}

.product-total-price {
    margin: 20px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-weight: bold;
}

.price-label {
    margin-right: 5px;
}