﻿/* Manipülatör Sayfası için Kırmızı ve Antrasit Renkli CSS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #e31e24; /* Kırmızı ana renk */
    --primary-dark: #c41a1f; /* Koyu kırmızı */
    --primary-light: #ffebee; /* Açık kırmızı */
    --secondary-color: #2c3033; /* Antrasit */
    --secondary-dark: #1c1e20; /* Koyu antrasit */
    --secondary-light: #4a4e50; /* Açık antrasit */
    --text-color: #333;
    --text-light: #777;
    --background-light: #f5f5f5;
    --background-dark: #2c3033; /* Antrasit arka plan */
    --border-color: #e0e0e0;
    --success-color: #4caf50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

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

.content-inner {
    padding: 50px 0;
    position: relative;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    z-index: -1;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
}

/* Grid Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.justify-content-center {
    justify-content: center;
}

.col-lg-4, .col-md-6 {
    padding: 0 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-6 {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        width: 33.333333%;
    }
}

.m-b30 {
    margin-bottom: 30px;
}

.products-row {
    margin-bottom: 50px;
}

/* Product Cards */
.content-box2 {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.content-box2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.dz-info {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--secondary-color);
    color: white;
}

.title {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.spec-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    color: white;
}

.spec-item i {
    color: var(--primary-color);
    margin-right: 5px;
}

.dz-media {
    padding: 20px;
    text-align: center;
    background-color: white;
}

.dz-media img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.content-box2:hover .dz-media img {
    transform: scale(1.05);
}

.product-description {
    padding: 20px;
    flex-grow: 1;
    background-color: white;
}

.product-description p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.features-list {
    list-style: none;
    margin-bottom: 20px;
}

.features-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.features-list li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 3px;
}

.dz-bottom {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--background-light);
}

.btn-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-link:hover {
    color: var(--primary-color);
}

.btn-link:hover i {
    transform: translateX(5px);
}

.quote-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(227, 30, 36, 0.3);
}

/* Faydalar Bölümü */
.benefits-section {
    background-color: var(--secondary-color);
    padding: 40px 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    color: white;
}

.benefits-title {
    font-size: 28px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.benefits-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.benefit-item {
    background-color: var(--secondary-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 250px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background-color: var(--secondary-dark);
}

.benefit-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.benefit-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Teklif Formu */
.quote-form-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* Çok yüksek z-index değeri */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quote-form-container.active {
    opacity: 1;
    visibility: visible;
}

.quote-form-wrapper {
    background-color: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.quote-form-container.active .quote-form-wrapper {
    transform: translateY(0);
}

.close-form {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-form:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.form-title {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-align: center;
}

.form-description {
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(227, 30, 36, 0.2);
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 8px rgba(227, 30, 36, 0.3);
}

/* Uygulama Alanları */
.applications-section {
    margin-bottom: 50px;
}

.applications-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.applications-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.applications-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.application-item {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.application-item:hover {
    background-color: white;
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.application-item:hover .application-icon {
    color: var(--primary-color);
    transform: scale(1.1);
}

.application-icon {
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.application-item h4 {
    font-size: 16px;
    transition: all 0.3s ease;
    color: var(--secondary-color);
}

/* FAQ Bölümü */
.faq-section {
    margin-bottom: 50px;
}

.faq-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.faq-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--background-light);
    transition: all 0.3s ease;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: var(--secondary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-question.active {
    background-color: var(--secondary-color);
}

.faq-question.active h4,
.faq-question.active i {
    color: white;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 15px 20px;
    max-height: 500px;
}

/* Teknik Özellikler Tablosu */
.tech-specs-section {
    margin: 50px 0;
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
}

.tech-specs-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.tech-specs-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.tech-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    max-width: 800px;
}

.tech-specs-table th {
    background-color: var(--secondary-color);
    color: white;
    font-weight: 500;
    text-align: left;
    padding: 12px 15px;
}

.tech-specs-table td {
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-color);
}

.tech-specs-table tr:last-child td {
    border-bottom: none;
}

.tech-specs-table tr:nth-child(even) {
    background-color: white;
}

.tech-specs-table tr:hover {
    background-color: var(--primary-light);
}

/* Çağrı Düğmesi */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    padding: 40px 20px;
    border-radius: 8px;
    margin: 50px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(227, 30, 36, 0.1);
}

.cta-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-description {
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

/* SEO İçeriği */
.seo-description {
    color: var(--text-light);
    margin: 30px 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

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

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .benefits-container, 
    .applications-container {
        gap: 15px;
    }
    
    .benefit-item,
    .application-item {
        max-width: 100%;
    }
    
    .dz-bottom {
        flex-direction: column;
        gap: 10px;
    }
    
    .quote-btn {
        width: 100%;
    }
    
    .faq-question h4 {
        font-size: 15px;
    }
    
    .tech-specs-table {
        overflow-x: auto;
        display: block;
    }
    
    .cta-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 24px;
    }
    
    .hero-overlay {
        height: 250px;
    }
    
    .benefits-title, 
    .applications-title,
    .faq-title,
    .tech-specs-title {
        font-size: 22px;
    }
}


/* Sabit Whatsapp ve Arama Butonları */
.fixed-contact-buttons {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.contact-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.contact-button i {
    font-size: 24px;
    color: white;
}

/* WhatsApp Butonu */
.whatsapp-button {
    background-color: #25D366;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

/* Arama Butonu */
.call-button {
    background-color: var(--primary-color);
}

.call-button:hover {
    background-color: var(--primary-dark);
}

/* İpucu Balonu */
.tooltip-text {
    position: absolute;
    left: 60px;
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-button:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Mobil düzenleme */
@media (max-width: 768px) {
    .fixed-contact-buttons {
        left: 15px;
        bottom: 15px;
        gap: 8px;
    }
    
    .contact-button {
        width: 50px;
        height: 50px;
    }
    
    .contact-button i {
        font-size: 22px;
    }
}

/* Hareket animasyonu */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-button {
    animation: pulse 2s infinite;
}

.call-button {
    animation: pulse 2s infinite;
    animation-delay: 1s;
}

/* Ürün Detay Sayfası için Geliştirilmiş CSS */
:root {
    --primary-color: #e31e24; /* Kırmızı ana renk */
    --primary-dark: #c41a1f; /* Koyu kırmızı */
    --primary-light: #ffebee; /* Açık kırmızı */
    --secondary-color: #2c3033; /* Antrasit */
    --secondary-dark: #1c1e20; /* Koyu antrasit */
    --secondary-light: #4a4e50; /* Açık antrasit */
    --text-color: #333;
    --text-light: #777;
    --background-light: #f5f5f5;
    --border-color: #e0e0e0;
}

/* Genel Ürün Detay Stili */
.product-detail-section {
    padding: 60px 0;
}

.product-image-wrapper {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Küçük Resimler (Thumbnails) */
.thumbnail-image {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-image:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.thumbnail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Ana Ürün Resmi */
.main-product-image {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.main-product-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Resim Kontrol Butonları */
.swiper-button-next, 
.swiper-button-prev,
.swiper-button-next-thumb, 
.swiper-button-prev-thumb {
    background-color: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-button-next:hover, 
.swiper-button-prev:hover,
.swiper-button-next-thumb:hover, 
.swiper-button-prev-thumb:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

/* Zoom Butonları */
.image-actions {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
}

.btn-zoom {
    background-color: var(--secondary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-zoom:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

/* Ürün Bilgi Kutusu */
.product-info-box {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Ürün Başlık Alanı */
.product-title-section {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.product-category {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-title {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.product-model {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

/* Öne Çıkan Özellikler */
.key-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--background-light);
    padding: 10px 15px;
    border-radius: 5px;
    min-width: 45%;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.feature-info {
    display: flex;
    flex-direction: column;
}

.feature-label {
    font-size: 12px;
    color: var(--text-light);
}

.feature-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Ürün Açıklaması */
.product-description {
    margin-bottom: 20px;
}

.product-description p {
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Avantajlar Listesi */
.product-advantages {
    background-color: var(--background-light);
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 25px;
}

.product-advantages h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: var(--text-color);
}

.advantage-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

/* İletişim Butonları */
.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.product-actions .btn {
    padding: 12px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    flex: 1;
}

.product-actions .btn i {
    margin-right: 8px;
    font-size: 18px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1ea952;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

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

.btn-call:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.btn-quote {
    background-color: var(--secondary-color);
    color: white;
}

.btn-quote:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(44, 48, 51, 0.3);
}

/* Detay Sekmeleri */
.product-details-tabs {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.nav-tabs {
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
}

.nav-item {
    margin-bottom: -1px;
}

.nav-link {
    border: none;
    background: none;
    padding: 12px 20px;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    color: var(--text-color);
    display: flex;
    align-items: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-link i {
    margin-right: 8px;
    font-size: 16px;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link.active::after {
    width: 100%;
}

.tab-content {
    padding: 20px 0;
}

/* Teknik Özellikler Tablosu */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 15px;
    text-align: left;
}

.specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:nth-child(even) {
    background-color: var(--background-light);
}

.specs-table tr:hover {
    background-color: #f0f0f0;
}

/* Kullanım Alanları */
.applications-content {
    margin-top: 20px;
}

.application-item {
    display: flex;
    align-items: flex-start;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.application-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.application-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.application-info h4 {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.application-info p {
    color: var(--text-light);
    margin: 0;
}

/* Video Bölümü */
.video-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.video-placeholder {
    position: relative;
    max-width: 800px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(227, 30, 36, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    color: white;
    font-size: 30px;
    margin-left: 5px;
}

.video-placeholder:hover .play-button {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-text {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Dokümanlar */
.documents-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.document-item {
    display: flex;
    align-items: center;
    background-color: var(--background-light);
    border-radius: 8px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.document-item:hover {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.document-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-right: 15px;
}

.document-info {
    flex-grow: 1;
}

.document-info h4 {
    font-size: 16px;
    color: var(--secondary-color);
    margin: 0 0 5px;
}

.document-info p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.btn-download {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-download i {
    margin-right: 5px;
}

.btn-download:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Benzer Ürünler */
.related-products-section {
    margin-top: 50px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title span {
    background-color: white;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 600;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background-color: var(--border-color);
    z-index: 1;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-media {
    position: relative;
    padding-top: 70%;
    overflow: hidden;
}

.product-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-card:hover .product-media img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    position: relative;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.meta-item {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.meta-item i {
    color: var(--primary-color);
    margin-right: 5px;
}

.btn-view {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background-color: var(--primary-color);
}

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .product-image-wrapper {
        margin-bottom: 30px;
    }
    
    .product-title {
        font-size: 28px;
    }
    
    .product-actions .btn {
        min-width: auto;
        padding: 10px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .product-detail-section {
        padding: 30px 0;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .application-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .application-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

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

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Lightbox için Ek Stillemeler */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

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

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-controls {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.lightbox-control {
    background-color: white;
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-control:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    width: 90%;
    max-width: 900px;
    position: relative;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    transform: rotate(90deg);
}

.video-iframe {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
}

.video-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}