/* Disabled Plans Logic */

.pricing-card.disabled-plan {
    opacity: 0.6;
    filter: grayscale(1);
    pointer-events: none;
    /* Make non-clickable */
    overflow: hidden;
    /* For ribbon */
    background: #f8fafc;
    /* Slightly darker/different bg */
}

/* Coming Soon Ribbon */
.coming-soon-ribbon {
    position: absolute;
    top: 30px;
    right: -40px;
    background: #ef4444;
    /* Red color */
    color: white;
    padding: 6px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    /* Ensure it's readable */
    filter: none;
}

/* Since the parent has grayscale, the ribbon would also be gray. 
   We need to prevent that, OR, we can apply grayscale to the content *inside* the card, 
   excluding the ribbon. Let's adjust the strategy. 
*/

.pricing-card.disabled-plan {
    filter: none;
    /* Don't grayscale the container */
}

.pricing-card.disabled-plan>*:not(.coming-soon-ribbon) {
    /* Grayscale everything EXCEPT the ribbon */
    opacity: 0.5;
    filter: grayscale(1);
}

.pricing-card.disabled-plan:hover {
    transform: none;
    /* Disable hover lift */
    box-shadow: var(--shadow-md);
    /* Reset shadow */
}