.tabbed-pricing-plans-widget {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    color: #333;
}

.pricing-plans-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-plans-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #222;
}

.pricing-plans-header p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 20px;
}

.features-tabs {
    display: inline-flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 4px;
    overflow: hidden;
    border-radius: 100px;
    background-color: #091df61a;
    border: 1px solid rgba(9, 29, 246, 0.2);
    padding: 5px;
}

.feature-tab {
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    padding: 6px 20px;
    color: #333;
    background: transparent;
    position: relative;
}

/* Hover Effect */
.feature-tab:hover:not(.active) {
    background: rgba(9, 29, 246, 0.1);
}

/* Active Tab Animation */
.feature-tab.active {
    background: #091DF6;
    color: #fff;
    box-shadow: 0 4px 12px rgba(9, 29, 246, 0.2);
}

/* Optional: Ripple Effect (Advanced) */
.feature-tab::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 1%, transparent 1%) center/15000%;
    opacity: 0;
    transition: opacity 0.5s, background-size 0.5s;
    border-radius: 30px;
}

.feature-tab:active::after {
    background-size: 100%;
    opacity: 1;
    transition: background-size 0s;
}

.feature-tab i {
    font-size: 18px;
}

.pricing-tabs-content {
    position: relative;
    min-height: 400px;
}

.pricing-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.3s ease-out;
    transform: translateY(10px);
}

.pricing-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.5s ease-out forwards;
}

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

.pricing-plans-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-plan {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    width: calc(33.33% - 20px);
    position: relative;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pricing-plan.recommended {
    border: 1px solid #4caf50;
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;

    &.center {
        top: -2px;
        right: auto;
        font-size: 12px;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    &.left {
        right: auto;
        font-size: 12px;
        left: 20px;
    }
}

.pricing-plan h3 {
    font-size: 24px;
    margin: 0 0 10px;
    color: #222;
}

.pricing-plan .license {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px;
}

.pricing-plan .price {
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 10px;
    color: #222;
}

.pricing-plan .features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.pricing-plan .features li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-plan .features li i {
    width: 16px;
    text-align: center;
}

.pricing-plan .features li:last-child {
    border-bottom: none;
}

.buy-button {
    display: block;
    text-align: center;
    background: #000000;
    color: #ffffff;
    padding: 8px;
    border: 1px solid #000000;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

.buy-button:hover {
    background: #3e8e41;
    color: #fff;
}

.pricing-plans-footer {
    text-align: center;
    font-size: 12px;
    color: #999;
}

@media (max-width: 768px) {
    .pricing-plans-container {
        flex-direction: column;
        align-items: center;
    }

    .features-tabs {
        gap: 15px;
    }

    .pricing-plan {
        width: 100%;
        max-width: 350px;
    }

    .pricing-plan.recommended {
        transform: none;
    }
}

.pricing-plan .features li svg {
    width: 18px;
}

.features-tabs {
    svg {
        width: 20px;
    }
}

.features-tabs .feature-tab:hover {
    color: #fff;
}
.pricing-plan h3 {
    margin: 0;
}
