/* Price Display Styles for Annual/Monthly Toggle */

.pricing-price {
    position: relative;
    height: 60px; /* Fixed height to prevent layout shift */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Prevent content from showing outside container */
}

.price-monthly,
.price-annual {
    transition: all 0.4s ease-in-out;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.price-annual {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden; /* Hide completely when not active */
}

.pricing-card.annual .price-annual {
    opacity: 1;
    transform: translateY(0);
    visibility: visible; /* Show when active */
}

.pricing-card.annual .price-monthly {
    opacity: 0;
    transform: translateY(-20px);
    visibility: hidden; /* Hide completely when not active */
}

/* Highlight styles for current plan */
.current-plan {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
