.kvp-plans-page {
    margin-top: 20px;
}

/* Grid */
.kvp-plans-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Card */
.kvp-plan-card {
    flex: 1 1 300px;
    background: #111827;
    border-radius: 10px;
    padding: 18px;
    border: 1px solid #1f2937;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    color: #e5e7eb;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.kvp-plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.6);
}

/* Theme variations */
.kvp-theme-dark .kvp-plan-card {
    border-color: #374151;
}

.kvp-theme-blue .kvp-plan-card {
    border-color: #3b82f6;
}

.kvp-theme-gold .kvp-plan-card {
    border-color: #fbbf24;
}

/* Header */
.kvp-plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.kvp-plan-icon i {
    font-size: 26px;
    color: #f97316;
}

.kvp-plan-title {
    font-size: 18px;
    font-weight: 700;
}

.kvp-plan-duration {
    font-size: 13px;
    color: #9ca3af;
}

/* Price */
.kvp-plan-price {
    margin: 10px 0 14px;
}

.kvp-price-before {
    font-size: 13px;
    color: #6b7280;
    text-decoration: line-through;
}

.kvp-price-now {
    font-size: 20px;
    font-weight: 700;
    color: #22c55e;
}

.kvp-price-now span {
    font-size: 13px;
    margin-right: 4px;
}

/* Features */
.kvp-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.kvp-plan-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
}

/* ✔ / ✖ */
.kvp-plan-features .yes {
    color: #22c55e;
    font-weight: 700;
    font-size: 16px;
    margin-left: 5px;
}

.kvp-plan-features .no {
    color: #ef4444;
    font-weight: 700;
    font-size: 16px;
    margin-left: 5px;
}

/* Footer */
.kvp-plan-footer {
    text-align: center;
}

.kvp-buy-btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f97316, #ef4444);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kvp-buy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(248,113,113,0.6);
}

/* Badges برای نمایش نوع اشتراک و اولویت */
.kvp-badge-plan {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    background: #111827;
    color: #e5e7eb;
    font-size: 11px;
    margin-right: 6px;
}

.kvp-badge-priority {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    background: #f97316;
    color: #fff;
    font-size: 11px;
}
