/* Pricing Page Styles */
.pricing-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.pricing-container .container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Toggle Controls */
.custom-switch .e-switch-wrapper {
    height: 28px;
    width: 56px;
}

.custom-switch .e-switch-inner,
.custom-switch .e-switch-handle {
    height: 24px;
    width: 24px;
}

/* Pricing Cards */
.pricing-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    overflow: visible;
}

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

.popular-plan {
    border: 2px solid #667eea;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
    white-space: nowrap;
}

/* Card Header */
.pricing-card .e-card-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem;
}

.card-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.5rem;
}

.price-display h2 {
    color: #667eea;
    margin-bottom: 0;
}

.price-display .text-muted {
    font-size: 0.9rem;
}

/* Card Content */
.pricing-card .e-card-content {
    padding: 1.5rem;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.pricing-card ul li .e-icons {
    font-size: 1.2rem;
    min-width: 24px;
}

/* Card Footer */
.pricing-card .e-card-footer {
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

/* Buttons */
.e-btn.e-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    font-weight: 600;
    padding: 12px 24px;
}

.e-btn.e-primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b4299 100%);
}

.e-btn.e-outline {
    border: 2px solid #667eea;
    color: #667eea;
    font-weight: 600;
    padding: 12px 24px;
}

.e-btn.e-outline:hover {
    background: #667eea;
    color: white;
}

.e-btn.e-success {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.e-btn.e-success:hover {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
}

/* Button Group */
.e-btn-group {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.e-btn-group .e-btn {
    border: none;
    padding: 10px 20px;
    font-weight: 600;
}

.e-btn-group .e-btn.e-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-container .container {
        padding: 1.5rem;
        border-radius: 0;
    }
    
    .pricing-toggles {
        flex-direction: column;
        gap: 1rem;
    }
    
    .price-display h2 {
        font-size: 2rem;
    }
}
