.pricing-wrapper {
    max-width: 900px;
    margin: 0 auto;
    /* padding: 20px; */
}

.pricing-cards-row {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-bottom: 0px;
    flex-wrap: nowrap;
}

.pricing-card {
    flex: 1;
    width: 280px;
    min-width: 75px;
    height: 50px;
    background-color: #EFF3F6;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid #EFF3F6;
}

.pricing-card.featured {
    background-color: #D8FFDA;
    border: 2px solid #05AE81;
}

.pricing-card.active {
    background-color: #D8FFDA;
    border: 2px solid #05AE81;
}

.discount-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #DB3A2E;
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 12px;
    white-space: nowrap;
}

.duration-text {
    font-size: 14px;
    font-weight: 600;
    color: #606060;
    text-align: center;
    margin: 0;
}

.instruction-text {
    /* text-align: center; */
    color: #606060;
    font-style: italic;
    font-size: 14px;
    font-weight: 500;
    margin: 20px 0 40px 0;
}

.price-section {
    max-width: 600px;
    margin: 0 auto;
}

.discount-display {
    margin-bottom: 20px;
    display: none;
}

.discount-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.discount-percentage-badge {
    background-color: #F8D7DA;
    color: #EB5757;
    /* padding: 12px 20px; */
    padding: 8px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    /* min-width: 60px; */
    text-align: center;
}

.original-price-text {
    color: #606060;
    font-size: 15px;
    font-weight: 500;
    text-decoration: line-through;
}

.final-price {
    background-color: #CDF0EACC;
    border: none;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    display: none;
    margin-bottom: 20px;
}

.pr-12 {
    padding-right: 12px;
}

.pl-12 {
    padding-left: 12px;
}

/* Responsive design - Keep 3 cards on all screens */
/* @media (max-width: 768px) {
    .pricing-wrapper {
        padding: 15px;
    }

    .pricing-cards-row {
        gap: 10px;
    }

    .pricing-card {
        min-width: 150px;
        height: 140px;
    }

    .duration-text {
        font-size: 28px;
    }

    .discount-badge {
        font-size: 14px;
        padding: 6px 16px;
        top: -10px;
    }

    .final-price {
        font-size: 20px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .pricing-cards-row {
        gap: 8px;
    }

    .pricing-card {
        min-width: 120px;
        height: 120px;
    }

    .duration-text {
        font-size: 20px;
    }

    .discount-badge {
        font-size: 12px;
        padding: 4px 12px;
        top: -8px;
    }

    .discount-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .final-price {
        font-size: 18px;
        padding: 15px;
    }
} */