/* Ürün Listesi Stilleri */
.product-list {
    margin-top: 40px;
}

.product-item {
    display: flex;
    margin-bottom: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.product-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

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

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

.product-content {
    flex: 0 0 60%;
    padding: 30px;
}

.product-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #1B1D30;
    font-size: 24px;
}

.product-content h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #1B1D30;
    font-size: 20px;
}

.product-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

/* Ürün Detay Sayfası Stilleri */
.product-detail {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.product-gallery {
    flex: 0 0 50%;
    padding-right: 30px;
}

.main-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

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

.thumbnails {
    display: flex;
    gap: 10px;
}

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

.thumb.active {
    border-color: #1B1D30;
}

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

.product-info {
    flex: 0 0 50%;
}

.product-info h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #1B1D30;
    font-size: 28px;
}

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

.product-description p {
    line-height: 1.7;
    color: #555;
}

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

.product-features h3 {
    margin-bottom: 15px;
    color: #1B1D30;
    font-size: 20px;
}

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

.product-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.product-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1B1D30;
    font-weight: bold;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Ürün Detay Sekmeleri */
.product-tabs {
    margin-bottom: 50px;
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.tab-link {
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-link.active {
    color: #1B1D30;
    border-bottom-color: #1B1D30;
}

.tab-pane {
    display: none;
    padding: 20px 0;
}

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

.tab-pane h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #1B1D30;
}

/* Dökümanlar Listesi */
.documents-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.documents-list li {
    margin-bottom: 10px;
}

.documents-list a {
    display: flex;
    align-items: center;
    color: #555 !important;
    text-decoration: none;
    padding: 10px 15px;
    background-color: #e9f5fd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.documents-list a:hover {
    background-color: #e5e5e5;
    color: #1B1D30;
}

.documents-list i {
    margin-right: 10px;
    color: #1B1D30;
    font-size: 20px;
}

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

.related-products h3 {
    margin-bottom: 30px;
    color: #1B1D30;
    font-size: 24px;
    position: relative;
}

.related-products h3:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #1B1D30;
    margin-top: 10px;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.products-grid .product-item {
    flex: 0 0 calc(33.333% - 30px);
    margin: 15px;
    flex-direction: column;
}

.products-grid .product-image {
    flex: 0 0 250px;
}

.products-grid .product-content {
    flex: 1;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .product-gallery,
    .product-info {
        flex: 0 0 100%;
    }
    
    .product-gallery {
        margin-bottom: 30px;
        padding-right: 0;
    }
    
    .products-grid .product-item {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .product-item {
        flex-direction: column;
    }
    
    .product-image,
    .product-content {
        flex: 0 0 100%;
    }
    
    .tabs-nav {
        flex-direction: column;
        border-bottom: none;
    }
    
    .tab-link {
        border-bottom: 1px solid #ddd;
        border-left: 3px solid transparent;
        padding: 10px 15px;
    }
    
    .tab-link.active {
        border-bottom-color: #ddd;
        border-left-color: #1B1D30;
    }
    
    .products-grid .product-item {
        flex: 0 0 calc(100% - 30px);
    }
}