/* ===== RESET & GENERAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background: var(--dark-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.logo i {
    font-size: 1.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%230f172a" width="1200" height="800"/><circle fill="%236366f1" opacity="0.1" cx="200" cy="200" r="300"/><circle fill="%238b5cf6" opacity="0.1" cx="1000" cy="600" r="400"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-animation .floating-icon {
    position: absolute;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(99, 102, 241, 0.2);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===== SECTIONS ===== */
.features, .popular-systems, .stats, .cta, .products-section, 
.serverfiles-section, .gallery-section, .contact-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-light);
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--dark-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-card p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* ===== SYSTEMS/PRODUCTS GRID ===== */
.systems-grid, .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.system-card, .product-card {
    background: var(--dark-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.system-card:hover, .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
    border-color: var(--primary);
}

.system-image, .product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.system-image img, .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.system-card:hover .system-image img,
.product-card:hover .product-image img {
    transform: scale(1.1);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
}

.system-badge, .product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-tag.new {
    background: var(--success);
}

.product-tag.discount {
    background: var(--danger);
}

.system-content, .product-content {
    padding: 25px;
}

.system-content h3, .product-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.product-desc {
    color: var(--gray-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.product-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--gray);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.product-price .old-price {
    text-decoration: line-through;
    color: var(--gray);
    margin-right: 10px;
}

.product-price .new-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
}

/* ===== STATS SECTION ===== */
.stats {
    background: var(--dark-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--gray-light);
    font-size: 1.1rem;
}

/* ===== CTA SECTION ===== */
.cta {
    background: var(--gradient);
    text-align: center;
    border-radius: 20px;
    margin: 40px 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--dark-light);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--gray-light);
}

/* ===== FILTERS ===== */
.products-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    background: var(--dark-light);
    color: var(--white);
    font-size: 1rem;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--dark-light);
    color: var(--white);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* ===== SERVER FILES ===== */
.serverfiles-grid {
    display: grid;
    gap: 30px;
}

.serverfile-card {
    background: var(--dark-light);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s;
}

.serverfile-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.serverfile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.serverfile-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.serverfile-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.serverfile-version {
    color: var(--gray);
    font-size: 0.9rem;
}

.badge-new {
    margin-left: auto;
    background: var(--success);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.serverfile-features h4 {
    margin: 20px 0 10px;
    color: var(--primary);
}

.serverfile-features ul {
    list-style: none;
}

.serverfile-features li {
    padding: 8px 0;
    color: var(--gray-light);
}

.serverfile-features li i {
    color: var(--success);
    margin-right: 10px;
}

.serverfile-specs {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.spec-item i {
    color: var(--primary);
}

.serverfile-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.serverfile-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.serverfile-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.serverfile-actions {
    display: flex;
    gap: 10px;
}

/* ===== GALLERY ===== */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-gallery {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
}

.gallery-video-preview {
    position: relative;
    width: 100%;
    height: 100%;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(99, 102, 241, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--gray-light);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-image, .lightbox-video {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10000;
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(99, 102, 241, 0.8);
    color: var(--white);
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 8px;
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    background: var(--dark-light);
    padding: 40px;
    border-radius: 12px;
}

.contact-form-wrapper h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    background: var(--dark);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--success);
    color: var(--success);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid var(--danger);
    color: var(--danger);
}

.contact-info-card {
    background: var(--dark-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-content a {
    color: var(--primary);
    text-decoration: none;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--gray-light);
    line-height: 1.6;
}

.social-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn.discord { background: #5865F2; }
.social-btn.youtube { background: #FF0000; }
.social-btn.github { background: #333; }
.social-btn.telegram { background: #0088cc; }

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-light);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Mobil menü CSS'i JavaScript inline style ile override ediliyor */
    .nav-menu {
        /* Bu kurallar yedek olarak kalıyor */
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .products-filter {
        flex-direction: column;
        align-items: stretch;
    }
    
    .serverfile-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .serverfile-actions {
        width: 100%;
    }
    
    .serverfile-actions .btn {
        flex: 1;
    }
}

/* Yeni Primary Butonlar - Üstte */
.product-actions-primary {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.product-actions-primary .btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

/* Discord Info Box */
.discord-info {
    background: linear-gradient(135deg, #5865F2, #7289da);
    color: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-info i {
    font-size: 2rem;
    margin-bottom: 5px;
}

.discord-info strong {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.discord-info small {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .product-actions-primary .btn {
        padding: 15px 20px;
        font-size: 1rem;
    }
}

/* Büyük Fiyat Kartı */
.product-price-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.product-price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-30%, -30%) rotate(180deg); }
}

.price-header {
    margin-bottom: 15px;
}

.discount-label {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-block;
}

.price-main {
    position: relative;
    z-index: 1;
}

.price-main.single-price {
    padding: 20px 0;
}

.old-price {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.current-price {
    display: block;
    color: white;
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

/* Satın Alma Bölümü - Özelliklerin Altında */
.product-purchase-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
    padding: 30px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(102, 126, 234, 0.1);
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2, #7289da);
    color: white;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 15px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(88, 101, 242, 0.5);
}

.btn-contact {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #334155, #475569);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Discord Modal */
.discord-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.discord-modal-content {
    background: white;
    border-radius: 25px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #94a3b8;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    background: #f1f5f9;
    color: #1e293b;
    transform: rotate(90deg);
}

.discord-username-box {
    text-align: center;
}

.discord-username-box i {
    font-size: 4rem;
    color: #5865F2;
    margin-bottom: 20px;
}

.discord-username-box h3 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.discord-username {
    background: linear-gradient(135deg, #5865F2, #7289da);
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.discord-username strong {
    color: white;
    font-size: 2rem;
    letter-spacing: 1px;
    word-break: break-all;
}

.btn-copy {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-copy:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.discord-username-box p {
    color: #64748b;
    font-size: 1rem;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .current-price {
        font-size: 2.5rem;
    }
    
    .product-purchase-section {
        padding: 20px;
    }
    
    .btn-discord, .btn-contact {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .discord-modal-content {
        padding: 30px 20px;
    }
}

/* =================================
   YENİ FİYAT VE BUTON TASARIMI
   ================================= */

/* Fiyat Banner - Gradient Arkaplan */
.product-price-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 25px 30px;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.product-price-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: priceShimmer 4s linear infinite;
}

@keyframes priceShimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.discount-badge-top {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.price-display {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-display.single {
    justify-content: center;
}

.price-old {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    text-decoration: line-through;
    font-weight: 500;
}

.price-new {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

/* Butonlar - Özelliklerin Altında */
.product-action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.btn-purchase {
    padding: 18px 25px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-purchase i {
    font-size: 1.8rem;
}

.btn-purchase span {
    font-size: 1rem;
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2, #7289da);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.6);
}

.btn-contact {
    background: linear-gradient(135deg, #1e293b, #334155);
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 41, 59, 0.6);
    background: linear-gradient(135deg, #334155, #475569);
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 480px;
    width: 90%;
    position: relative;
    animation: modalSlideUp 0.4s ease;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: 300;
    color: #94a3b8;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    line-height: 1;
}

.modal-close:hover {
    background: #f1f5f9;
    color: #1e293b;
    transform: rotate(90deg);
}

.modal-body {
    text-align: center;
}

.modal-icon {
    font-size: 4.5rem;
    color: #5865F2;
    margin-bottom: 20px;
}

.modal-body h3 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.discord-username-display {
    background: linear-gradient(135deg, #5865F2, #7289da);
    padding: 25px;
    border-radius: 16px;
    margin: 20px 0;
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3);
}

.username-text {
    display: block;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    word-break: break-all;
}

.btn-copy-username {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-copy-username:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.modal-help-text {
    color: #64748b;
    font-size: 1rem;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .product-action-buttons {
        grid-template-columns: 1fr;
    }
    
    .price-new {
        font-size: 2rem;
    }
    
    .btn-purchase {
        padding: 16px 20px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .username-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .price-display {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .price-old {
        font-size: 1.1rem;
    }
    
    .price-new {
        font-size: 1.8rem;
    }
}
/* Basit Fiyat Kutusu - Büyük Gradient */
.product-price-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    text-align: center;
}

.discount-badge-top {
    background: rgba(255,255,255,0.3);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1rem;
}

.price-display {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-old {
    color: rgba(255,255,255,0.8);
    font-size: 1.5rem;
    text-decoration: line-through;
}

.price-new {
    color: white;
    font-size: 3.5rem;
    font-weight: 900;
}

/* Basit Butonlar - Arka Planlı */
.product-action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.btn-purchase {
    background: linear-gradient(135deg, #5865F2, #7289da);
    color: white;
    padding: 20px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}

.btn-contact {
    background: linear-gradient(135deg, #1e293b, #334155);
}

.btn-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .product-action-buttons {
        grid-template-columns: 1fr;
    }
    .price-new { font-size: 2.5rem; }
}
/* Kompakt Fiyat Kutusu */
.product-price-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    padding: 25px 30px;
    margin: 25px 0;
    text-align: center;
}

.discount-badge-top {
    background: rgba(255,255,255,0.25);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 0.9rem;
}

.price-display {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.price-old {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    text-decoration: line-through;
}

.price-new {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
}

/* Butonlar Fiyat Kutusunun İçinde */
.product-price-banner .product-action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.product-price-banner .btn-purchase {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-price-banner .btn-purchase:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .product-price-banner {
        padding: 20px;
    }
    .price-new {
        font-size: 2rem;
    }
    .product-price-banner .product-action-buttons {
        grid-template-columns: 1fr;
    }
}
/* Küçük Kompakt Fiyat Kutusu */
.product-price-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 20px 25px;
    margin: 20px 0;
    text-align: center;
}

.discount-badge-top {
    background: rgba(255,255,255,0.25);
    color: white;
    padding: 5px 15px;
    border-radius: 18px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.85rem;
}

.price-display {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-old {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    text-decoration: line-through;
}

.price-new {
    color: white;
    font-size: 2.2rem;
    font-weight: 900;
}

/* Butonlar Altta - Ayrı */
.product-action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.btn-purchase {
    color: white;
    padding: 16px 20px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2, #7289da);
}

.btn-contact {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.btn-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .product-price-banner {
        padding: 18px 20px;
    }
    .price-new {
        font-size: 1.8rem;
    }
    .product-action-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Discord ID Section - Fiyat Kutusunun İçinde */
.discord-id-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.discord-id-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.discord-id-value {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Discord ID Section - Şık Versiyon */
.discord-id-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    animation: slideDown 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.discord-id-icon {
    font-size: 3rem;
    color: white;
    opacity: 0.95;
    margin-bottom: 5px;
}

.discord-id-title {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discord-id-value {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Buton Discord Aktif Durumu */
.btn-discord-active {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 18px 20px !important;
}

.btn-discord-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.btn-discord-label {
    font-size: 0.75rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.btn-discord-id {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-discord-active i {
    font-size: 2rem;
}

/* Product Gallery - Grid */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.gallery-video iframe {
    border-radius: 12px;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
}

.image-modal-close:hover {
    color: #f1f5f9;
}

@media (max-width: 768px) {
    .product-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .gallery-item img {
        height: 150px;
    }
    
    .image-modal-close {
        top: 20px;
        right: 20px;
        font-size: 2rem;
    }
}

/* Ana Ürün Görseli - Tam Boyut */
.main-product-image {
    width: 100%;
    height: auto;
    max-height: none !important;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    object-fit: contain;
    background: #1e293b;
}

.product-detail-image {
    width: 100%;
    position: relative;
}

/* Responsive - Mobilde de tam boyut */
@media (max-width: 768px) {
    .main-product-image {
        border-radius: 8px;
    }
}

/* Ek Resim/Video Medya Grid */
.product-additional-media {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.media-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.media-image img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.media-video iframe {
    width: 100%;
    height: 250px;
    display: block;
}

@media (max-width: 768px) {
    .product-additional-media {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* === ÜRÜN DETAY ANA RESİM BOYUT FIX === */
.main-product-image {
    width: auto !important;
    max-width: 100% !important;

    max-height: 420px !important; /* ← kritik satır */
    height: auto !important;

    object-fit: contain !important;
    display: block;
    margin: 0 auto;

    /* Metin2 tarzı görseller için netlik */
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}



/* === VIDEO FULLSCREEN FIX === */
.media-video video{
    width: 100%;
    height: auto;
    display: block;
}

/* Fullscreen moddayken (Chrome/Safari) */
.media-video video:fullscreen,
.media-video video:-webkit-full-screen{
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain;
}

.media-video iframe{
    display: block;
}

.media-video iframe:fullscreen,
.media-video iframe:-webkit-full-screen{
    width: 100% !important;
    height: 100% !important;
}

/* === EK MEDYA: HER ŞEY ORTADA (VIDEO DA) === */
.product-additional-media{
    grid-template-columns: 1fr !important;  /* tek kolon */
    justify-items: center !important;       /* item ortala */
}

.product-additional-media .media-item{
    width: 100%;
    display: flex !important;
    justify-content: center !important;
}

.product-additional-media video,
.product-additional-media iframe{
    display: block !important;
    margin: 0 auto !important;
    max-width: 820px;   /* video çok büyümesin, istersen arttır/azalt */
    width: 100% !important;
}



/* === PRODUCT TABS BOARD STYLE === */

.product-tabs{
    background: linear-gradient(180deg, rgba(15,23,42,0.9), rgba(2,6,23,0.9));
    border-radius: 16px;
    padding: 20px 20px 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,.35);
    margin-top: 24px;
}
.product-tabs .tab-buttons{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.product-tabs .tab-btn{
    background: rgba(148,163,184,.12);
    color: #e5e7eb;
    border: 1px solid rgba(148,163,184,.2);
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
    transition: all .2s ease;
}
.product-tabs .tab-btn.active{
    background: linear-gradient(135deg,#6366f1,#8b5cf6);
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(99,102,241,.35);
}
.product-tabs .tab-btn:hover{ transform: translateY(-1px); }
.product-tabs .tab-content{
    background: rgba(2,6,23,.6);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(148,163,184,.15);
}
.product-tabs .tab-content h3{
    margin-top: 0;
}

/* === PRODUCT INFO BOARD (Description + Features + Tabs) === */
.product-info-board{
    background: linear-gradient(180deg, rgba(15,23,42,0.92), rgba(2,6,23,0.92));
    border: 1px solid rgba(148,163,184,.15);
    border-radius: 18px;
    padding: 22px;
    margin-top: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.product-info-board h3{
    margin-bottom: 10px;
}

.product-info-board .product-description{
    margin-bottom: 16px;
}

.product-info-board .product-features{
    margin-bottom: 18px;
}

.product-info-board .product-features ul{
    margin-top: 10px;
    display: grid;
    gap: 8px;
}

.product-info-board .product-features li{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(148,163,184,.08);
    border: 1px solid rgba(148,163,184,.12);
}

.product-info-board .product-features li i{
    color: var(--success);
}

.product-info-board .product-tabs{
    margin-top: 0; /* board içindeyken ekstra boşluk olmasın */
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    border: none;
}

.product-info-board .product-tabs .tab-content{
    margin-top: 10px;
}

.product-info-board .product-tabs .tab-buttons{
    margin-bottom: 12px;
}

/* === EK MEDYA GÖRSELLERİ BOYUT EŞİTLEME FIX === */
.product-additional-media img{
    max-width: 100% !important;
    max-height: 420px !important; /* üstteki ana görselle aynı */
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
}

/* === ÜRÜN ANA GÖRSEL ÜST BOŞLUK FIX === */
.product-detail-image,
.main-product-image{
    margin-top: 20px !important; /* header'dan biraz aşağı */
}

/* === PRODUCT CARD CLICK CURSOR FIX === */
.product-card{
    cursor: pointer;
}




/* Popüler Sistemler kartı tıklanabilir */
.system-card{ cursor: pointer; }
