/* ============================================
   PRODUCT TABS NAVIGATION
   ============================================ */

.product-tabs-section {
    position: relative;
    min-height: 100vh;
    background: #000;
    padding-top: 80px;
}

/* Tab Navigation */
.tabs-navigation {
    position: sticky;
    top: 60px;
    z-index: 100;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    padding: 0;
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs-container::-webkit-scrollbar {
    display: none;
}

.tab-button {
    flex: 1;
    min-width: 200px;
    padding: 20px 30px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.tab-button i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.tab-button:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.tab-button:hover i {
    transform: scale(1.1);
}

.tab-button.active {
    color: #d4af37;
    border-bottom-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.tab-button.active i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px #d4af37);
}

/* Tab Content */
.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

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

/* Product Hero in Tab */
.tab-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tab-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.tab-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 2;
}

.tab-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(212, 175, 55, 0);
    }
}

.product-name-hero {
    font-family: 'Orbitron', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: #d4af37;
    margin: 0 0 20px 0;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    letter-spacing: 2px;
}

.product-tagline-hero {
    font-size: 28px;
    color: #fff;
    margin: 0 0 40px 0;
    font-weight: 300;
    line-height: 1.4;
}

.product-description-hero {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Features Grid in Tab */
.tab-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.tab-feature-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.tab-feature-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.tab-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-feature-icon i {
    font-size: 28px;
    color: #000;
}

.tab-feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #d4af37;
    margin: 0 0 10px 0;
}

.tab-feature-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}


/* Product CTA Section */
.product-cta-section {
    text-align: center;
    padding: 40px 20px 20px;
    max-width: 800px;
    margin: 60px auto 0;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.product-cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-cta-subtitle {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA in Tab */
.tab-cta {
    text-align: center;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.tab-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
}

/* Evaluator Tab Special */
.evaluator-tab-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 60px 20px;
}

.evaluator-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.evaluator-intro h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #d4af37;
    margin: 0 0 20px 0;
}

.evaluator-intro p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .tabs-navigation {
        top: 50px;
    }
    
    .tab-button {
        min-width: 150px;
        padding: 15px 20px;
        font-size: 14px;
        flex-direction: column;
        gap: 5px;
    }
    
    .tab-button i {
        font-size: 24px;
    }
    
    .product-name-hero {
        font-size: 42px;
    }
    
    .product-tagline-hero {
        font-size: 20px;
    }
    
    .product-description-hero {
        font-size: 16px;
    }
    
    .tab-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tab-hero {
        min-height: 60vh;
    }
    
    .evaluator-intro h2 {
        font-size: 32px;
    }
    
    .evaluator-intro p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .product-name-hero {
        font-size: 32px;
    }
    
    .product-tagline-hero {
        font-size: 18px;
    }
    
    .tab-button {
        min-width: 120px;
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .tab-cta-button {
        padding: 15px 30px;
        font-size: 14px;
    }
}
