.abhi-root {
    --primary-blue: #f41900;
    --primary-gold: #f41900;
    --success-green: #28a745;
    --danger-red: #dc3545;
    --text-primary: #333;
    --text-secondary: #666;
    --text-muted: #646f79;
    --border-light: #e9ecef;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
}

.abhi-pricing * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.abhi-pricing {
    font-family: system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    padding: 20px;
    transition: background 0.3s ease;
    /*background: var(--bg-white);*/
}

.abhi-ca-basic {
    background: linear-gradient(180deg, #FFFFFF -14.78%, #E3EEFB -14.77%, rgba(240,242,247,.6) 87.98%), #FFFFFF;
}

.abhi-ca-pro {
    background: linear-gradient(180deg, rgba(255,246,227,.29) 6.23%, rgba(228,228,228,0) 100%), #FFFFFF;
}

.abhi-ca-basic-btn {
    background: #f41900 !important;
}

.abhi-ca-pro-btn {
    background: #f41900 !important;
}

.abhi-container {
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding-top: 40px;
}

/* Tab Groups */
.abhi-tab-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-white);
    border: 0.5px solid #ecf0f2;
    box-shadow: var(--shadow-sm);
    border-radius: 40px;
    padding: 0.25rem;
    margin: 0 auto 1rem;
}

@media (min-width: 1200px) {
    .abhi-tab-group {
        grid-template-columns: max-content max-content;
        width: max-content;
    }
}

.abhi-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.625rem;
    padding: 0.5rem!important;
    font-weight: 500;
    font-size: 17px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
}

@media (min-width: 1200px) {
    .abhi-tab {
        min-width: 210px;
        padding: 5px 13px!important;
    }
}

.abhi-tab.abhi-active.abhi-tab--pro {
    background: #fff7f7 !important;
    color: #f41900 !important;
}

.abhi-tab.abhi-active.abhi-tab--pass {
    background: #fff7f7;
    color: #f41900;
}

.abhi-badge {
    background: #f41900;
    font-weight: 600;
    font-size: 12px;
    color: var(--bg-white);
    padding: 1px 8px 3px;
    border-radius: 20px;
}

/* Main Layout */
.abhi-main-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}

@media screen and (max-width: 1000px) {
    .abhi-main-content {
        flex-direction: column;
    }
}

/* Features Card */
.abhi-features-card {
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 10px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.abhi-card-header {
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
    border-top-left-radius: 12px;
}

.abhi-card-title {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.abhi-card-content {
    padding: 16px 0px 16px 16px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 6px 0;
    align-items: center;
}

.abhi-tick-access {
    width: 120px;
    height: 13px;
    display: flex;
    justify-content: center;
}

.abhi-tick-no-access {
    width: 20px;
    height: 21px;
    justify-self: center;
}

.abhi-feature-row {
    font-size: 15px;
    color: #2c3e50;
    font-weight: 400;
    padding: 9px 10px;
    border-top: 1px solid #efefef;
}

    .abhi-feature-row:first-child {
        border-top: none;
    }

.abhi-icon-container {
    width: 120px;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 1000px) {
    .abhi-features-card {
        width: 100%;
    }
}


@media screen and (max-width: 600px) {
    .abhi-icon-container {
        width: 75px;
    }

    .abhi-card-content {
        padding-left: 12px;
    }

    .abhi-feature-row {
        font-size: 12px;
    }
    .abhi-tab{
        font-size:13px;
    }
}

/* Action Columns */
.abhi-action-section {
    position: absolute;
    height: calc(100%);
    top: 0px;
    right: 0;
    display: flex;
}

.abhi-action-column {
    width: 120px;
    background: transparent;
    border: 1px solid var(--border-light);
    /*border-left: 2px solid var(--border-light);
    border-right: 2px solid var(--border-light);*/
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

@media screen and (max-width: 600px) {
    .abhi-action-column {
        width: 75px;
    }
    .abhi-pricing {
        padding: 0;
    }
    .abhi-tab-group{
        /*display:block;*/
        padding:5px;
        border-radius:20px;
    }
    .abhi-buy-button {
        padding: 12px!important;
        font-size: 14px!important;
    }
}

.abhi-column-header {
    width: 100%;
    height: 50px;
    background: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
}


.abhi-column-header {
    height: 65px;
    flex-direction: column;
    color: var(--text-muted);
    justify-content: flex-start;
    padding-top: 9px;
}

    .abhi-column-header h3 {
        font-size: 14px !important;
        color: revert-layer !important;
        font-weight: 500!important;
        margin-bottom: 7px;
        text-align: center;
    }

.abhi-action-column.abhi-active {
    border-color: var(--primary-blue);
}

    .abhi-action-column.abhi-active.abhi-column-pro {
        border-color: var(--primary-gold);
    }

        .abhi-action-column.abhi-active.abhi-column-pro .abhi-column-header {
            color: var(--primary-gold)!important;
            font-weight: 700;
        }

    .abhi-action-column.abhi-active.abhi-column-pass .abhi-column-header {
        color: var(--primary-blue)!important;
        font-weight: 700!important;
    }

/* Custom Radio Buttons */
.abhi-pricing input[type="radio"] {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    background: var(--bg-white);
    cursor: pointer;
    position: relative;
}

    .abhi-pricing input[type="radio"]:checked {
        border-color: var(--primary-blue);
    }

.abhi-column-pro input[type="radio"]:checked {
    border-color: var(--primary-gold);
}

.abhi-pricing input[type="radio"]:checked::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.abhi-column-pro input[type="radio"]:checked::after {
    background: var(--primary-gold);
}

/* Pricing Section */
.abhi-pricing-section {
    flex: 1;
    width: 100%;
}

.abhi-plan-selection {
    transition: opacity 0.3s ease;
}

    .abhi-plan-selection h4 {
        font-size: 16px;
        font-weight: 500;
        color: var(--text-primary);
        margin-bottom: 15px;
    }

.abhi-plan-option {
    background: var(--bg-white);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px 17px;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

 .abhi-plan-option:hover {
     border-color: var(--primary-blue);
 }

 .abhi-plan-option.abhi-selected {
     border-color: var(--primary-blue);
     background: #fff7f7;
 }

.abhi-pro-plans .abhi-plan-option.abhi-selected {
    border-color: var(--primary-gold);
    background: #fff7f7;
}

.abhi-plan-option input[type="radio"] {
    position: absolute!important;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}


.abhi-pro-plans .abhi-plan-option.abhi-selected input[type="radio"]:checked {
    border-color: var(--primary-gold);
}

    .abhi-pro-plans .abhi-plan-option.abhi-selected input[type="radio"]:checked::after {
        background-color: var(--primary-gold);
    }

.abhi-plan-content {
    width: calc(100% - 35px);
    margin-left: 35px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.abhi-plan-details .abhi-plan-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1;
}

.abhi-plan-details .abhi-meta {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 0;
}

.abhi-plan-details .abhi-plan-validity {
    color: var(--text-secondary);
    font-size: 13px;
}

.abhi-plan-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.abhi-original-price {
    text-decoration: line-through;
    color: #7a7a7a;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
}

.abhi-current-price {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.abhi-selected .abhi-discount-badge {
    background: #f41900;
    color: var(--bg-white);    
}


.abhi-discount-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #404c6f;
    color: var(--bg-white);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px 0 10px;
}

.abhi-buy-button {
    width: 100%;
    background: #4caf50;
    color: var(--bg-white);
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.3s ease;
}

    .abhi-buy-button:hover {
        background: #43a047;
    }

/* Utilities */
.abhi-hidden {
    display: none;
}

/* abhi-video-section */
.abhi-video-section {
    width: 100%;
}

    .abhi-video-section h2 {
        position: relative;
        margin-bottom: 2rem;
        width: fit-content;
        margin-inline: auto;
        margin-top: 5rem;
        color: #2c3e50;
        font-size: 26px;
        font-weight: 600;
    }

        .abhi-video-section h2::before {
            content: "";
            position: absolute;
            bottom: calc(-12px);
            left: -10px;
            width: 100px;
            height: 3px;
            background-color: red;
        }

    .abhi-video-section .abhi-video-container {
        margin-top: 70px;
        margin-bottom: 70px;
        display: flex;
        justify-content: center;
    }

        .abhi-video-section .abhi-video-container iframe {
            height: 360px;
            width: 640px;
        }

/* Responsive design */
@media (max-width: 768px) {
    .abhi-video-section .abhi-video-container iframe {
        width: 100%;
        max-width: 560px;
        height: 315px;
    }
    .abhi-video-section h2::before {
        height: 2px;
        left: 0;
    }
}

@media (max-width: 480px) {
    .abhi-video-section .abhi-video-container iframe {
        width: 100%;
        height: 250px;
    }

    .abhi-video-section h2 {
        font-size: 19px;
        margin-top: 3rem;
    }
    .abhi-video-section h2::before{
        height: 2px;
        left:0;
    }
}
