.tiered-pricing-table-container {
    margin: 1em 0 2em;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 5px;
}

.tiered-pricing-table-container span {
    top: -10px;
    position: relative;
    font-size: 1.2em;
}

.tiered-pricing-table {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

.tiered-pricing-table .tier-item {
    position: relative;
    cursor: pointer;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 9px;
    width: calc(50% - 8px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.tiered-pricing-table .tier-item:hover {
    border-color: #3e6f52;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.tiered-pricing-table .tier-item.selected {
    border-color: #3e6f52;
    box-shadow: 0 5px 15px rgba(226, 64, 28, 0.1);
    transform: translateY(-3px);
}

.tiered-pricing-table .tier-quantity {
    font-size: 1.4em;
    font-weight: bold;
}

.tiered-pricing-table .tier-discount {
    background-color: #B7634C;
    color: white;
    font-weight: bold;
    padding: 2px 8px;
    position: relative;
    display: inline-block;
    font-size: 12px;
    margin-left: 9px;
    line-height: 1;
    display: flex;
    align-items: center;
    position:absolute;
    left: 3.5em;
    margin-top: 10px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;;
}

.tiered-pricing-table .tier-discount:before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #B7634C;
    border-radius: 2px 0 0 2px;
}

.tiered-pricing-table .tier-image {
    text-align: right;
    position: absolute;
    right: 0;
}

.tiered-pricing-table .tier-image img {
    max-width: 60px;
    height: auto;
    left: 10px;
    width: 40px;
    margin-right: 0.7em;
    margin-top: 0.7em;
}

.tiered-pricing-table .tier-price {
    font-weight: bold;
    color: #2C4736;
}

.tiered-pricing-table .tier-label {
    position: absolute;
    top: -10px;
    right: 10px;
    background: #3e6f52;
    color: #fff;
    padding: 0px 10px;
    font-size: 0.75em;
    border-radius: 3px;
    z-index: 2;
}

@media (max-width: 599px) {
    .tiered-pricing-table .tier-item {
        width: calc(50% - 20px);
    }
    .tiered-pricing-table-container{
        margin: 1em 0 2em;
        padding: 5px 5px 15px 5px;
        background: #f8f8f8;
        border-radius: 5px;
    }
    .tiered-pricing-table {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}