/* VIP Tek Ürün Detay Sayfası - Profesyonel Tasarım */

.vip-single-product-wrapper {
    max-width: 1200px;
    margin: 5px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

/* Container */
.vip-single-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 35px;
    align-items: start;
}

/* SOL TARAF: İçerik */
.vip-single-content {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Görsel - DÜZELTME: Tam boyut, sıkıştırma yok */
.vip-single-image {
    position: relative;
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
}

.vip-single-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: contain; /* Görsel sıkışmayacak */
    max-height: none; /* Yükseklik sınırı yok */
}

.vip-single-image .vip-free-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #cbfe1c;
    color: #000;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Başlık */
.vip-single-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

/* Aksiyon Butonları - YAN YANA */
.vip-single-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    align-items: center;
}

/* Buton Stilleri */
.vip-single-actions .vip-btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.vip-single-actions .vip-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.vip-single-actions .vip-btn-download {
    background: linear-gradient(135deg, #cbfe1c, #000);
    color: #fff;
    box-shadow: 0 4px 15px rgba(203, 254, 28, 0.3);
}

.vip-single-actions .vip-btn-download:hover {
    background: linear-gradient(135deg, #000, #cbfe1c);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(203, 254, 28, 0.4);
}

.vip-single-actions .vip-btn-demo {
    background: linear-gradient(135deg, #f0f0f0, #999);
    color: #222;
}

.vip-single-actions .vip-btn-demo:hover {
    background: linear-gradient(135deg, #999, #f0f0f0);
    transform: translateY(-2px);
}

.vip-single-actions .vip-btn-locked {
    background: linear-gradient(135deg, #cbfe1c, #000)!important;
    color: #fff;
    cursor: not-allowed;
    opacity: 0.7;
}

.vip-single-actions .vip-btn-locked:hover {
    background: linear-gradient(135deg, #000, #cbfe1c) !important;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* VirusTotal Butonu - DEMO İLE YAN YANA */
.vip-single-actions .vip-btn-virustotal {
    background: #394EFF !important;
    color: #fff !important;
    padding: 12px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    white-space: nowrap !important;
}

.vip-single-actions .vip-btn-virustotal svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
}

.vip-single-actions .vip-btn-virustotal:hover {
    background: rgba(57, 78, 255, 0.85) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(57, 78, 255, 0.3) !important;
}

/* Açıklama */
.vip-single-description {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    padding: 8px 0px;
    /*background: #f9f9f9;*/
    border-radius: 8px;
}

.vip-single-description p {
    margin-bottom: 15px;
}

.vip-single-description p:last-child {
    margin-bottom: 0;
}

/* SAĞ TARAF: Sidebar */
.vip-single-sidebar {
    position: sticky;
    top: 20px;
}

/* Bilgi Kartı */
.vip-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.vip-info-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Bilgi Item - YAN YANA DÜZEN */
.vip-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.vip-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.vip-info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    font-weight: 400;
    min-width: 120px;
    flex-shrink: 0;
}

.vip-info-label svg {
    color: #1a1a1a;
    flex-shrink: 0;
}

.vip-info-value {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    text-align: right;
    flex: 1;
}

.vip-category-link {
    color: #0066cc;
    text-decoration: none;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 2px;
    transition: all 0.2s ease;
}

.vip-category-link:hover {
    color: #004499;
    border-bottom-color: #004499;
    background-color: rgba(0, 102, 204, 0.1);
}

/* Durum Badge */
.vip-status-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.vip-status-free {
    background: linear-gradient(135deg, #cbfe1c, #a8d616);
    color: #000;
}

.vip-status-vip {
    background: linear-gradient(135deg, #394EFF, #5865F2);
    color: #fff;
}

.vip-status-badge svg {
    width: 20px;
    height: 20px;
}

/* BENZER ÜRÜNLER BÖLÜMÜ */
.vip-related-products {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.vip-related-title {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #394EFF, #5865F2);
    color: #fff;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vip-related-title svg {
    color: #cbfe1c;
    width: 28px;
    height: 28px;
}

/* Benzer Ürünler Grid */
.vip-related-products .vip-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Loading State */
.vip-btn-download.loading {
    pointer-events: none;
    opacity: 0.8;
}

.vip-btn-download .btn-loading {
    display: none;
}

.vip-btn-download.loading .btn-text {
    display: none;
}

.vip-btn-download.loading .btn-loading {
    display: inline;
}

/* Responsive */
@media (max-width: 1024px) {
    .vip-single-container {
        grid-template-columns: 1fr;
    }
    
    .vip-single-sidebar {
        position: relative;
        top: 0;
    }

    .vip-related-products .vip-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .vip-single-product-wrapper {
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden!important;
    }
    
    .vip-single-content {
        padding: 20px;
        overflow-x: hidden!important;
    }
    
    .vip-single-title {
        font-size: 22px;
    }
    
    .vip-single-description {
        font-size: 14px;
        padding: 10px;
    }
    
    .vip-single-actions {
        flex-direction: column;
    }
    
    .vip-single-actions .vip-btn {
        width: 100%;
    }
    
    .vip-info-card {
        padding: 20px;
    }

    .vip-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .vip-info-value {
        text-align: left;
    }

    .vip-related-products .vip-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .vip-single-title {
        font-size: 20px;
    }
    
    .vip-single-actions .vip-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .vip-single-image .vip-free-badge {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 11px;
    }

    .vip-related-products .vip-products-grid {
        grid-template-columns: 1fr;
    }

    .vip-related-title {
        font-size: 20px;
    }
}



/* ============================================
   BENZER ÜRÜNLER - İÇERİK ALANI (İKONSUZ)
   ============================================ */
.vip-similar-products-content {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid #f0f0f0;
}

.vip-similar-title {
    margin: 0 0 25px 0;
    font-size: 22px;
    font-weight: 800;
    color: #000;
    padding-bottom: 20px;
    border-bottom: 3px solid #cbfe1c;
}

.vip-similar-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vip-similar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: linear-gradient(135deg, #fafafa, #fff);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.vip-similar-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #cbfe1c, #a7df0e);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.vip-similar-item:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.vip-similar-item:hover {
    background: linear-gradient(135deg, #f9ffe5, #fff);
    border-color: #cbfe1c;
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(203, 254, 28, 0.2);
}

.vip-similar-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #cbfe1c, #a7df0e);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(203, 254, 28, 0.3);
    transition: all 0.3s ease;
}

.vip-similar-item:hover .vip-similar-number {
    transform: scale(1.1) rotate(360deg);
}

.vip-similar-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.vip-similar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vip-similar-item:hover .vip-similar-thumb {
    border-color: #cbfe1c;
    box-shadow: 0 4px 12px rgba(203, 254, 28, 0.3);
}

.vip-similar-item:hover .vip-similar-thumb img {
    transform: scale(1.1);
}

.vip-similar-info {
    flex: 1;
    min-width: 0;
}

.vip-similar-info h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
   /* white-space: nowrap;*/
}

.vip-similar-item:hover .vip-similar-info h3 {
    color: #000;
}

.vip-similar-version {
    display: inline-block;
    padding: 4px 10px;
    background: #f0f0f0;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.vip-similar-item:hover .vip-similar-version {
    background: #cbfe1c;
    color: #000;
}

.vip-similar-arrow {
    flex-shrink: 0;
    stroke: #999;
    transition: all 0.3s ease;
}

.vip-similar-item:hover .vip-similar-arrow {
    stroke: #000;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .vip-similar-products-content {
        padding: 25px 20px;
        margin: 20px 0;
    }
    
    .vip-similar-title {
        font-size: 18px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .vip-similar-item {
        padding: 15px;
        gap: 12px;
    }
    
    .vip-similar-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .vip-similar-thumb {
        width: 50px;
        height: 50px;
    }
    
    .vip-similar-info h3 {
        font-size: 14px;
    }
    
    .vip-similar-version {
        font-size: 11px;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .vip-similar-thumb {
        display: none;
    }
    
    .vip-similar-item {
        gap: 10px;
    }
}




/* wordpress tema bulucu butonu ürün detay sayfasında*/
.wp-detector-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #21759b, #2c96d6);
    color: white;
    text-decoration: none;
    padding: 18px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 117, 155, 0.25);
    border: none;
    cursor: pointer;
    text-align: center;
    margin: 15px 0 0 0;
    position: relative;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.wp-btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.wp-logo {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.wp-btn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

/* HOVER EFEKTLERİ */
.wp-detector-btn:hover {
    background: linear-gradient(135deg, #1b6489, #2481c1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 117, 155, 0.35);
}

.wp-detector-btn:hover .wp-btn-overlay {
    opacity: 1;
}

.wp-detector-btn:hover .wp-logo {
    transform: scale(1.1) rotate(5deg);
}

.wp-detector-btn:hover span {
    letter-spacing: 0.5px;
}

/* MOBİL UYUMLULUK */
@media (max-width: 480px) {
    .wp-detector-btn {
        padding: 16px 15px;
        font-size: 16px;
    }
    
    .wp-btn-content {
        gap: 10px;
    }
}