/* Genel Container */
.product-detail-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Üst Başlık */
.sagPhone h1, .sagPhone h2 {
    margin: 0;
    color: #333;
}

.sagPhone hr {
    border: 1px solid #007bff;
}

/* Carousel & Ana Resim */
#tab-gallery {
    position: relative;
}

.main-image-container img,
#expanded-img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 5px;
}

/* Thumbnail Resimler */
.columns {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.column img.tab-image {
    width: 84px;
    height: 84px;
    object-fit: contain;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

    .column img.tab-image:hover {
        border-color: #007bff;
        transform: scale(1.05);
    }

/* Sağ Alan */
.sag {
    margin-top: 20px;
}

.pdf-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

    .pdf-btn:hover {
        background-color: #0056b3;
    }

/* Tablar */
.article_tab_wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.article_tab_items {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 15px;
}

.article_tab_item {
    border-radius: 5px;
    cursor: pointer;
    background-color: #f5f5f5;
    transition: 0.3s;
    font-weight: bold;
}

    .article_tab_item.active,
    .article_tab_item:hover {
        background-color: #2A2A2A;
        color: white;
    }

/* Tab İçerik */
.tab_content {
    display: none;
    margin-top: 20px;
}

    .tab_content.active {
        display: block;
    }

.tab_title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.title-Detail p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Kullanıcı Faydaları Icons */
.product-icons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.product-icon-card {
    text-align: center;
    width: 100px;
}

.product-icon-image {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.product-icon-label {
    display: block;
    margin-top: 5px;
    font-size: 14px;
}

/* Responsive */
@media(max-width: 991px) {
    .cntnr.row.sm-row {
        flex-direction: column;
    }

    .columns {
        justify-content: flex-start;
        overflow-x: auto;
    }
}
