.aov-qty-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
    gap: 0.6rem;
    margin: 0.75rem 0 1rem;
    width: 100%;
}

.aov-add-to-cart {
    width: 100%;
    flex: 1 1 100%;
}

.aov-add-to-cart__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.aov-add-to-cart__extra {
    display: flex;
    align-items: center;
}

.aov-qty-tier {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 66px;
    min-width: 0;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    padding: 0.5rem 0.65rem;
    background: #fff;
    cursor: pointer;
    text-align: left;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.aov-qty-tier:hover,
.aov-qty-tier.is-active {
    border-color: #00a676;
}

.aov-qty-tier:focus-visible {
    outline: 2px solid #017957;
    outline-offset: 2px;
}

.aov-qty-tier__details {
    min-width: 0;
}

.aov-qty-tier__qty {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.4;
}

.aov-qty-tier__badge {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 38px;
    padding: 0.35rem;
    border-radius: 8px;
    background: #e8f6ee;
    color: #017957;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background .15s ease, color .15s ease;
}

.aov-qty-tier.is-active .aov-qty-tier__badge {
    background: #00a676;
    color: #fff;
}

.aov-qty-tier__price {
    display: block;
    font-weight: 600;
    font-size: 0.82rem;
    line-height: 1.4;
}
.aov-cart-progress {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    background: #f5f7f9;
    border: 1px solid #e6ebf0;
}

.aov-cart-progress__title {
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 0.55rem;
}

.aov-cart-progress__row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.aov-cart-progress__bar {
    flex: 1;
    height: 8px;
    border-radius: 999px;
    background: #d9e0e7;
    overflow: hidden;
}

.aov-cart-progress__fill {
    height: 100%;
    background: #2f9e5d;
    border-radius: 999px;
    transition: width .2s ease;
}

.aov-cart-progress__remaining {
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 600;
}

.aov-cart-progress__note {
    margin-top: 0.45rem;
    font-size: 0.75rem;
    color: #6b7682;
}

.aov-savings-line {
    margin-top: 0.65rem;
    font-size: 0.85rem;
    color: #1f7a45;
}
