﻿.pricing-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    background: linear-gradient(135deg, #ebeef1 0%, #ebeef1 100%);
    border-radius: 12px;
    padding: 24px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    /*cursor: pointer;*/
}

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    .pricing-card.selected {
        border: 2px solid #506c86;
        transform: translateY(-5px);
    }

    .pricing-card.premium {
        background: linear-gradient(135deg, #fbf8ef 0%, #fbf8ef 100%);
    }

        .pricing-card.premium.selected {
            transform: translateY(-5px);
            border: 2px solid #f57f17;
        }

    .pricing-card.plus {
        background: linear-gradient(135deg, #ddf0f5 0%, #ddf0f5 100%);
    }


        .pricing-card.plus.selected {
            transform: translateY(-5px);
            border: 2px solid ##0d616b;
        }

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.plan-type {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.plan-name {
    font-size: 24px;
    font-weight: 600;
    color: #506c86;
    margin-top: 4px;
}

    .plan-name.plus {
        color: #0d616b;
    }

    .plan-name.premium {
        color: #7d6521;
    }

.info-icon {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

    .info-icon:hover {
        border-color: #666;
        color: #333;
    }

.pricing-details {
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.price-label {
    font-size: 14px;
    color: #666;
}

.price-value {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.progress-price-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-price-fill {
    height: 100%;
    background: #506c86;
    border-radius: 4px;
    transition: width 0.3s ease;
}

    .progress-price-fill.plus {
        background: #0d616b;
    }

    .progress-price-fill.premium {
        background: #f57f17;
    }

.progress-price-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.premium-badge {
    background: #f0efeb;
    color: #7d6521;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    margin-top: 16px;
}

    .premium-badge::before {
        content: '✓';
        font-weight: bold;
        margin-right: 8px;
        font-size: 16px;
        flex-shrink: 0;
    }

.radio-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.pricing-card.selected .radio-indicator {
    background: #506c86;
}

.pricing-card.plus.selected .radio-indicator {
    background: #0d616b;
}

.pricing-card.premium.selected .radio-indicator {
    background: #f57f17;
}

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

    .pricing-card {
        max-width: 100%;
    }
}

/* Tooltips */
.tooltip {
    position: relative;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 200px;
        background-color: #333;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 8px;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        margin-left: -100px;
        opacity: 0;
        transition: opacity 0.3s;
        font-size: 12px;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }
