/* ======= PRODUCT DETAIL PAGE STYLES ======= */

/* Breadcrumb Styles */
.breadcrumb {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #003d7a;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #666;
}

/* Product Detail Layout */
.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 2rem 0 4rem;
}

/* Product Gallery */
.product-gallery {
    position: relative;
}

.product-main-slider {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-main-slider .swiper-slide {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
}

.product-main-slider img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s;
}

.product-main-slider img:hover {
    transform: scale(1.05);
}

.product-thumb-slider {
    height: 80px;
}

.product-thumb-slider .swiper-slide {
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    border: 2px solid transparent;
}

.product-thumb-slider .swiper-slide:hover {
    opacity: 1;
}

.product-thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #0056b3;
}

.product-thumb-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.category-badge {
    background-color: #e6f7ff;
    color: #0056b3;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
}

.product-overview {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-description {
    max-height: 200px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s;
}

.product-description.expanded {
    max-height: 1000px;
}

.more-info-btn {
    color: #0056b3;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 10px;
    display: inline-block;
}

.product-features {
    margin: 2rem 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
}

.feature-icon {
    color: #0056b3;
    margin-right: 10px;
}

.product-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quantity-control {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.quantity-btn:hover {
    background: #e9e9e9;
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 1rem;
    margin: 0 5px;
}

.button-group {
    display: flex;
    gap: 15px;
}

.add-to-cart-btn, .request-info-btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart-btn {
    background-color: #0056b3;
    color: white;
    border: none;
}

.add-to-cart-btn:hover {
    background-color: #003d7a;
}

.request-info-btn {
    background-color: transparent;
    color: #0056b3;
    border: 1px solid #0056b3;
}

.request-info-btn:hover {
    background-color: #e6f7ff;
}

/* Product Specifications */
.specifications {
    margin: 4rem 0;
}

.specifications h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.specs-tabs {
    margin-bottom: 30px;
}

.specs-nav {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.specs-nav-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.specs-nav-btn:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: #0056b3;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.specs-nav-btn:hover {
    color: #0056b3;
}

.specs-nav-btn.active {
    color: #0056b3;
}

.specs-nav-btn.active:after {
    transform: scaleX(1);
}

.specs-content {
    display: none;
}

.specs-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

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

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th, .specs-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.specs-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    text-align: left;
    width: 30%;
}

/* Accessories */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.accessory-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    transition: box-shadow 0.3s;
}

.accessory-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.accessory-item img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.accessory-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.accessory-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Related Products */
.related-products {
    margin: 4rem 0;
}

.related-products h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.related-products-slider {
    padding-bottom: 40px;
}

.related-product-item {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.related-product-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.related-product-item img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.related-product-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.related-product-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.view-product-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #0056b3;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.view-product-btn:hover {
    background-color: #003d7a;
}

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

.lightbox.active {
    display: flex;
}

.lightbox-container {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1000px;
}

.lightbox-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-close, 
.lightbox-prev, 
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover, 
.lightbox-prev:hover, 
.lightbox-next:hover {
    color: #0056b3;
    transform: scale(1.1);
}

.lightbox-close {
    top: 10px;
    right: 10px;
}

.lightbox-prev {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev i, 
.lightbox-next i {
    font-size: 2rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
    }
    
    .product-main-slider .swiper-slide {
        height: 350px;
    }
    
    .specs-nav {
        flex-wrap: wrap;
    }
    
    .specs-nav-btn {
        padding: 10px 15px;
    }
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
    }
    
    .product-main-slider .swiper-slide {
        height: 300px;
    }
    
    .related-products-slider .swiper-slide {
        width: 260px;
    }
    
    .lightbox-container {
        width: 95%;
        height: 95%;
    }
    
    .lightbox-prev, 
    .lightbox-next {
        padding: 0.5rem;
    }
    
    .lightbox-prev i, 
    .lightbox-next i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .product-main-slider .swiper-slide {
        height: 250px;
    }
    
    .related-product-item img {
        height: 150px;
    }
    
    .specs-table th, .specs-table td {
        padding: 8px 10px;
    }
    
    .specs-table th {
        width: 40%;
    }
}

/* Ürün Detay Sayfası Özel Stilleri */
:root {
    --primary-color: #0056b3;
    --secondary-color: #00aaff;
    --accent-color: #ff5722;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --gray-color: #6c757d;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

/* Ürün Detay Sayfası İç Sayfa Header Stilleri */
.inner-page-header {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.inner-page-header.scrolled {
    background-color: #0056b3;
}

.inner-page-header .nav-link {
    color: #343a40;
    transition: color 0.3s ease;
}

.inner-page-header.scrolled .nav-link {
    color: #fff;
}

.inner-page-header .nav-link:hover,
.inner-page-header .nav-link.active {
    color: #0056b3;
}

.inner-page-header.scrolled .nav-link:hover,
.inner-page-header.scrolled .nav-link.active {
    color: #fff;
    opacity: 0.8;
}

/* Logo rengini değiştirmek için (isteğe bağlı) */
.inner-page-header .logo img {
    transition: all 0.3s ease;
    max-height: 60px;
}

.inner-page-header.scrolled .logo img {
    /* Logoyu beyaza çevirme filtresi kaldırıldı */
    max-height: 50px; /* İsteğe bağlı olarak biraz küçültebiliriz */
}

/* Mobil menü çizgilerinin rengini düzenleme */
.inner-page-header .mobile-toggle span {
    background-color: #343a40;
    transition: background-color 0.3s ease;
}

.inner-page-header.scrolled .mobile-toggle span {
    background-color: #fff;
}

/* Sayfa Banner Stilleri */
.page-banner {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    background-image: url('Kullanılacaklar/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    margin-bottom: 60px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 86, 179, 0.9) 0%, rgba(0, 170, 255, 0.8) 100%);
    z-index: 1;
}

.detail-banner {
    height: 175px;
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Breadcrumb Navigasyon */
.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: inline-block;
    font-size: 1rem;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb li:last-child {
    color: rgba(255, 255, 255, 0.7);
}

/* Ürün Detay Ana Bölüm */
.product-detail {
    padding: 0 0 60px;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-gallery {
    position: relative;
}

.main-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.main-image:hover img {
    transform: scale(1.03);
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 999 !important;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    visibility: visible !important;
}

.product-badges .badge {
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1.5px solid #fff;
    display: inline-block !important;
    visibility: visible !important;
}

.badge-new {
    background: #00a8cc !important; 
    color: #fff !important;
}

.badge-bestseller {
    background: #ff9f43 !important; 
    color: #fff !important;
}

.badge-campaign {
    background: #e60023 !important; 
    color: #fff !important;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumb:hover, .thumb.active {
    border-color: var(--primary-color);
}

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

/* Ürün Bilgi Kısmı */
.product-info h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-categories {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.meta-title {
    font-weight: 500;
    margin-right: 5px;
}

.badge {
    display: inline-block;
    padding: 5px 10px;
    background-color: rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
    font-size: 0.8rem;
    border-radius: 20px;
    font-weight: 500;
}

.stock {
    display: flex;
    align-items: center;
    gap: 5px;
}

.in-stock {
    color: var(--success-color);
}

.out-of-stock {
    color: #dc3545;
}

.product-price {
    margin-bottom: 20px;
}

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

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

.sale-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #dc3545;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--dark-color);
}

.product-features {
    margin-bottom: 30px;
}

.product-features h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li i {
    color: var(--primary-color);
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #004494;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 11px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--primary-color);
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.social-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.social-share span {
    font-weight: 500;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f0f2f5;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Ürün Detay Tabları */
.product-tabs {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.tabs-container {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 50px;
}

.tabs-nav {
    display: flex;
    justify-content: space-around;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 25%;
    position: relative;
}

.tab-item:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.tab-item:hover:after,
.tab-item.active:after {
    width: 80%;
}

.tab-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.tab-item:hover .tab-icon,
.tab-item.active .tab-icon {
    background-color: var(--white);
}

.tab-icon i {
    font-size: 24px;
    color: var(--white);
    transition: all 0.3s ease;
}

.tab-item:hover .tab-icon i,
.tab-item.active .tab-icon i {
    color: var(--primary-color);
}

.tab-item span {
    font-size: 16px;
    font-weight: 500;
}

.tab-content {
    display: none;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    height: 0;
    overflow: hidden;
}

.tab-content.active {
    display: block;
    opacity: 1;
    visibility: visible;
    height: auto;
    overflow: visible;
}

.tab-content-inner {
    display: flex;
    gap: 30px;
}

.tab-image {
    flex: 0 0 45%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tab-info {
    flex: 0 0 55%;
}

.tab-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.tab-features {
    margin-top: 20px;
}

.tab-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tab-features li i {
    font-size: 10px;
    color: var(--accent-color);
    margin-right: 10px;
}
/* Teknik Özellikler Tablosu */
.technical-details table {
    width: 100%;
    border-collapse: collapse;
}

.technical-details th,
.technical-details td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.technical-details th {
    width: 30%;
    background-color: #f8f9fa;
    font-weight: 500;
}

/* Video Tab */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 20px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

/* Belgeler Tab */
.product-documents {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.document-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.document-icon {
    font-size: 1.5rem;
    color: #dc3545;
    width: 40px;
    height: 40px;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-info {
    flex: 1;
}

.document-info h4 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.document-info p {
    margin: 0;
    color: var(--gray-color);
    font-size: 0.875rem;
}

.btn-download {
    padding: 5px 15px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.btn-download:hover {
    background-color: #004494;
}

/* Benzer Ürünler */
.related-products {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-title hr {
    width: 80px;
    margin: 0 auto;
    border: 0;
    height: 3px;
    background-color: var(--primary-color);
}

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

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

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

.related-product-card .product-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.related-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.related-product-card:hover .product-image img {
    transform: scale(1.05);
}

.related-product-card .product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 999 !important;
    visibility: visible !important;
}

.related-product-card .product-info {
    padding: 20px;
}

.related-product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.related-product-card .product-categories-badge {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.related-product-card p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.related-product-card .product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.related-product-card .product-price {
    margin-bottom: 0;
}

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

.btn-secondary:hover {
    background-color: #0085c7;
}

/* İletişim CTA */
.contact-cta {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, rgba(0, 86, 179, 0.9) 0%, rgba(0, 170, 255, 0.9) 100%);
    border-radius: 10px;
    padding: 40px;
    color: white;
}

.cta-content {
    flex: 1;
    padding-right: 30px;
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-content p {
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #004494;
    transform: translateY(-3px);
}

/* Duyarlı Tasarım */
@media (max-width: 992px) {
    .product-detail-content {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        padding-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .product-info h1 {
        font-size: 1.8rem;
    }
    
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-item.active::after {
        display: none;
    }
    
    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .action-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .action-buttons a {
        width: 100%;
        text-align: center;
    }
    
    .social-share {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .page-banner {
        height: 175px;
    }
    
    .tabs-content {
        padding: 15px;
    }
    
    .product-documents {
        grid-template-columns: 1fr;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-thumbs {
        justify-content: center;
    }
    
    .thumb {
        width: 60px;
        height: 60px;
    }
}

/* Ürün Detay Sayfası - Özellik Bölümleri */
.feature-sections {
    margin: 60px 0;
}

.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
    position: relative;
}

.feature-section.reverse {
    direction: rtl;
}

.feature-section.reverse .feature-content {
    direction: ltr;
}

.feature-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.feature-section:hover .feature-image img {
    transform: scale(1.05);
}

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

.feature-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.feature-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.feature-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

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

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
    margin-top: 3px;
}

/* Responsive için feature sections */
@media (max-width: 992px) {
    .feature-section,
    .feature-section.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 30px;
    }
    
    .feature-image {
        order: 1;
    }
    
    .feature-content {
        order: 2;
    }
    
    .feature-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .feature-sections {
        margin: 40px 0;
    }
    
    .feature-section {
        margin-bottom: 40px;
    }
    
    .feature-content h3 {
        font-size: 22px;
    }
    
    .feature-content p {
        font-size: 15px;
    }
} 