.ls-progressive-discount {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 24px 0;
}

.ls-discount-option {
    display: flex;
    gap: 14px;
    align-items: flex-start;

    border: 2px solid #e2e2e2;
    border-radius: 14px;
    padding: 16px 18px;
    background: #fff;

    cursor: pointer;
    transition: all 0.25s ease;
}

.ls-discount-option input[type="radio"] {
    margin-top: 4px;
    transform: scale(1.2);
    cursor: pointer;
}

.ls-progressive-discount label.ls-discount-option.is-active {
    border-color:#FB760B !important;
    background: #FFFAE5 !important;
}

.ls-discount-option:hover {
    border-color: #000;
}

.ls-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ls-title {
    display: flex;
    align-items: center;
    gap: 8px; /* espaço controlado entre texto e preço */
}

.ls-total-price {
    font-weight: 700;
    color: #000;
    text-align: right;
}


.ls-sub {
    font-size: 14px;
    color: #333;
}

.ls-unit {
    font-size: 13px;
    color: #666;
}

.ls-economy {
    font-size: 13px;
    font-weight: 600;
    color: #1b7f3c;
}

/* TAG FRETE GRÁTIS  */

.ls-free-shipping {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #00b894;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 5;
    display: none;
}

.ls-discount-option {
    position: relative;
}

