.ecwafe-pricing-table-widget {
    max-width: 900px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}
.ecwafe-pricing-toggle {
    text-align: center;
    margin-bottom: 25px;
}
.ecwafe-toggle-btn {
    background: #eee;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    margin: 0 5px;
    border-radius: 3px;
    transition: background 0.3s ease;
}
.ecwafe-toggle-btn.active,
.ecwafe-toggle-btn:hover {
    background: #4caf50;
    color: white;
}
.ecwafe-plans-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.ecwafe-pricing-plan {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 280px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}
.ecwafe-pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgb(0 0 0 / 0.15);
}
.ecwafe-featured-plan {
    border-color: #4caf50;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.5);
}
.ecwafe-most-popular-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #4caf50;
    color: white;
    font-weight: 700;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}
.ecwafe-plan-title {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
    color: #333;
}
.ecwafe-plan-price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #4caf50;
}
.ecwafe-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    width: 100%;
}
.ecwafe-plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #555;
}
.ecwafe-plan-cta {
    text-decoration: none;
    background: #4caf50;
    color: white;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    transition: background 0.3s ease;
    width: 100%;
    text-align: center;
}
.ecwafe-plan-cta:hover {
    background: #43a047;
}
