.popup-container {
    width: min(480px ,90vw);
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #F8FAFC;
    border-radius: 16px;
    text-align: start;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0px 24px;
    flex-direction: column;
}

.popup-icon-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 12px
}
#close{
    cursor: pointer;
}
.popup-heading-desc {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #000000;
    width: 100%;
}

.popup-heading {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: var(--color-paragraph);
}

.popup-paragraph {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-disable);
}

.popup-body {
    padding: 24px;
    display: flex;
    gap: 24px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-heading {
    color: var(--color-heading);
    font-size: 14px;
    font-weight: 700;
}

.features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features li {
    width: max-content;
    font-size: 0.95rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Right Pricing Section */
.plans {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.plan {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan:hover {
    border-color: #D145BF80;
}

.plan input[type="radio"] {
    display: none;
}

.plan label {
    display: flex;
    padding: 12px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.plan .price {
    font-size: 18px;
    font-weight: bold;
    color: #0f172a;
}

.plan .name {
    font-size: 14px;
    color: #475569;
}

/* Active (Selected) Plan */
.plan:has(input[type="radio"]:checked) {
    border: 2px solid #D145BF80;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 0px 0px 3px #D145BF1A;
}

/* Custom Radio Circle */
.radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    position: relative;
}

input[type="radio"]:checked+label .radio-circle {
    border-color: #d946ef;
}

input[type="radio"]:checked+label .radio-circle::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #d946ef;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup-footer {
    background: white;
    padding: 16px;
    display: flex;
    justify-content: end;
    gap: 12px;
    border-radius: 0px 0px 16px 16px;
}

.popbtn {
    display: block;
    background: white;
    border: 1px solid var(--color-stroke);
    color: #111827;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 16px;
    text-align: center;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
}

.popbtn:hover {
    background-color: var(--color-light-1);
    cursor: pointer;
}

.active-btn {
    background: var(--color-paragraph) !important;
    color: white !important;
}

.active-btn:hover {
    background: radial-gradient(54.24% 100% at 49.86% 100%, #12104A 0%, #D145BF 0.01%, #060318 100%) !important;
}
@media (width <= 768px) {
    .popup-body {
        flex-direction: column-reverse;
    }
}
@media (width <= 375px) {
    .popup-footer{
        flex-direction: column;
    }
}
