.tda-pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.tda-plan {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    margin: 70px 0px;
}

.tda-plan h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-family: "Archivo", Sans-serif;
}

.tda-duration {
    font-weight: 600;
    color: #666;

}

.tda-duration-30 {
    color:#ffffff;
}
    
.tda-price {
    font-size: 28px;
    font-weight: bold;
    margin: 12px 0;
}

.tda-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.tda-features li {
    padding: 6px 0;
    font-size: 15px;
    font-family: "Archivo", Sans-serif;
}

.tda-select {
    display: block;
    margin-top: 20px;
    /* padding: 12px; */
    background: red;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: 1s;
}

.tda-select input {
    margin-right: 8px;
}

#tda-province-popup {
    font-family: "Archivo", Sans-serif;
}

/* POPULAR */
.tda-popular {
    border: 3px solid orange;
    transform: scale(1.05);
    background-image: linear-gradient(140deg, #E61937AD 0%, var(--e-global-color-c74f14b) 100%);
    color: #ffffff;
}

.tda-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: orange;
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}

/* Hide steps initially */
.tda-hidden {
    display: none;
}

/* Smooth appearance */
.tda-step {
    margin-top: 30px;
    animation: fadeIn 0.4s ease-in-out;
}

.tda-step h4 {
    font-family: "Archivo", Sans-serif;
}


#tda-email {
    font-family: "Archivo", Sans-serif;
    color:#000000;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 768px) {
    .tda-pricing-table {
        grid-template-columns: 1fr;
    }
        
    #tda-popup {
        width: 95%;
        padding: 20px;
    }

    .tda-plans {
        margin: 30px 0px;
    }
}


/* Popup */
#tda-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 999;
}

#tda-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 12px;
    display: none;
    z-index: 1000;
}

#tda-close-popup {
    position: absolute;
    top: 12px;
    right: 15px;
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
}

.tda-select-plan {
    background-color: none;
    color:#ffffff;
    border: none;
}

.tda-select:hover {
    background-color: #000000;
    color:#ffffff !important;
    border: none !important;
}

#tda-continue {
    margin-top:10px;
    font-family: "Archivo", Sans-serif;
    color:#000000;
}

#tda-continue:hover {
    background-color: #E61937;
    color:#ffffff;
}

.cst-r {
    font-family: "Archivo", Sans-serif;
}

.cst-icn {
    margin-right:7px;
}