/* VIP SAYFA STİLLERİ */
.vip-plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.vip-plan-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.vip-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.vip-plan-card.featured {
    border-color: #6366f1;
    background: linear-gradient(135deg, #fafbff 0%, #f0f1ff 100%);
}

.vip-plan-card.featured::before {
    content: 'Önerilen';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.vip-plan-card.current {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.vip-plan-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.vip-plan-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.vip-plan-card:nth-child(1) .vip-plan-icon {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    color: #6b7280;
}

.vip-plan-card:nth-child(2) .vip-plan-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #2563eb;
}

.vip-plan-card:nth-child(3) .vip-plan-icon {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #7c3aed;
}

.vip-plan-name {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 6px;
}

.vip-plan-desc {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.vip-plan-price {
    text-align: center;
    margin-bottom: 24px;
}

.vip-plan-price .amount {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
}

.vip-plan-price .period {
    font-size: 14px;
    color: #9ca3af;
}

.vip-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.vip-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}

.vip-plan-features li:last-child {
    border-bottom: none;
}

.vip-plan-features li i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.vip-plan-features li i.fa-check {
    background: #dcfce7;
    color: #16a34a;
}

.vip-plan-features li i.fa-times {
    background: #fee2e2;
    color: #dc2626;
}

.vip-plan-features li.disabled {
    color: #9ca3af;
    text-decoration: line-through;
}

.vip-plan-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.vip-plan-btn.primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
}

.vip-plan-btn.primary:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    transform: translateY(-1px);
}

.vip-plan-btn.secondary {
    background: #f3f4f6;
    color: #374151;
}

.vip-plan-btn.secondary:hover {
    background: #e5e7eb;
}

.vip-plan-btn.success {
    background: #dcfce7;
    color: #16a34a;
    cursor: default;
}

.vip-plan-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* YAN PANEL STİLLERİ */
.vip-sidebar-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.vip-sidebar-header {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vip-sidebar-header i {
    font-size: 18px;
    color: #6366f1;
}

.vip-sidebar-header h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}

.vip-sidebar-body {
    padding: 20px;
}

/* Durum Kartı */
.vip-status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.vip-status-item:last-child {
    border-bottom: none;
}

.vip-status-label {
    font-size: 13px;
    color: #6b7280;
}

.vip-status-value {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.vip-badge.success {
    background: #dcfce7;
    color: #16a34a;
}

.vip-badge.warning {
    background: #fef3c7;
    color: #d97706;
}

.vip-badge.danger {
    background: #fee2e2;
    color: #dc2626;
}

.vip-badge.info {
    background: #dbeafe;
    color: #2563eb;
}

.vip-badge.premium {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #7c3aed;
}

.vip-no-subscription {
    text-align: center;
    padding: 30px 20px;
}

.vip-no-subscription i {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.vip-no-subscription p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

/* Promosyon Kodu */
.vip-promo-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vip-promo-input-group {
    position: relative;
}

.vip-promo-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    transition: all 0.2s ease;
    background: #f9fafb;
}

.vip-promo-input:focus {
    outline: none;
    border-color: #6366f1;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.vip-promo-input::placeholder {
    letter-spacing: 1px;
    color: #9ca3af;
}

.vip-promo-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vip-promo-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
}

.vip-promo-info {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    background: #f0fdf4;
    border-radius: 8px;
    font-size: 12px;
    color: #166534;
}

.vip-promo-info i {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Alert Mesajları */
.vip-alert {
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.vip-alert.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.vip-alert.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.vip-alert .close-btn {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.6;
}

.vip-alert .close-btn:hover {
    opacity: 1;
}

/* İptal Butonu */
.vip-cancel-btn {
    width: 100%;
    padding: 10px;
    border: 1px solid #fecaca;
    border-radius: 8px;
    background: #fff;
    color: #dc2626;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.vip-cancel-btn:hover {
    background: #fef2f2;
}

/* Bilgi Alanı */
.vip-info-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
}

.vip-info-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vip-info-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.vip-info-list p {
    margin: 0;
    padding: 10px 14px;
    background: #fff;
    border-radius: 8px;
    font-size: 13px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 200px;
}

.vip-info-list p i {
    color: #ffa438;
    width: 40px;
    display: block;
    font-size: 32px;
    padding: 0px 5px;
}

/* Fiyat Bilgisi */
.vip-pricing-notice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 30px;
}

.pricing-notice-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.pricing-notice-text strong {
    display: block;
    font-size: 15px;
    color: #92400e;
    margin-bottom: 4px;
}

.pricing-notice-text p {
    font-size: 13px;
    color: #78350f;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .vip-plans-container {
        grid-template-columns: 1fr;
    }
}
