/* Pricing Table - cea6dad6 */

.pt-cea6dad6-wrapper {
    width: 100%;
    box-sizing: border-box;
}

/* Toggle */
.pt-cea6dad6-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pt-cea6dad6-toggle-label {
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    user-select: none;
}

.pt-cea6dad6-toggle-track {
    position: relative;
    width: 52px;
    height: 28px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.pt-cea6dad6-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.pt-cea6dad6-toggle-thumb.pt-cea6dad6-yearly {
    transform: translateX(24px);
}

.pt-cea6dad6-discount-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1.3;
}

/* Grid */
.pt-cea6dad6-grid {
    display: grid;
    align-items: stretch;
}

/* Card */
.pt-cea6dad6-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
    overflow: hidden;
}

/* Hover Effects */
.pt-cea6dad6-hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pt-cea6dad6-hover-glow:hover {
    box-shadow: 0 0 30px rgba(108, 99, 255, 0.25), 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pt-cea6dad6-hover-scale:hover {
    transform: scale(1.04);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

/* Badge */
.pt-cea6dad6-badge {
    position: absolute;
    top: 16px;
    right: -2px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 20px;
    z-index: 2;
}

/* Plan Icon */
.pt-cea6dad6-plan-icon {
    margin-bottom: 12px;
    line-height: 1;
}

/* Plan Name */
.pt-cea6dad6-plan-name {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

/* Plan Description */
.pt-cea6dad6-plan-desc {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.5;
}

/* Price */
.pt-cea6dad6-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 20px;
    min-height: 56px;
}

.pt-cea6dad6-currency {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    align-self: flex-start;
    margin-top: 6px;
}

.pt-cea6dad6-price-amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.pt-cea6dad6-price-amount.pt-cea6dad6-animating {
    opacity: 0;
    transform: translateY(-10px);
}

.pt-cea6dad6-period {
    font-size: 14px;
    font-weight: 400;
    margin-left: 2px;
}

/* Divider */
.pt-cea6dad6-divider {
    width: 100%;
    height: 1px;
    background: #E8E8E8;
    margin-bottom: 20px;
}

/* Features */
.pt-cea6dad6-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    width: 100%;
    text-align: left;
}

.pt-cea6dad6-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pt-cea6dad6-feature-item.pt-cea6dad6-unavailable-feature {
    opacity: 0.5;
}

.pt-cea6dad6-feature-icon {
    flex-shrink: 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.pt-cea6dad6-feature-text {
    font-size: 14px;
    line-height: 1.5;
}

/* Button */
.pt-cea6dad6-btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin-top: auto;
    cursor: pointer;
    line-height: 1.4;
}

.pt-cea6dad6-btn:hover {
    transform: translateY(-1px);
}

/* Featured card scale on desktop */
@media (min-width: 768px) {
    .pt-cea6dad6-card.pt-cea6dad6-featured {
        transform: scale(1.03);
        z-index: 1;
    }
    .pt-cea6dad6-card.pt-cea6dad6-featured.pt-cea6dad6-hover-lift:hover {
        transform: scale(1.03) translateY(-8px);
    }
    .pt-cea6dad6-card.pt-cea6dad6-featured.pt-cea6dad6-hover-scale:hover {
        transform: scale(1.07);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .pt-cea6dad6-toggle-wrapper {
        margin-bottom: 24px;
    }
}
