/* Ürün detay sayfası - minimal/modern tasarım (scoped) */

.product_details_sidebar h2.product__title,
.product_details_sidebar p.product_details_desc {
    font-family: 'Rubik', sans-serif;
}

.product_details_sidebar h2.product__title {
    letter-spacing: -0.01em;
}

.pd_breadcrumb {
    padding: 18px 0;
    border-bottom: 1px solid #ededed;
    margin-bottom: 40px;
}

.pd_breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    font-size: 13px;
    color: #999999;
}

.pd_breadcrumb ul li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: #cccccc;
}

.pd_breadcrumb ul li a {
    color: #999999;
    transition: color 0.2s;
}

.pd_breadcrumb ul li a:hover {
    color: #df9f5f;
}

.pd_breadcrumb ul li:last-child {
    color: #282828;
    font-weight: 500;
}

.product_gallery_inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-left: 120px
}

.product_gallery_inner .product_gallery_btn_img {
    width: 100%;
    margin-left: 0;
}

.product_gallery_inner .product_gallery_main_img {
    flex: 1;
    min-width: 0;
}

.product_gallery_main_img .gallery_img_list img,
.product_gallery_btn_img .gallery_btn_img_list img {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.product_gallery_btn_img a.gallery_btn_img_list {
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.product_gallery_btn_img .slick-current a.gallery_btn_img_list {
    border-color: #df9f5f;
}

.product_gallery_btn_img > button {
    top: 50%;
    left: -8px;
    bottom: auto;
    transform: translateY(-50%);
}

.product_gallery_btn_img > button.next_arrow {
    left: auto;
    right: -8px;
}

.product_details_sidebar {
    background: none;
    background-image: none;
    padding: 0;
    border-radius: 0;
}

@media only screen and (min-width: 992px) {
    .product_gallery_main_img .gallery_img_list img {
        height: 380px;
    }

    .product_details_sidebar {
        margin-top: 40px;
    }
}

.pd_title_row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.pd_title_row .product__title {
    margin-bottom: 0;
}

.pd_type_pill {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #df9f5f;
    border: 1px solid #df9f5f;
    border-radius: 20px;
    white-space: nowrap;
}

.pd_title_rule {
    display: block;
    width: 40px;
    height: 3px;
    margin: 16px 0 0;
    background-color: #df9f5f;
}

.product_details_desc {
    line-height: 1.8;
    color: #666666;
}

.pd_stat_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 8px;
}

.pd_stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 20px;
    border-left: 1px solid #ededed;
}

.pd_stat:first-child {
    padding-left: 0;
    border-left: none;
}

.pd_stat_label {
    font-size: 13px;
    color: #999999;
}

.pd_stat_value {
    font-size: 17px;
    font-weight: 600;
    color: #282828;
}

@media only screen and (max-width: 575px) {
    .pd_stat_grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pd_stat {
        padding: 0 0 16px;
        border-left: none;
        border-bottom: 1px solid #ededed;
    }

    .pd_stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}
