/* Ürün Detay Sayfası Stilleri */
.rs-product-detail-area {
    padding: 80px 0;
}

.rs-product-detail-thumb {
    border-radius: 10px;
    overflow: hidden;
}

.rs-product-detail-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.rs-product-detail-title {
    font-size: 36px;
    font-weight: 700;
    color: #1F1F1F;
    line-height: 1.3;
}

.rs-product-detail-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.rs-product-features {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
}

.rs-product-features h4 {
    font-size: 24px;
    font-weight: 600;
    color: #1F1F1F;
    margin-bottom: 20px;
}

/* Sidebar Ürün Listesi */
.rs-product-sidebar {
    position: sticky;
    top: 100px;
}

.rs-sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.rs-sidebar-widget-title {
    font-size: 20px;
    font-weight: 600;
    color: #1F1F1F;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff6b35;
}

.rs-sidebar-product-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rs-sidebar-product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.rs-sidebar-product-item:hover {
    background: #f8f8f8;
    border-color: #ff6b35;
    transform: translateX(5px);
}

.rs-sidebar-product-item.active {
    background: #fff5f0;
    border-color: #ff6b35;
}

.rs-sidebar-product-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    width: 100%;
}

.rs-sidebar-product-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.rs-sidebar-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rs-sidebar-product-content {
    flex: 1;
}

.rs-sidebar-product-title {
    font-size: 16px;
    font-weight: 600;
    color: #1F1F1F;
    margin-bottom: 5px;
    line-height: 1.4;
}

.rs-sidebar-product-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.rs-product-detail-btn {
    margin-top: 30px;
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .rs-product-sidebar {
        position: relative;
        top: 0;
    }
    
    .rs-product-detail-title {
        font-size: 28px;
    }
    
    .rs-sidebar-product-item {
        flex-direction: column;
        text-align: center;
    }
    
    .rs-sidebar-product-item a {
        flex-direction: column;
        text-align: center;
    }
}
