/**
 * LinkKart.me - Premium Tema Stilleri
 * 
 * Bu dosya, premium temalara özel stil ve efektleri içerir
 */

/* Premium Tema Kartı */
.theme-card.premium-theme {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theme-card.premium-theme:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Premium İşareti */
.badge-premium {
    background: #9c27b0;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 500;
    margin-left: 5px;
}

/* Yükselt Düğmesi */
.btn-upgrade {
    background: #9c27b0;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

/* Yükselt butonu hover durumu */
.btn-upgrade:hover {
    background: #7b1fa2;
}

/* Btn-sm sınıfı ile birlikte */
.btn-sm.btn-upgrade {
    padding: 6px 12px;
    font-size: 13px;
}

/* Premium Dialog */
.premium-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.premium-dialog-content {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 550px;
    overflow: hidden;
    animation: fadeIn 0.3s ease-out;
}

.premium-dialog-header {
    padding: 20px;
    background: linear-gradient(135deg, #9C27B0, #673AB7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.premium-dialog-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.premium-dialog-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-dialog-body {
    padding: 25px;
}

.premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.premium-feature {
    text-align: center;
    padding: 15px;
}

.premium-feature i {
    font-size: 36px;
    color: #9C27B0;
    margin-bottom: 15px;
}

.premium-feature h4 {
    font-size: 16px;
    margin: 0 0 10px;
    color: #333;
}

.premium-feature p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.premium-pricing {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.premium-price {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.premium-price .currency {
    font-size: 18px;
    vertical-align: top;
    margin-right: 2px;
}

.premium-price .amount {
    font-size: 40px;
    color: #9C27B0;
}

.premium-price .period {
    font-size: 16px;
    color: #666;
}

.btn-premium {
    background: linear-gradient(135deg, #9C27B0, #673AB7);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(103, 58, 183, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-premium:hover {
    background: linear-gradient(135deg, #8E24AA, #5E35B1);
    box-shadow: 0 6px 15px rgba(103, 58, 183, 0.4);
    transform: translateY(-2px);
}

/* Premium Kullanıcı Rozeti */
.premium-user-badge {
    background: linear-gradient(135deg, #FF9966, #FF5E62);
    color: #fff;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(255, 94, 98, 0.3);
}

.premium-user-badge i {
    margin-right: 5px;
}

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