/* VIP Ürünler - Creative Minimal Tasarım */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.vip-products-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
    font-family: 'Poppins', Arial, sans-serif;
    background: #f9f9f9;
}

/* Loading States */
.vip-loading {
    grid-column: 1 / -1;   /* tüm kolonları kapla */
    justify-self: center;  /* yatayda ortala */
    align-self: center;    /* dikeyde ortala (grid yüksekliği varsa) */
    text-align: center;
    padding: 80px 20px;
    color: #666;
}


.vip-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #cbfe1c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vip-products-grid.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Top Bar - İstatistikler ve Süre */
.vip-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #cbfe1c, #000);
    padding: 40px 35px;
    border-radius: 6px;
    margin-bottom: 35px;
    color: #000;
    position: relative;
    overflow: hidden;
    clip-path: polygon(10% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%, 0% 0%);
}

.vip-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.vip-stat-item {
    display: flex;
    flex-direction: column;
}

.vip-stat-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 4px;
}

.vip-stat-value {
    font-size: 24px;
    font-weight: 700;
}

.vip-time-remaining {
    text-align: right;
}

.vip-time-label {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 4px;
    color: #fff;
}

.vip-time-value {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

/* Uyarı Bildirimi */
.vip-expired-notice {
    background: linear-gradient(135deg, #fff3cd, #ffc107);
    border: 2px solid #ffc107;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
    color: #856404;
    clip-path: polygon(5% 0%, 100% 0%, 100% 95%, 95% 100%, 0% 100%, 0% 0%);
}

.vip-expired-notice h3 {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
}

/* Başlık */
.vip-products-header {
    text-align: center;
    margin-bottom: 30px;
}

.vip-products-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.vip-category-title {
    font-size: 24px;
    font-weight: 600;
    color: #cbfe1c;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    margin-bottom: 5px;
}

.vip-result-count {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

.vip-result-count strong {
    color: #333;
    font-weight: 600;
}

/* Filtreler */
.vip-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0 auto 25px;
    max-width: 800px;
}

.vip-search-wrapper {
    flex: 2;
    position: relative;
    min-width: 300px;
}

.vip-search-wrapper input {
    width: 100%;
    padding: 12px 40px 12px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.vip-search-clear {
    position: absolute!important;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px!important;
    height: 20px!important;
    background: #666;
    color: #fff;
    border: 2px solid #87a812!important;
    border-radius: 10%!important;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    line-height: 1;
}

.vip-search-clear:hover {
    background: #333;
}

.vip-filters select {
    flex: 1;
    min-width: 200px;
    padding: 12px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
    cursor: pointer;
}

.vip-filters input:focus,
.vip-filters select:focus {
    border-color: #cbfe1c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(203, 254, 28, 0.15);
}

/* Grid */
.vip-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    transition: opacity 0.3s ease;
}


/* özel kodlar*/

a.vip-btn.vip-btn-virustotal {
    margin-top:-2px!important;
	margin-bottom: 2px!important;
}

.download-count {
  
    margin-top: -5px!important;
    margin-bottom: 5px!important;
}


/* VirusTotal Hover Efekti */
a.vip-btn.vip-btn-virustotal:hover {
    background-color: rgba(57, 78, 255, 0.85) !important; 
   
    box-shadow: 0 4px 12px rgba(57, 78, 255, 0.3) !important; 
    transition: all 0.3s ease !important;
}

/* Kart */
.vip-product-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vip-product-card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* Görsel */
.vip-product-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.vip-product-image img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.vip-product-card:hover .vip-product-image img {
    transform: scale(1.05);
}

/* Ücretsiz Badge */
.vip-free-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #cbfe1c;
    color: #000;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 10;
}

/* İçerik */
.vip-product-content {
    padding: 15px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vip-product-content h2 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #222;
    font-weight: 500;
    line-height: 1.3;
    text-align: start;

}

/* Product Meta */
.vip-product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.vip-product-version {
    display: flex;
    align-items: center;
    gap: 8px;
}

.version-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #cbfe1c;
    color: #000;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.vip-product-type {
    display: inline-block;
    padding: 4px 10px;
    background: #f0f0f0;
    color: #666;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}



.download-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

/* Butonlar */
.vip-product-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: auto;
}

.vip-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    background: linear-gradient(135deg, #cbfe1c, #000);
    border: none;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    clip-path: polygon(10% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%, 0% 0%);
    flex: 1;
    text-align: center;
}

.vip-btn:hover {
    background: linear-gradient(135deg, #000, #cbfe1c);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.vip-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.vip-btn-download {
    background: linear-gradient(135deg, #cbfe1c, #000);
    color: #fff;
}

.vip-btn-download:hover {
    background: linear-gradient(135deg, #000, #cbfe1c);
    color: #000;
}

.vip-btn-download.loading {
    pointer-events: none;
    opacity: 0.8;
}

.vip-btn-demo {
    background: linear-gradient(135deg, #f0f0f0, #999);
    color: #222;
}

.vip-btn-demo:hover {
    background: linear-gradient(135deg, #999, #f0f0f0);
    color: #222;
}

.vip-btn-locked {
    background: linear-gradient(135deg, #cbfe1c, #000);
    color: #fff;
    cursor: not-allowed;
    opacity: 0.7;
}

.vip-btn-locked:hover {
    transform: none;
    box-shadow: none;
}

/* Pagination */
.vip-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.vip-pagination a,
.vip-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #666;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.vip-pagination a:hover {
    color: #000;
    background: #cbfe1c;
    border-color: #cbfe1c;
}

.vip-pagination .current {
    color: #000;
    background: #cbfe1c;
    border-color: #cbfe1c;
}

.vip-pagination .dots {
    border: none;
    background: transparent;
}

.vip-pagination .prev,
.vip-pagination .next {
    padding: 0 16px;
}

/* Modal */
.vip-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.vip-overlay.active {
    display: flex;
}

.vip-modal {
    background: #fff;
    padding: 35px;
    border-radius: 6px;
    max-width: 500px;
    text-align: center;
    position: relative;
    clip-path: polygon(5% 0%, 100% 0%, 100% 95%, 95% 100%, 0% 100%, 0% 0%);
}

.vip-modal-header {
    margin-bottom: 20px;
}

.vip-modal-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.vip-modal h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #222;
    font-weight: 700;
}

.vip-modal-body p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.vip-modal-body p strong {
    color: #333;
}

.vip-features {
    text-align: left;
    margin: 25px 0;
}

.vip-feature {
    padding: 10px;
    margin: 8px 0;
    background: #f9f9f9;
    border-radius: 4px;
    font-size: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vip-check {
    color: #cbfe1c;
    font-weight: 700;
    font-size: 18px;
}

.vip-modal-footer {
    margin: 20px 0;
}

.vip-slogan {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    background: linear-gradient(135deg, #cbfe1c, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vip-modal-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.vip-modal-primary {
    color: #000;
    background: linear-gradient(135deg, #cbfe1c, #000);
    clip-path: polygon(10% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%, 0% 0%);
}

.vip-modal-primary:hover {
    background: linear-gradient(135deg, #000, #cbfe1c);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.vip-modal-secondary {
    background: #ccc;
    color: #666;
}

.vip-modal-secondary:hover {
    background: #999;
    color: #fff;
}

/* Boş Sonuç */
.vip-no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px 20px;
}

.vip-no-products span {
    font-size: 64px;
    display: block;
    margin-bottom: 20px;
}

.vip-no-products h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.vip-no-products p {
    color: #666;
    font-size: 16px;
}

/* Error State */
.vip-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #e74c3c;
    font-size: 16px;
    background: #fee;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .vip-products-wrapper {
        padding: 15px;
    }
    
    .vip-top-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
    
    .vip-stats {
        width: 100%;
        justify-content: space-around;
    }
    
    .vip-time-remaining {
        text-align: center;
    }
    
    .vip-products-header h1 {
        font-size: 24px;
    }
    
    .vip-category-title {
        font-size: 20px;
    }
    
    /* Mobil için filters düzeltmesi */
    .vip-filters {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .vip-search-wrapper {
        width: 100%;
        min-width: unset;
    }
    
    .vip-filters select {
        width: 100%;
        min-width: unset;
        padding:8px!important;
    }
    
    .vip-products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .vip-product-image {
        height: 180px;
    }
    
    /* Pagination mobil */
    .vip-pagination a,
    .vip-pagination span {
        min-width: 32px;
        height: 32px;
        font-size: 13px;
        padding: 0 8px;
    }
    
    .vip-pagination .prev,
    .vip-pagination .next {
        padding: 0 12px;
    }
    
    /* Modal mobil */
    .vip-modal {
        width: 90%;
        margin: 0 5%;
        padding: 25px;
    }
    
    .vip-modal-icon {
        font-size: 40px;
    }
    
    .vip-modal h3 {
        font-size: 20px;
    }
    
    /* Butonlar mobilde normal kalsın */
    .vip-btn {
        padding: 12px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .vip-products-grid {
        gap: 12px;
    }
    
    .vip-product-card {
        border-radius: 5px;
    }
    
    .vip-product-content {
        padding: 12px;
    }
    
    .vip-product-content h2 {
        font-size: 14px;
    }
    
    .vip-product-buttons {
        flex-direction: row;
        gap: 8px;
    }
    
    .vip-btn {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }
}

/* Tablet düzeltmeleri */
@media (min-width: 769px) and (max-width: 1024px) {
    .vip-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

/* VirusTotal Badge Stili */


.vip-product-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    font-size: 13px;
    color: #888;
    position: relative; /* referans */
}

/* buton hep sağda sabit */
a.vip-btn.vip-btn-virustotal {
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-left: 0 !important; /* flex etkisini kaldır */
}




/* VirusTotal butonu — kompakt / metne göre genişlik */
a.vip-btn.vip-btn-virustotal {
  display: inline-flex !important;     
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  font-size: 14px !important;
  line-height: 1 !important;
  width: auto !important;              
  min-width: 0 !important;
  max-width: none !important;
  flex: 0 0 auto !important;            
  white-space: nowrap !important;      
  box-sizing: border-box !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  background: #394EFF !important; 
  color: #fff !important;
  padding:10px 11px!important;
}




/*yeni eklenenler*/
/* Sıralama Filtreleri */
.vip-sort-filters {
    display: flex;
    gap: 12px;
    margin: 20px 0;
    justify-content: center;
}

.vip-sort-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.vip-sort-btn:hover {
    border-color: #394EFF;
    color: #394EFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(57, 78, 255, 0.15);
}

.vip-sort-btn svg {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.vip-sort-btn.active {
    background: linear-gradient(135deg, #394EFF 0%, #5865F2 100%);
    border-color: #394EFF;
    color: white;
    box-shadow: 0 4px 12px rgba(57, 78, 255, 0.3);
}

.vip-sort-btn.active svg {
    fill: white;
    stroke: white;
}

.vip-sort-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(57, 78, 255, 0.4);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .vip-sort-filters {
        flex-direction: column;
        gap: 10px;
    }
    
    .vip-sort-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}



/* Ürün başlık linki - frontend.css dosyasına ekleyin */

.vip-product-title-link {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.vip-product-title-link:hover {
    color: #cbfe1c;
}

.vip-product-content h2 {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.3;
    text-align: start;
}

/* Temel VIP Products Stilleri */
.wvp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.wvp-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
