/* PriceTier Component Styles */
.price-tier-container {
    margin-top: 50px;
}

.price-tier-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 558px;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
}

.price-tier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #969696;
    transition: background-color 0.2s ease;
    height: 68px;
}

.price-tier-item:last-child {
    border-bottom: none;
}

.purchase-condition .amount{
    display: flex;
    align-items: center;
    color: var(--text-black);
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 157.143%;
    letter-spacing: -1.05px;
}

.reward-amount {
    display: flex;
    align-items: center;
    gap: 1px;
}

.reward-amount .amount{
    font-family: Roboto;
    font-size: 27px;
    font-weight: 700;
    line-height: 122.222%;
    letter-spacing: -0.54px;
}


.reward-amount .unit {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 33px;
    letter-spacing: -0.39px;
}