/* Add these styles to your existing CSS */

/* Dynamic subscription duration colors */
.pricing-card {
    position: relative;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border-width: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Add duration indicator at the bottom */
.pricing-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: all 0.3s ease;
}

/* Color coding based on duration */


/* Hover effects for duration indicator */
.pricing-card:hover::after {
    height: 6px;
}

/* Active subscription gets a special treatment */
.pricing-card.active-subscription::after {
    height: 8px;
    background: linear-gradient(90deg, #cc9b15, #d46d0d);
    animation: activeBorderPulse 2s infinite;
}

@keyframes activeBorderPulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.active-subscription-card {
    position: relative;
    overflow: hidden;
    border: none;
    /* Default gradient - will be overridden by JS */
    background: linear-gradient(90deg, #C2410C, #EA580C);
    transition: background 0.5s ease;
}