
/* Styling to match Figma Layout */
.section-container{
    margin-bottom: 0;
}
.register-page {
    /* max-width: 1000px; */
    margin: 0 auto;
    padding: 50px 15px;
    text-align: left;
}
.register-page h1 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
    /* margin-bottom: 10px; */
}
.register-page .page-short-desc {
    text-align: center;
    color: #000000;
    /* margin-bottom: 40px; */
    font-size: 16px;
    line-height: 32px;
}
.account-plan-new {
    display: flex;
    gap: 16px;
    align-items: stretch;
}
.free-plan-card, .premium-plan-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid #eaeaea;
    box-sizing: border-box;
}

.register-page * {
    margin: 0;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-body {
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
    gap: 8px;
}

/* Free card */
.free-plan-card {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
}
.free-plan-card .plan-header h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: left;
    line-height: 22px;
}
.free-plan-card .plan-header .price {
    font-size: 40px;
    font-weight: 500;
    /* margin-bottom: 15px; */
    line-height: 44px;
}
.free-plan-card .plan-header p {
    font-size: 14px;
    color: #171618;
    font-weight: 400;
    /* margin-bottom: 30px; */
    line-height: 20px;
}
.plan-includes {
    flex-grow: 1;
}
.includes-title {
    font-size: 14px;
    color: #94929C;
    border-top: 1px solid #f0f0f0;
    padding: 20px 0 8px 0;
    display: flex;
    justify-content: space-between;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    /* margin-bottom: 18px; */
    color: #333;
    gap: 12px;
    padding: 8px 0;
}
/* .feature-list li .icon-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: #ede9fe;
    color: #8b5cf6;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
} */
.feature-list li .icon-cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: #fee2e2;
    color: #ef4444;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}
.feature-list li .disabled-text {
    opacity: 0.6;
}
.btn-free-continue {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-free-continue:hover {
    background: #f0f0f0;
    color: #111;
}
/* Premium card */
.premium-plan-card {
    flex: 1;
    display: flex;
    gap: 32px;
}
.premium-left {
    flex: 1;
    /* border-right: 1px solid #eaeaea; */
    /* padding-right: 30px; */
}
.premium-badge {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    display: block;
    margin-bottom: 24px;
    line-height: 22px;
}
.premium-left h2 {
    font-size: 34px;
    font-weight: 500;
    /* margin-bottom: 5px; */
    text-align: left;
    line-height: 44px;
}
.premium-left p {
    font-size: 14px;
    font-weight: 400;
    /* margin-bottom: 30px; */
    line-height: 20px;
}
.premium-left .includes-title {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}
.premium-left .feature-list li {
    /* margin-bottom: 24px; */
}
.plans-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

span.icon-check {
    height: 20px;
}

.premium-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.tabs-container {
    display: flex;
    justify-content: start;
    /* margin-bottom: 20px; */
}
.tabs.pricing_tabs {
    display: inline-flex;
    background: #f8f9fa;
    border-radius: 30px;
    padding: 4px;
    /* border: 1px solid #eaeaea; */
}
.tabs.pricing_tabs button {
    border: none;
    background: transparent;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    color: #000000;
    transition: all 0.2s;
    line-height: 18px;
    /* overflow: hidden; */
}
.tabs.pricing_tabs button.button-active {
    background: #fff;
    color: #111;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
/* Plan options */
.plan-option {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px;
    /* margin-bottom: 15px; */
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
    background: #fff;
    text-align: center;
}
.plan-option.active {
    border-color: #8b5cf6;
    background: #fdfcff;
}
.plan-option .radio-circle {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: inline-block;
    background: #fff;
    transform: translate(50%,-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.plan-option.active .radio-circle {
    border-color: #8b5cf6;
}
.plan-option.active .radio-circle::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #8b5cf6;
    border-radius: 50%;
}
.plan-option-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
    color: #111;
}
.plan-option-price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
    line-height: 32px;
}
.plan-option-desc {
    font-size: 13px;
    color: #999;
}
.btn-buy-now {
    background: #8b5cf6;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: auto;
    width: 100%;
    transition: background 0.2s;
}
.btn-buy-now:hover {
    background: #7c3aed;
}
.display_none {
    display: none !important;
}

/* Plan Allow List & Tooltips */
.feature-list li.plan-allow-item {
    display: flex;
    align-items: center;
    /* margin-bottom: 24px; */ /* Match standard li margin */
    position: relative;
}
.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    cursor: pointer;
    position: relative;
    /* padding: 4px; */ /* Larger hit area */
    vertical-align: middle;
}
.tooltip-info {
    display: block;
    visibility: hidden;
    width: 123px;
    background: #000;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 6px 8px;
    position: absolute;
    z-index: 100;
    /* bottom: 0; */
    left: 20px;
    /* transform: translateX(-50%) translateY(10px); */
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    pointer-events: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


.tooltip-info::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -13px;
    transform: translateY(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent #000 transparent transparent
}
.icon-wrapper:hover .tooltip-info {
    visibility: visible;
    opacity: 1;
    /* transform: translateX(-50%) translateY(0); */
}

.mbl-show{
    display:none ;
}

@media (max-width: 900px) {
    .account-plan-new {
        flex-direction: column-reverse;
    }
    .free-plan-card {
        flex: auto;
    }
    .premium-plan-card {
        flex-direction: column;
    }
    .premium-left {
        border-right: none;
        padding-right: 0;
    }
    .plans-list{
        flex-direction: row;
    }
    .premium-right{
        order: -1;
    }

    .plan-header h2, .premium-badge{
        display: none;
    }

    .premium-right .mbl-hide{
        display: none;
    }

    .mbl-show {
        display:block ;
    }

    .feature-list.active{
        display: none;
    }
    .plan-includes:has(.feature-list.active:is(:visible)) .includes-title img{
        rotate: 180deg;
    }

}

