/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .wpee-upgrade-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:400px;
    padding:40px 20px;
    background:linear-gradient(135deg,#f9f9ff,#eef3ff);
}

.wpee-upgrade-card{
    max-width:420px;
    width:100%;
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    border:1px solid #eee;
    animation:fadeInUp 0.4s ease;
}

.wpee-upgrade-icon{
    font-size:40px;
    margin-bottom:10px;
}

.wpee-upgrade-title{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
    color:#222;
}

.wpee-upgrade-subtitle{
    font-size:14px;
    color:#666;
    margin-bottom:20px;
    line-height:1.5;
}

.wpee-upgrade-features{
    text-align:left;
    margin:20px 0;
    padding:15px;
    background:#f6f8ff;
    border-radius:12px;
}

.feature-item{
    font-size:14px;
    margin:8px 0;
    color:#444;
}

.wpee-upgrade-btn{
    display:inline-block;
    width:100%;
    padding:12px;
    background:var(--color-primary);
    font-weight:600;
    border-radius:10px;
    text-decoration:none;
    transition:0.3s;
}

.wpee-upgrade-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(108,99,255,0.3);
}

/* animation */
@keyframes fadeInUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}