body.test-css-491567-1 .tccc-plan-tiers{
    display: none !important;
}

body.test-css-491567-2 .wdm-discount,
body.test-css-491567-2 .wdm-bulk-table,
body.test-css-491567-3 .wdm-discount,
body.test-css-491567-3 .wdm-bulk-table{
    display: none !important;
}

.tccc-plan-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    font-family: Arial, sans-serif;
    margin-bottom: 24px;
}

.tccc-plan-tiers__heading{
    font-weight: bold;
    width: 100%;
    flex-grow: 1;
    flex-shrink: 0;
}
body.test-css-491567-2 .tccc-plan-tiers__heading{
    margin-top: -0.5rem;
}

.plan-tier {
    border: 1px solid #000;
    border-radius: var(--radius, 8px);
    padding: 1rem;
    text-align: center;
    flex: 1;
    position: relative;
    background: #fff;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Remove default button look */
.plan-tier {
    appearance: none;
    -webkit-appearance: none;
    /* border-radius: 0; */
}

.plan-tier:hover,
.plan-tier.active {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    
    background-color: var(--accent, #05ad62);
    border-color: transparent;
    color: #fff;
}
.plan-tier:hover .plan-tier__price,
.plan-tier.active .plan-tier__price {
    color: var(--primary, #024225);
}
.plan-tier:hover .plan-tier__badge,
.plan-tier.active .plan-tier__badge {
    background-color: #fff;
    color: var(--accent, #05ad62);
}

.plan-tier__badge {
    background-color: var(--accent, #05ad62);
    color: #fff;
    font-weight: bold;
    display: inline-block;
    padding: .25rem .75rem;
    border-radius: 6px;
    margin-bottom: .5rem;
}

.plan-tier__for-text{
    line-height: 1;
}

.plan-tier__price {
    color: var(--accent, #05ad62);
    font-size: var(--text-xl, 24px);
    margin: .25rem 0;
}

/* .plan-tier span {
    display: block;
    margin-top: .25rem;
    font-weight: bold;
} */

.plan-tier.popular {
    border-width: 2px;
}

.plan-tier__tag {
    background: #000;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    padding: .25rem;
    border-radius: 0 0 6px 6px;
    position: absolute;
    bottom: -1.6rem;
    left: 0;
    right: 0;
}
